|
- 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 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
- memory - What are the difference between M and Mi in Kubernetes . . .
What are the difference between M and Mi in Kubernetes resources documentation? Asked 4 years, 1 month ago Modified 2 years, 4 months ago Viewed 34k times
- kubernetes - How to kubectl re-apply deployment - Stack Overflow
I want to update my pod because there is a new image uploaded to docker registry with latest tag I am currently doing this: kubectl delete -f deployment yaml kubectl apply -f deployment yaml If I
- kubernetes - How to schedule pods restart - Stack Overflow
Is it possible to restart pods automatically based on the time? For example, I would like to restart the pods of my cluster every morning at 8 00 AM
- 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
- 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
- kubernetes - How does kubectl port-forward create a connection? - Stack . . .
111 kubectl port-forward makes a specific Kubernetes API request That means the system running it needs access to the API server, and any traffic will get tunneled over a single HTTP connection
|
|
|