About 4,330,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 75k times

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

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

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

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

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

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

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

  10. Get YAML for deployed Kubernetes services? - Stack Overflow

    May 12, 2017 · I have deployed the app in Kubernetes via the + button. I don't have the YAML for this. I have inserted a Secret in Kubernetes for the PEM file required by the app. How do I get the YAML …