|
- 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
- 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?
- kubernetes - kubectl ls -- or some other way to see into a POD - Stack . . .
You can execute commands in a container using kubectl exec command For example: to check files in any folder: kubectl exec <pod_name> -- ls -la or to calculate md5sum of any file: kubectl exec <pod_name> -- md5sum some_file
- 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
- How to expose a Kubernetes service on a specific Nodeport?
kubectl delete service kubernetes-dashboard -n kube-system Expose the Dashboard deployment as a NodePort kubectl expose deployment kubernetes-dashboard -n kube-system --type=NodePort The above will assign a random port >= 30000 So use the Patch command to assign the port to a known, unused and desired port >= 30000
- kubernetes - How to see logs of terminated pods - Stack Overflow
I am running selenium hubs and my pods are getting terminated frequently I would like to look at the logs of the pods which are terminated How to do it? NAME
- 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
- 403 Forbidden error when trying to access Kubernetes API from a pod
As per this Documentation, I am trying to access the Kuberenetes API from a pod, using the following command curl --cacert ca crt -H "Authorization: Bearer $( lt;token)" https: kubernetes apis
|
|
|