About 4,450,000 results
Open links in new tab
  1. kubernetes - Setting secrets as environment variables in deployment ...

    Jul 12, 2022 · I'm currently working on a Kubernetes deployment file and I need to set the environment variables that the container will have. Is there a way to set Kubernetes secrets as environment …

  2. kubernetes - kubectl - How to restart a deployment (or all deployment ...

    Oct 8, 2020 · kubectl - How to restart a deployment (or all deployment) Asked 5 years, 2 months ago Modified 11 months ago Viewed 74k times

  3. Restart pods when configmap updates in Kubernetes?

    May 19, 2016 · How do I automatically restart Kubernetes pods and pods associated with deployments when their configmap is changed/updated? I know there's been talk about the ability to automatically …

  4. kubernetes - Difference between daemonsets and deployments - Stack …

    Dec 21, 2018 · Kubernetes deployments manage stateless services running on your cluster (as opposed to for example StatefulSets which manage stateful services). Their purpose is to keep a set of …

  5. Kubernetes how to make Deployment to update image

    I do have deployment with single pod, with my custom docker image like: containers: - name: mycontainer image: myimage:latest During development I want to push new latest version and make

  6. kubernetes - What is the difference between a pod and a deployment ...

    Jun 8, 2019 · 310 Both Pod and Deployment are full-fledged objects in the Kubernetes API. Deployment manages creating Pods by means of ReplicaSets. What it boils down to is that Deployment will …

  7. Get current image of kubernetes deployment - Stack Overflow

    Aug 23, 2016 · How can I use kubectl or the API to retrieve the current image for containers in a pod or deployment? For example, in a deployment created with the below configuration, I want to retrieve …

  8. How to configure a Kubernetes Multi-Pod Deployment

    Apr 5, 2017 · Do I need to create pod.yml files and then somehow reference them in the deployment.yml file or can a deployment file also embed pod definitions? Kubernetes documentation seems to imply …

  9. 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 …

  10. Kubernetes Deployments vs StatefulSets - Stack Overflow

    Feb 19, 2021 · Deployment of Stateful and Stateless application Stateful application is used to deploy using Statefulset component of Kubernetes. Stateless application is used to deploy using …