Multiple environments (Staging, QA, production, etc) with Kubernetes
What is considered a good practice with K8S for managing multiple environments (QA, Staging, Production, Dev, etc)? As an example, say that a … Read more
What is considered a good practice with K8S for managing multiple environments (QA, Staging, Production, Dev, etc)? As an example, say that a … Read more
I’ve had a “stuck” namespace that I deleted showing in this eternal “terminating” status. 28 Answers 28
How do I automatically restart Kubernetes pods and pods associated with deployments when their configmap is changed/updated? I know there’s been talk about … Read more
All of a sudden, I cannot deploy some images which could be deployed before. I got the following pod status: [root@webdev2 origin]# oc … Read more
I’ve created a Kubernetes Scheduled Job, which runs twice a day according to its schedule. However, I would like to trigger it manually … Read more
I’m now trying to run a simple container with shell (/bin/bash) on a Kubernetes cluster. I thought that there was a way to … Read more
I do have deployment with single pod, with my custom docker image like: containers: – name: mycontainer image: myimage:latest During development I want … Read more
I have Kubernetes working well in two different environments, namely in my local environment (MacBook running minikube) and as well as on Google’s … Read more
Running kubectl logs shows me the stderr/stdout of one Kubernetes container. How can I get the aggregated stderr/stdout of a set of pods, … Read more
In the Kubernetes/Docker ecosystem there is a convention of using /healthz as a health-check endpoint for applications. Where does the name ‘healthz’ come … Read more