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
0 answers

K8S: a tunnel between a pod and a node

I need to deploy an application which works as a CCM (cloud controller manager), so it needs to have access to the master servers. I have a K8S cluster that has been set up by Kubespray, all my nodes are running kubelet that takes configuration from…
Volodymyr Melnyk
  • 577
  • 1
  • 5
  • 19
0
votes
1 answer

HA kubernetes cluster health commands

I was wondering if it's possible to see which component is the primary service(scheduler,controller-manager, etc.) in a multi-master deployment. Is there any command to show that information? Thanks in advance.
gixnex
  • 143
  • 10
0
votes
1 answer

Is there a way to determine to which etcd server the Kubernetes-apiserver is communicating with?

In the following scenario, is there a way to determine to which etcd server the Kubernetes-apiserver is communicating with?? Let's say we have 3 Master nodes with an external load balancer and 3 etcd's that are co-located in the same host with etcd…
0
votes
2 answers

Kubernetes kube-dns not resolving

I am noticing an unusual high latency when trying to resolve local and external DNS lookups inside Kubernetes. nslookup requests are sometimes resolved but take on average 40 seconds to complete. These lookups are causing systems like Kafka and…
0
votes
1 answer

Kubernetes nifi application deployment with configuration management

I have deployed my Ni-Fi application using Kubernetes on-prem setup. Now the image which i am using to spin up the docker container is from docker private registry, which i can see when i deployed using Daemon sets service because my requirement is…
0
votes
1 answer

Container orchestration that allows to orchestrate existing docker containers

I have been working with Docker for quite some time now and already have a production environment that started small but now has grown to more than 50 Linux nodes, each of those nodes running one Docker container. I have been orchestrating…
Tony
  • 269
  • 4
  • 15
0
votes
1 answer

Setup bridge for existing virtual birdge that minikube is running on

I managed to setup minikube on my system using kvm2 driver, and it seems to work. However i want to be able to launch the dashboard and access it externally, i.e. access it from another device within the network. I ran virsh net-dumpxml…
Aeseir
  • 101
  • 2
0
votes
1 answer

Compaction error: Corruption: block checksum mismatch: expected 862584094, got 1969278739

Currently trying to handle this right on my 3-day memorial weekend :D Ceph 13.2.4 (Filestore) Rook 0.9 Kubernetes 1.14.1 https://gist.github.com/sfxworks/ce77473a93b96570af319120e74535ec My setup is a Kubernetes cluser with rook handling Ceph.…
sfxworks
  • 157
  • 1
  • 8
0
votes
1 answer

kubeconfig authorization expire, how to extend?

By billing account, i create a gke cluster where connecting cluster by kubectl in cloud shell vm. however, i download kubeconfig to my local, connection is ok at the beginning after that connection does not work.
0
votes
1 answer

haproxy for k8s api server returns PR_END_OF_FILE_ERROR

I'm setting up haproxy for k8s api servers. The configuration for haproxy is: frontend k8s-https log /dev/log local0 debug option tcplog bind 0.0.0.0:8443 mode tcp default_backend k8s-https backend k8s-https mode tcp …
cgcgbcbc
  • 529
  • 1
  • 4
  • 9
0
votes
3 answers

Google Kubernetes Work Load HTTP Traffic Monitoring

I created an express app and deployed to Google kubernetes. I can see the workload there and access the app using the service URL. How can I see the traffic information with the status code? E.g. the number of times the API is hit with status code…
Mohd Shahid
  • 101
  • 2
0
votes
2 answers

How do I upgrade to Istio 1.1.3 on GKE using the Istio add-on?

According to this documentation on Google Cloud's website, the supported GKE version for Istio 1.1.3 is 1.13.5-gke.15. However, even a fresh GKE install using the $ gcloud beta container clusters create ... --cluster-version "1.13.5-gke.15" ...…
0
votes
1 answer

Slow GCP HTTP Global Load Balancer configuration

I have a GCP HTTP global load balancer config which is very slow and difficult to manage in the cloud console UI, almost to the point of being unusable. My other configs are very fast and far less complex. The load balancer itself is performing well…
0
votes
1 answer

Kubernetes with Dual Stack on both Pod and Service level

I have 3 Ubuntu VMs where all of them have 2 interfaces. One interface with v4 address and other with both v4 and v6 address. 3 VMs are reachable from each other on all 3 (2 v4 and 1 v6) addresses. I'm trying to install Kubernetes Cluster with…
0
votes
1 answer

Why is an Ingress resource assigned external IPs?

I have a GKE cluster running with the nginx-ingress controller from the Kubernetes community (via Helm). I set it up with a regional IP which I had reserved in advance like so: helm install stable/nginx-ingress \ --set…