Questions tagged [kubernetes]

Kubernetes is an open source orchestration system for Docker containers. It handles scheduling onto nodes in a compute cluster and actively manages workloads to ensure that their state matches the users declared intentions. Using the concepts of "labels" and "pods", it groups the containers which make up an application into logical units for easy management and discovery.

Kubernetes is an open source orchestration system for Docker containers. It handles scheduling onto nodes in a compute cluster and actively manages workloads to ensure that their state matches the users declared intentions. Using the concepts of "labels" and "pods", it groups the containers which make up an application into logical units for easy management and discovery.

For more details, visit the official Kubernetes page.

2352 questions
0
votes
1 answer

k8s priotityClass ignored

I have a cluster running k8s 1.23 and several workloads. Workloads are spread in 3 priorityClasses high 10000000 medium 100000 low 1000 All…
Jose
  • 21
  • 1
  • 2
0
votes
1 answer

Nginx configuration in OpenShift

I have been struggling with a solution to have nginx running, in OpenShift there is no use of root user during creation of the containers. Then, I was getting the following error: 2023/06/21 10:37:45 [emerg] 1#1: mkdir()…
John Barton
  • 103
  • 2
0
votes
2 answers

Transparent proxy to corporate proxy in k8s

Attempting to deploy an external app into a corporate k8s cluster. All egress traffic leaving this external app has to go through the corporate proxy before getting to the internet. The issue is that the application does not have built in env…
0
votes
0 answers

AWS EKS nodes claiming an absurd amount of IP addresses

I run an AWS EKS cluster (v1.24) with a couple c5a.xlarge worker nodes and VPCCNI networking, with ENI trunking enabled and ENABLE_POD_ENI set to true in the VPCCNI configuration (some of the pods need specific security groups, hence the need for…
user1933738
  • 247
  • 1
  • 6
0
votes
0 answers

Enable K8s api-server audit

I want to enable auditing on the Kubernetes cluster for the api-server component. What I have tried: Edit /etc/kubernetes/manifests/kube-apiserver.yaml ... - --audit-policy-file=/etc/kubernetes/audit-policy.yaml -…
alexgdi
  • 1
  • 2
0
votes
0 answers

Is it expected that coredns pods look or know the network DNS real IP?

I created a cluster on bare metal, set up with one laptop as the control plane and another laptop as a worker node, for learning purposes. They're in a local lan with a home router. After a couple of tutorials that went smooth, I started having…
watery
  • 143
  • 12
0
votes
0 answers

cannot download calico on kubernetes cluster

I am trying to set up a kubernetes cluster on centos, and installing calico is one of the steps. My control plane is ready, but coredns are still pending. From the internet, i got the below command to install calico on the network curl…
noob_coder
  • 121
  • 1
0
votes
1 answer

Is it possible to make services running on local server reachable for public?

I'm running a local QNAP NAS server and a remote server which is hosted at a public provider (bare metal kubernetes cluster). I would like to run some services on my nas server, which should be reachable over the internet. For example I want to run…
user3142695
  • 105
  • 12
0
votes
0 answers

Dual Stack Kubernetes cluster assigning single stack IPs to pods & services

I am creating a dual stack Kubernetes cluster with kubeadm, and installing Calico. I am using the below configuration file for kubeadm: apiVersion: kubeadm.k8s.io/v1beta3 kind: InitConfiguration localAPIEndpoint: advertiseAddress: 0.0.0.0 …
0
votes
1 answer

kubeadm config images pull fails

I am trying to install k8s on a new machine running Ubuntu 20.04 using containerd and kubeadm is failing to load the images: # kubeadm config images pull --kubernetes-version=1.21.0 --image-repository registry.k8s.io failed to pull image…
David Tinker
  • 589
  • 1
  • 8
  • 18
0
votes
0 answers

bare-metal k8s zone routing for use with Multus cni

I have a Kubernetes cluster, every node is located in a different network (different data centers) So I need to route a public IP address range to this cluster and use those IPv4 addresses within the cluster using Multus CNI as the second network…
0
votes
1 answer

Send kubernetes audit logs to multiple servers

How to send k8s audit logs to multiple servers/endpoints? I tried to pass multiple --audit-webhook-config-file arguments to kube-apiserver add another cluster to the webhook config file but these modifications are invalid and the kube-apiserver…
Petr Javorik
  • 210
  • 2
  • 7
0
votes
0 answers

k8s cron job using helm chart and docker

Two Helm chart for managing db cron jobs and monitoring cron jobs separately . Which k8s components can i use ? as k8s deprecated CronJob kind from v1.25, https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-25 . Please share…
0
votes
1 answer

Could not communicate to Elasticsearch, resetting connection and trying again. EOFError (EOFError)[Fluentd using helm on kubernetes]

I'm installing elasticsearch, kibana and fluentd in kubernetes with helm chart Elasticsearch and kibana pods stand up smoothly, but fluentd pods don't stand up I get the following errors: 2023-06-13 13:29:39 +0000 [warn]: #0 [filter_kube_metadata]…
zoroglur
  • 101
  • 1
0
votes
0 answers

How to update podCIDR for Kubernetes master node without recreating it

I have installed a Kuberntes system with one node,the node itself worked as both work node and master node,now I met a problem: When the pod num exceed 255,Kubernetes will failed to deplopy it,after checking the node it shows there is no available…
flyingfox
  • 101
  • 1
1 2 3
99
100