
What is the meaning of CPU and core in Kubernetes?
Aug 30, 2019 · 70 To clarify what's described here in the Kubernetes context, 1 CPU is the same as a core (Also more information here).
kubernetes - How does kubectl port-forward create a connection?
Jul 23, 2018 · As far as I understand, to access any application within Kubernetes cluster there should be a Service resource created and that should have an IP address which is accessible from an …
kubernetes - Pods stuck in PodInitializing state indefinitely - Stack ...
Nov 16, 2018 · I've got a k8s cronjob that consists of an init container and a one pod container. If the init container fails, the Pod in the main container never gets started, and stays in "PodInitializing"
How can I trigger a Kubernetes Scheduled Job manually?
Nov 3, 2016 · I've created a Kubernetes Scheduled Job, which runs twice a day according to its schedule. However, I would like to trigger it manually for testing purposes. How can I do this?
How to set dynamic values with Kubernetes yaml file
Jan 17, 2018 · 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 - Namespace "stuck" as Terminating. How do I remove it ...
I've had a "stuck" namespace that I deleted showing in this eternal "terminating" status.
kubernetes - Ingress configuration for k8s in different namespaces ...
Jan 21, 2020 · Ingress rules: separate Kubernetes resources with kind: Ingress. Will only take effect if Ingress Controller is already deployed on that node. While Ingress Controller can be deployed in any …
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 …
docker - how to stop/pause a pod in kubernetes - Stack Overflow
Feb 22, 2019 · I have a MySQL pod running in my cluster. I need to temporarily pause the pod from working without deleting it, something similar to docker where the docker stop container-id cmd will …
Kubernetes: how to set VolumeMount user group and file permissions
Apr 21, 2017 · The Kubernetes securityContext, including fsGroup, does not change the ownership or permissions of files on hostPath volumes. This is because hostPath volumes directly mount …