|
- 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 - kubectl ls -- or some other way to see into a POD - Stack . . .
I'm using kubectl cp to copy a jar file from my local file system into a the home directory of a POD in my minikube environment However, the only way I can confirm that the copy succeeded is to is
- kubernetes - How to check if network policy have been applied to pod . . .
I'm trying to restrict to my openvpn to allow accessing internal infrastructure and limit it only by 'develop' namespace, so I started with simple policy that denies all egress traffic and see no e
- 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 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 - 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 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 - Listing all resources in a namespace - Stack Overflow
I would like to see all resources in a namespace Doing kubectl get all will, despite of the name, not list things like services and ingresses If I know the the type I can explicitly ask for that
|
|
|