|
- 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
- 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 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 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
- Kubernetes: how to set VolumeMount user group and file permissions
The Kubernetes securityContext, including fsGroup, does not change the ownership or permissions of files on hostPath volumes This is because hostPath volumes directly mount directories from the host node's filesystem, and Kubernetes does not modify the file ownership or permissions of the host's file system when doing so
- 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
- Kubernetes add ca certificate to pods trust root - Stack Overflow
34 In my 10-machines bare-metal Kubernetes cluster, one service needs to call another https-based service which is using a self-signed certificate However, since this self-signed certificate is not added into pods' trusted root ca, the call failed saying can't validate x 509 certificate All pods are based on ubuntu docker images
|
|
|