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

juju add-subnet fails - missing subnets in new model?

I am following this blog post to create kubernetes in existing AWS infrastructure: https://insights.ubuntu.com/2017/02/08/automate-the-deployment-of-kubernetes-in-existing-aws-infrastructure/ $ juju --version 2.2.6-xenial-amd64 My differences: I…
Ryan
  • 65
  • 2
  • 7
0
votes
2 answers

Unable to find reasonable kubernetes installation documentation

I have been trying to setup kubernetes for a week now as part of an evaluation, but I can only find extremely complex manual solutions that are already out of date or outright broken insanely simple solutions that break a mind numbing amount of…
Ryan
  • 65
  • 2
  • 7
0
votes
1 answer

Nginx: special behaviour for upstream "Host not found" errors?

When nginx's proxy_pass returns a 502, there may be a broad range of reasons. What I want is to be able to detect when 502 was returned because upstream host was not found (that is, failed to resolve). I know of proxy_intercept_errors, but it…
Vlad Nikiforov
  • 453
  • 6
  • 15
0
votes
0 answers

minikube fails to start kubernetes cluster

I am new to Kubernetes and was trying to build a cluster using minikube. While trying to start the cluster using minikube , it fails with the following error $ minikube start --vm-driver=kvm Starting local Kubernetes v1.8.0 cluster... Starting…
Zama Ques
  • 523
  • 1
  • 9
  • 24
0
votes
1 answer

GCP: Access a Kubernetes Service from a Google Compute VM

I have services defined in Kubernetes that I'd like to access from a Google Compute VM on the same network as my k8s cluster. I've seen from this link that it is possible to ask the k8s API server how to access a service; trouble is I'm having…
0
votes
1 answer

OpenShift installation and Kubernetes dependency

Do we need installed and working kubernetes to intall OpenShift or it is right now standalone solution? I don't see any information about it in any of example installation procedure…
user3069488
  • 169
  • 2
  • 4
  • 19
0
votes
1 answer

How do I get Kubernetes to work without the "connection over port 8080" error?

I installed Kubernetes in RHEL 7.x. I expect kubectl commands to work without errors. Port 8080 is not being blocked from my client workstation to the RedHat server with Kubernetes. I tried several things to diagnose the problem. I ran this…
Jermoe
  • 11
  • 1
0
votes
1 answer

Redis-cluster Master consumes more memory than expected

I am running this redis cluster implementation in kubernetes: https://github.com/sobotklp/kubernetes-redis-cluster After some time running the master starts consuming more and more memory. It gets to the point where its consuming about 7gb of memory…
0
votes
1 answer

Kubernetes load balancer not receiving an external IP

[ansible@kctl-master kubectl]$ sudo kubectl get services NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE kubernetes 10.254.0.1 443/TCP 43s nginx-ingress 10.254.39.207 80:32102/TCP …
user192756
0
votes
1 answer

Kubernetes/Flannel doens't work in private network

I am able to run kubernetes (via kubeadm) on a private cluster/cloud without issue only when the nodes in the cluster have access to the internet (all node are connected to a dumb switch, which then has a network cable out to a gateway). If I remove…
Andi Jay
  • 121
  • 1
  • 5
0
votes
1 answer

How to sleep a pod in Kubernetes

I'm starting using Kubernetes/Docker and would like to know how to configure it for sleep some pod (container) after 30 minutes of inactivity. My team will working with a lot of pod and some of them will have to sleep after some time without user…
Bruce
  • 101
  • 1
0
votes
1 answer

Monitor health of prometheus deployment within kubernetes?

The setup is currently this: Kubernetes is deployed on AWS instances within a private hosted zone on AWS (only vpn access to the instances, though there is a NAT gatway), with Prometheus deployed as a stateful set within kubernetes to monitor…
0
votes
0 answers

fluentd services die immediately after they start up

Please excuse the naivety in my question, but this is not a subject I know much about at present. My company is currently running kubernetes-managed fluentd processes to push logs to logstash. These fluentd processes start up and fail immediately…
0
votes
1 answer

Running a HTTPS SSE server over Kubernetes/Ingress and Google Cloud Platform

I'm running a SSE server on a VPS and it works perfectly, no problems at all, but due to scalability reasons I needed to move it to another server. I moved the server to Google Cloud Platform/Google Container Engine and Kubernetes/Ingress. But now…
0
votes
0 answers

Ansible Jenkins plugin not working in GKE on top of docker/kubernetes - infinite loop

I have such simple playbook: - hosts: 123.123.123.123 tasks: - name: Jenkins - add job jenkins_job: config: "{{ lookup('file', 'jenkins_conf/pipeline_staging.xml') }}" name:…