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
2
votes
1 answer

Where helm stores its data on a cluster

Alice deployes a chart from her computer to a k8s cluster. Bob runs helm ls -a on that cluster and sees Alice's chart. I am looking for any configmaps on my cluster that could hold chart info but cant find any. Where is it then?
Łukasz
  • 1,980
  • 6
  • 32
  • 52
2
votes
1 answer

Airflow installation with helm on kubernetes cluster is failing with db migration pod

Error: Steps: I have downloaded the helm chart from here https://github.com/apache/airflow/releases/tag/helm-chart/1.8.0 (Under Assets, Source code zip). Added following extra params to default values.yaml, createUserJob: useHelmHooks:…
veeresh patil
  • 1,168
  • 1
  • 11
  • 18
2
votes
2 answers

How to get apiserver endpoint URL in helm template?

I'm looking to get the information available in the command kubectl cluster-info Kubernetes control plane is running at https://api.joseph-rancher-cluster-2.rancher.aveshalabs.io CoreDNS is running at…
2
votes
0 answers

connect to replicated Postgresql through Pg_bouncer deployed on local cluster using Minikube

I'm new to Kubernetes and Helm, I took time to read the docs to understand the concepts to move on with my task which I mentioned in the question's title. I looked for the examples and based on what I see in the docs & values example, I can add…
Jafar
  • 21
  • 2
2
votes
1 answer

Setting up Harbor registry in Minikube

I'm trying to set up a Harbor Registry in Kubernetes cluster locally in Minikube. I am using https://github.com/goharbor/harbor-helm and trying to set it up with the ingress controller. At the moment, I have not changed any defaults (the default is…
user1015214
  • 2,733
  • 10
  • 36
  • 66
2
votes
2 answers

Azure ADO Helminstaller Unable to locate executable file: 'helm'

I am using helm installer task in ado yaml pipeline. It has been working fine for more than a year now. All of a sudden today I am seeing below error. ##[error]Error: Unable to locate executable file: 'helm'. Please verify either the file path…
2
votes
1 answer

Failed to install jupyterhub(z2jh) with helm on k8s, giving hook-image-awaiter with timeout error (Error: pre-upgrade hooks failed)

I'm installing jupyterhub on k8s using helm. helm upgrade --cleanup-on-fail --install jupyterhub jupyterhub-2.0.0/jupyterhub/ --namespace my-NS --create-namespace --version=2.0.0 --values my-values.yaml --timeout 30m --debug Its failing with error…
veeresh patil
  • 1,168
  • 1
  • 11
  • 18
2
votes
0 answers

How to get/download configured/updated values.yaml file of deployed application in ArgoCD dashbaord?

I have deployed an application in ArgoCD using open source helm charts(created application using using argo UI dashboard). I have modified/added some parameters in ArgoCD UI. I need the values.yaml file with updated data so that I can use it to…
veeresh patil
  • 1,168
  • 1
  • 11
  • 18
2
votes
1 answer

Get the name of the Helm subchart in the umbrella chart

I have a subchart in the chart dependencies defined as: dependencies: - condition: myTestSubchart.enabled name: my-test-subchart repository: oci://harbor.test.com/helm version: 0.1.0 alias: myTestSubchart The alias is defined as…
user1563721
  • 1,373
  • 3
  • 28
  • 46
2
votes
0 answers

I am getting an error while installing helm chart

Colleagues, good afternoon! Tell me what could be the problem? Installation fails with the following error: INSTALLATION FAILED: failed post-install: timed out waiting for the condition Trying to install cert-manager via helm: helm install…
2
votes
1 answer

Helm does not resolve local dependencies repository file path

i'm triyng to do one Helm Chart for different environments. In many tutorials such scheme should works, but my structure does not read value from dependency repository. Helm just ignores it. I have following folder structure helm - charts …
JDev
  • 2,157
  • 3
  • 31
  • 57
2
votes
1 answer

How to concat string to result of .AsConfig in helm?

I have config like this: {{- with .Files.Glob "files/my-files/*.json" }} {{ .AsConfig | indent 2 }} {{- end }} In the end of each file I want to add "FIHISHED!" How can I achieve it in helm ?
gstackoverflow
  • 36,709
  • 117
  • 359
  • 710
2
votes
1 answer

Facing "error calling ge: incompatible types for comparison" in helm template

I'm trying to set pdb value based on hpa min replica value using below logic spec: {{ if (ge .Values.autoscaling.minReplicas 5) }} minAvailable: 80 {{ else if (eq .Values.autoscaling.minReplicas 4) }} minAvailable: 75 {{ else if (eq…
2
votes
1 answer

Should Helm dependencies (charts folder) be version controlled?

I've devised below way for managing helm chart dependencies in the context of CI/CD pipelines and not sure it's correct. each chart source code has to be in a dedicated repository as a convention. each chart should specify its dependencies in…
rok
  • 9,403
  • 17
  • 70
  • 126
2
votes
0 answers

I cannot log in the Chainlink GUI

I am using this helm chart https://artifacthub.io/packages/helm/vulcanlink/chainlink I managed to launch and connect Chainlink node with Postgres, with these values config: # Login Info ROOT: /chainlink API_LOGIN: | …
Kostas Demiris
  • 3,415
  • 8
  • 47
  • 85