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

Google Stackdriver showing usage stats for all kubernetes pods except one

I deployed a Kubernetes Cluster on GCP and use Stackdriver for monitoring CPU & memory. Stackdriver does list stats (CPU, memory etc.) for all pods within the cluster except one. This has lasted now for a week and the one missing pod is definitely…
0
votes
1 answer

how to deploy/use sslh on a kubernetes cluster?

Has anyone encountered a way to run sslh on a Kubernetes cluster, preferably integrated with IngressController functionality (eg, nginx ingress controller)? The ability to SSH via port 80 is very interesting, but I have not been able how to…
JoaoCC
  • 295
  • 1
  • 3
  • 8
0
votes
1 answer

Kubernetes python client change name of ConfigMap

I have the following deployment spec: spec: template: spec: volumes: - name: config-web configMap: name: config-web-2-5 I want to use the kubernetes python client to change the name of ConfigMap from…
Garreth McDaid
  • 3,449
  • 1
  • 27
  • 42
0
votes
1 answer

`vault secrets` doesn't seem to exist

I'm going through the vault getting started guide and I'm on the secrets engines section. I'm running the vault v0.9.1 dev server on Arch Linux and have also tried the same thing on vault:0.9.1 from the docker hub. All commands relating to vault…
urbanslug
  • 3
  • 2
0
votes
1 answer

elasticsearch: max file descriptors [1024] for elasticsearch process is too low, increase to at least [65536]

When I tried to run the logging aggregation I found out the following error generated by elasticsearch: [2018-02-04T13:44:04,259][INFO ][o.e.b.BootstrapChecks ] [elasticsearch-logging-0] bound or publishing to a non-loopback or non-link-local…
mootez
  • 1
  • 1
  • 1
0
votes
2 answers

Kubernetes service via OpenVPN

We have lot of access-points which are connecting to FreeRADIUS such way: AP is connecting to OpenVPN service via vpn it have access to freeradius server Now we want to move our environment to Kubernetes, but how to use in AP configuration…
user3069488
  • 169
  • 2
  • 4
  • 19
0
votes
1 answer

Is there an established deployment process for Kubernetes and AWS for Windows developers?

nb. I mean Linux nodes and containers, but where one's development environment is Windows. As far as I can see, there are two main tools for making Kubernetes deployments to AWS: kops kube-aws However, both of these tools are Linux/MacOS only.…
dwjohnston
  • 149
  • 1
  • 1
  • 5
0
votes
1 answer

Why does Kubernetes recommend a large VM for the master node?

I'm looking at this guide for deploying a Kubernetes cluster to AWS, it says: For the master, for clusters of less than 5 nodes it will use an m3.medium, for 6-10 nodes it will use an m3.large; for 11-100 nodes it will use an m3.xlarge. For…
dwjohnston
  • 149
  • 1
  • 1
  • 5
0
votes
0 answers

Dynamic firewall rules in Google cloud - granting access from all kubernetes nodes to one instance

Let's say that you have a kubernetes cluster with a few nodes in a project in google cloud, and you have one separate instance in that project that all the nodes should have access to. How do you go about granting access to this instance…
Ulukai
  • 909
  • 2
  • 12
  • 29
0
votes
1 answer

Why does kubeadm upgrade get stuck waiting for the kubelet to restart the component?

I'm trying to upgrade a Kubernetes multi-master cluster from v1.8.5 to v1.9.1 on Ubuntu 1604 LTS. When I run sudo kubeadm upgrade apply v1.9.1 it gets as far as backing up the old manifest for kube-apiserver.yaml and then displays…
swref
  • 111
  • 5
0
votes
1 answer

Port a bare-metal service into Kubernetes

I am new to docker/contaners etc. I have a node server running on a metal machine on port 8080. I have NginX running as a reverse proxy for it. The application establishes a web socket per client connected, to facilitate real-time chat. At the…
Merc
  • 789
  • 1
  • 6
  • 16
0
votes
2 answers

Specify how a container is replaced with Kubernetes

I am creating my kubernetes cluster through deis. Currently when ever rolling out new deploys, kubernetes will start new containers before terminating the old. However in certain cases, it's more desirable to kill the old container before starting…
Phuong Nguyen
  • 703
  • 1
  • 12
  • 27
0
votes
2 answers

How to mount azurefile persistentVolume in a Kubernetes pod with non-root user rights?

I'm running a Kubernetes 1.8.4 cluster on Azure (populated with acs-engine v0.10). I need to run a Redis pod with data persistency, so I'm using persistentVolume / persistentVolumeClaim with azurefile storageClass so that Redis can save to that…
Olivier Dauby
  • 235
  • 1
  • 3
  • 9
0
votes
2 answers

Any way to delay termination of an older pod, to "wait" for the new pod to be ready to serve requests?

We have one deployment that consists of only one pod (with service and ingress). It is using a Docker container that executes a custom run script as its command. When we roll out a new version, image is pulled, new pod is created and that script is…
Kortemy
  • 103
  • 1
0
votes
1 answer

TeamCity server reports zero available disk space when run inside Kubernetes

I have a strange problem with TeamCity server (and TeamCity agent). I have them running inside Kubernetes. They both report that they have zero disk space available. However, there is enough disk space and if I ignore these warnings, everything…