Questions tagged [helm3]

Version 3 is the only currently-supported version of the Kubernetes Helm deployment tool. Use [kubernetes-helm] instead of this tag.

The tool deploys applications as "charts" of templated YAML files. Version 3 of Helm was released on November 13, 2019; version 2 became unsupported a year later, on November 13, 2020.

There are only minor differences in the templating engine between the two versions. The major differences are operational: Helm 3 no longer requires an in-cluster "Tiller" management tool, and its command-line options are different for some common commands. Questions about migrating Helm 2 to Helm 3 or other non-programming questions are not generally on-topic for Stack Overflow, and might be better asked on related sites like Server Fault or DevOps.SE.

Questions with this tag should almost always be tagged with , and often with either or both of and , depending on the specifics of the question. However, since the Helm 3 is the only currently supported version and since template language has remained essentially the same between the two versions, it is not usually necessary to tag a question as .

654 questions
-1
votes
1 answer

Helm doesn't configure what I mean

My command is to install a GitLab chart on my microK8s cluster. In this command, I want to instruct Helm to deploy a GitLab-CE with some configuration on volume size. $ microk8s.helm3 install gitlab-ce gitlab/gitlab --set…
-1
votes
1 answer

How to stop & exit jenkins from Kubernetes cluster

I have installed Jenkins through Helm with below commands. $ chart=jenkinsci/jenkins $ helm install jenkins -n jenkins -f jenkins-values.yaml $chart Now how do i stop & exit Jenkins completely from my kubernetes cluster? # kubectl delete pod…
user4948798
  • 1,924
  • 4
  • 43
  • 89
-1
votes
1 answer

helm bitnami/redis does not provide peristent volume

When I installed with "helm install redis bitnami/redis" then persistent volume claims and persistent volumes were created too. However now, I am trying to run same command but persistent volumes does not seem on Kubernetes. Therefore pod is not…
Onur AKKÖSE
  • 84
  • 2
  • 10
-1
votes
1 answer

Checking result of command in helm chart (helm-hooks)

I am trying to execute a pre install job using helm charts. Can someone help getting result of command (parameter in yaml file) that I put in the below file: apiVersion: batch/v1 kind: Job metadata: name: pre-install-job annotations: …
-2
votes
1 answer

Helm Dependency Update not working from ansible shell

I am trying to run helm dependency update charts/ from Ansible shell module, but its throwing error Error: XYZ chart not found in repo https://abc/123 However, when i am running same command manually it is working. I am using same user in both the…
Ankit
  • 607
  • 1
  • 5
  • 12
-2
votes
1 answer

Adding key-values in yaml at specific location using python or sed

I am trying to add following key values in values.yaml at exactly at particular location, sed doesn't help much, as it breaks indentation of yaml. Is there any other way to get this right. Ex: sample yaml desired yaml
Learner
  • 97
  • 1
  • 4
-3
votes
2 answers

Docker init container mounting existing files issue

We had build a docker image that contains an existing file inside. /opt/app/agent/oneagent. When I test the docker image individually, i can see the file inside the directory. However, when I use it as an initcontainer to mount that directory to the…
chocokoala
  • 191
  • 4
  • 15
1 2 3
43
44