|
- Kubernetes how to make Deployment to update image
If you want a kubernetes deployment to start a new pod using the same image (and this trick only works with the "latest" tag) you have to specify it without a tag Next time add the "latest" tag and it will trigger the update The order could be reversed, it doesn't matter
- How to set dynamic values with Kubernetes yaml file
There is a ConfigMap feature with Kubernetes, but that's also write the key value to the yaml file Is there a way to set the key to environment variables?
- Kubernetes: list all pods and its nodes - Stack Overflow
I have 3 nodes, running all kinds of pods I would like to have a list of nodes and pods, for an example: NODE1 POD1 NODE1 POD2 NODE2 POD3 NODE3 POD4 How can this please be achieved?
- How to switch namespace in kubernetes - Stack Overflow
Say, I have two namespaces k8s-app1 and k8s-app2 I can list all pods from specific namespace using the below command kubectl get pods -n lt;namespace gt; We need to append namespace to all comma
- What is the meaning of CPU and core in Kubernetes?
To clarify what's described here in the Kubernetes context, 1 CPU is the same as a core (Also more information here) 1000m (milicores) = 1 core = 1 vCPU = 1 AWS vCPU = 1 GCP Core 100m (milicores) = 0 1 core = 0 1 vCPU = 0 1 AWS vCPU = 0 1 GCP Core For example, an Intel Core i7-6700 has four cores, but it has Hyperthreading which doubles what the system sees in terms of cores So in essence
- kubernetes - What is the best practice to have request and limit values . . .
An 8x difference between requests and limits "feels" very large to me Given your setup, the kubectl describe node output looks about right to me Notice that the resource requests are very close to 100%: Kubernetes will keep scheduling pods on a node until its resource requests get up to 100%, and whatever the corresponding limits are, they are
- How do I add an intermediate SSL certificate to Kubernetes ingress TLS . . .
How do I add an intermediate SSL certificate to Kubernetes ingress TLS configuration? Asked 7 years, 11 months ago Modified 2 years, 2 months ago Viewed 39k times
- What is the cluster IP in Kubernetes? - Stack Overflow
I have created a cluster of three nodes: one master, two minions How to check the cluster IP in Kubernetes? Is it the IP of the master node?
|
|
|