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
3
votes
0 answers

Disable Helm v3 json schema validation

Is their anyway or any flag to disable Helm v3 json schema validation during Helm install or upgrade
SKR
  • 103
  • 1
  • 10
3
votes
2 answers

How to pass data between two helm charts?

I have two helm charts, I need to generate a random password in one of the charts, and I am required to use the same password in the second. What would be the best practice to achieve this? Thanks in advance!!
3
votes
0 answers

how to automatically roll deployments in helm when secret being used is created via some other helm chart

I want to automatically roll my deployment when there is a change in the secret being created via the same helm chart. For this I used sha256sum function and it worked well. I followed this Link for the same. kind: Deployment spec: template: …
Lucky Tyagi
  • 199
  • 1
  • 3
  • 12
3
votes
2 answers

How to create a kubernetes serviceAccount when I do helm install?

I added this in my values.yaml expecting the serviceAccount to be created when I do the helm install but that did not work, am I missing something ? helm version v3.9.0 kubernetes version v1.24.0 serviceAccount: # Specifies whether a service…
tuxmobil
  • 238
  • 3
  • 10
3
votes
2 answers

How to deploy Camunda Platform 8 to production on Kubernetes

I have tried to deploy Camunda Platform 8 using Helm Chart (https://artifacthub.io/packages/helm/camunda-platform/camunda-platform) but am unable to use ingress or load balancer IP for identity service as it redirects to localohost:18080 for…
3
votes
1 answer

How to add multiple ports in Helm service template?

How can I make below snippet to support multiple ports? The template should print multiple individual port sections. The template I currently have is: apiVersion: v1 kind: Service metadata: name: {{ include "myapp.fullname" . }} labels: {{-…
3
votes
1 answer

Rancher helm chart, cannot find secret bootstrap-secret

So I am trying to deploy rancher on my K3S cluster. I installed it using the documentation and helm: Rancher documentation While I am getting access using my loadbalancer. I cannot find the secret to insert into the setup. They discribe the…
kevingoos
  • 3,785
  • 4
  • 36
  • 63
3
votes
1 answer

How to install docker registry with helm on linod

I am following the documentation in this page and towards the bottom there is this code helm install docker-registry stable/docker-registry -f docker-configs.yaml When i run it, i get this error WARNING: This chart is deprecated Error: unable to…
Sean
  • 360
  • 3
  • 17
3
votes
1 answer

Stopping all pods in Kubernetes cluster before running database migration job

I deploy my App into the Kubernetes cluster using Helm. App works with database, so i have to run db migrations before installing new version of the app. I run migrations with Kubernetes Job object using Helm "pre-upgrade" hook. The problem is when…
Franzis
  • 33
  • 5
3
votes
3 answers

Unable to push Helm Chart to Google Cloud Artifact Registry using OCI

I'm trying to push a helm chart to Google Cloud OCI registry (Artifact Registry) but I get forbidden error: helm push testapp-1.0.0.tgz oci://europe-north1-docker.pkg.dev/project-id/my-artifact-registry/ Error: failed to authorize: failed to fetch…
farid g.
  • 519
  • 3
  • 11
3
votes
1 answer

Helm chart MongoDb cannot create directory permisions

I try to deploy mongodb with helm and it gives this error: mkdir: cannot create directory /bitnami/mongodb/data : permision denied. I also tried this solution: sudo chown -R 1001 /tmp/mongo but it says no this directory.
Onur AKKÖSE
  • 84
  • 2
  • 10
3
votes
2 answers

while trying to deploy Prometheus I got Error: found in Chart.yaml, but missing in charts/ directory: kube-state-metrics

Commands used: git clone https://github.com/helm/charts.git cd charts/stable/prometheus helm install prometheus . --namespace monitoring --set rbac.create=true After Running the 3rd command I got below error: Anyone Please help me out from…
3
votes
1 answer

How can I pass imagePullSecrets, as it is defined in the default template, to helm via set commands

When you run helm create mychart it has imagePullSecrets defined like this: spec: {{- with .Values.imagePullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }} {{- end } In default values file it looks like it's passing it a blank…
red888
  • 27,709
  • 55
  • 204
  • 392
3
votes
1 answer

Helm with Azure results in 401 Unauthorized

Helm version: 3.6.1 Following steps are successful with ACR, adding remote chart repo: helm repo add myrepo https://myrepo.azurecr.io/helm/v1/repo --username "..." --password "..." helm search repo myrepo --> lists the available chart repos But as…
sl3dg3
  • 5,026
  • 12
  • 50
  • 74
2
votes
1 answer

How to setup a Helm Registry on JFrog Artifactory? Can we use cm-push plugin to push helm charts to JFrog Artifactory?

I am faced with a situation where I need to use JFrog Artifactory as a Helm Registry. I have got the Helm Chart ready with me and have added the Helm Repo using the helm repo add command. However, while trying to push the chart to JFrog Registry. I…
1 2
3
43 44