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.

2075 questions
1
vote
1 answer

K8s monitor resource utilization then create container automatically

Tried to find a solution for a project, not sure can K8s do that by itself or need a third-party tool to get involved. For example, I have 3 Nginx containers to provide load balance for our web service. I would like to let K8s monitor…
ITnewbie
  • 151
  • 1
  • 6
1
vote
1 answer

Istio Keeps On Showing TcpProxyValidationError Errors

I initially created an EnvoyFilter to apply idle_timeout of 5s to outbound requests originating from workloads with label app: mecha-dev. apiVersion: networking.istio.io/v1alpha3 kind: EnvoyFilter metadata: name: tcp-idle-timeout spec: …
bakadevops
  • 33
  • 1
  • 4
1
vote
1 answer

Google Kubernetes Cluster rebuild issue

We have set up a Google Kubernetes Cluster with VMs scaling from 2 to 5. There are 5-6 pods/containers running on it. We have also set up ngnix for routing, and everything is running perfectly. But we are having issues with the Google cluster. It…
Mahendra
  • 11
  • 1
1
vote
1 answer

worker_processes value for Nginx/Openresty running on Kubernetes

Based on the documentation here, https://nginx.org/en/docs/ngx_core_module.html#worker_processes The worker_processes is defined as the number of worker processes. The optimal value depends on many factors including (but not limited to) the number…
1
vote
2 answers

Prometheus not connected to alert manager in GKE

I installed kube-prometheus-stack 15.3.1 into a GKE cluster using helm (in "monitoring" namespace). I used the values.yaml to open up ingresses on some of the components and to add SMTP info and reciever details into the alert manager. For the most…
1
vote
1 answer

CreateContainerError: context deadline exceeded

For a project, I must use big containers (500Mb to 60Gb). I don't have a precise measurement but when I run containers larger than 3-5Gb with gitlab-runner, I get an error in rancher: CreateContainerError: context deadline exceeded Our kubernetes…
Oyabi
  • 133
  • 2
  • 13
1
vote
1 answer

Why is My Istio EnvoyFilter with TCP Idle Timeout Setting not working?

I have created an EnvoyFilter to apply TCP idle timeout to outbound requests. Here's my filter configuration: apiVersion: networking.istio.io/v1alpha3 kind: EnvoyFilter metadata: name: tcp-idle-timeout spec: workloadSelector: labels: …
bakadevops
  • 33
  • 1
  • 4
1
vote
1 answer

New Kubernetes IngressClass resource and only specifying IngressClassName (nginx ingress controller)

Summary I am specifying an IngressClassName without a corresponding IngressClass resource and it is unexpectedly working fine; my understanding was you need to define the IngressClass resource as well. Previously we were using the annotation based…
1
vote
1 answer

GKE fails to mount volumes to deployments/pods: timed out waiting for the condition

We ran into an issue with our GKE volume usage. Starting from tonight our deployments couldn't access our main document storage disk anymore, the logs looked something like this: ... …
Jacob
  • 131
  • 4
1
vote
2 answers

Kubernetes - vSphere Cloud Provider

I'm following this doc https://cloud-provider-vsphere.sigs.k8s.io/tutorials/kubernetes-on-vsphere-with-kubeadm.html I am using a load balancer as my ControlPlaneEndpoint, now I would like to join a new master to the cluster passing the…
1
vote
2 answers

Kubernetes trouble - /var/lib/calico/nodename: no such file or directory

I'm following guide from Linux Foundation "Kubernetes Administrator" course and stuck on deploying simple app. I think trouble is even earlier than with app deployment. I've created master and worker, seems that they are ok: $ kubectl get nodes NAME…
1
vote
1 answer

Extend VMware persistent volume in Kubernetes

How to extend VMware persistent volume (PV/PVC) with Kubernetes's VMwware in-tree driver ? (using Rancher 2.5 with VMware/vSphere cloud provider, and Kubernetes 1.18) I created a storageclass with the following UI options: Provider: VMWare vSphere…
Franklin Piat
  • 736
  • 6
  • 22
1
vote
0 answers

How to manage Domain DNS with Kubernetes Cluster

I would like to setup a Kubernetes Cluster with two master nodes and 5 simple nodes. Every nodes is dedicated server on Linux. I will setup two load balancer HAProxy server in front of them (On on Asia and One in EU managed by DNS Anycast). My…
user623157
  • 11
  • 1
1
vote
1 answer

K8s failed Job keeps running (Duration counting up)

I defined a test job: apiVersion: batch/v1 kind: Job metadata: name: testjob spec: activeDeadlineSeconds: 100 backoffLimit: 3 template: spec: containers: - name: testjob image: bitnami/kubectl:1.20 …
adroste
  • 113
  • 2
1
vote
0 answers

Kubernetes in RasPi 4B does not detect RAM

I'm trying to set up a Kubernetes cluster on a bunch of Raspberry Pi 4B nodes. I adopted the setup I use for my v-kube-cluster (Kubernetes in virtual boxed using vagrant). See https://github.com/sebastian9486/v-kube-cluster (but not essential to my…