kubernetes-helm Questions

3

I am trying to parse a helm chart YAML file using python. The file contains some curly braces, that's why I am unable to parse the YAML file. a sample YAML file apiVersion: v1 kind: ConfigMap metad...
Negotiant asked 20/8, 2020 at 7:49

2

I'm trying to generate kubernetes manifests from local ArgoCD manifests that use helm. I'm using a script to parse values and then helm template to generate the resulting template. But I'm having t...
Storer asked 21/7, 2023 at 16:57

1

I hope you can help me light some more light on my issue. Currently I'm using: Terraform v1.3.5 Helm provider v2.8.0 Kubernetes provider v2.16.1 Lately I've been adapting the helm provider on Ter...
Rinee asked 5/1, 2023 at 12:10

2

I am interested in generating docker-compose.yaml files from Helm charts. Is there a good way or tool to do this? I realize that this is in the opposite direction from what most people are doing. ...
Neurosurgery asked 30/1, 2020 at 7:34

5

Solved

Is there a way to flatten a dictionary with helm? I want to provide environment variables to the application from the chart by flattening a YAML config located in values.yaml. The config can look l...
Lashonlashond asked 17/4, 2020 at 21:19

3

Is there any way to apply a helm chart to existing resources? Eg: I have already created a namespace manually and now I want to "helmify" it. But when I add a new template file to my chart and ru...
Earwax asked 19/2, 2018 at 17:11

4

I need to start kubernetes pods in a sequence like pod2 should start only when pod1 is up and running. we can do this in docker-compose.yml using depends_on
Madrepore asked 17/5, 2018 at 6:56

2

Is there's a way to NOT remove certain resources from the cluster when uninstalling releases, and to re-use them (without conflict) when re-installing? I was thinking of resources such as secrets ...
Lithology asked 26/5, 2020 at 22:16

4

Solved

I'm trying to deploy an EKS self managed with Terraform. While I can deploy the cluster with addons, vpc, subnet and all other resources, it always fails at helm: Error: Kubernetes cluster un...
Krenek asked 4/2, 2022 at 15:20

6

Solved

Cannot install the helm chart but when I use raw file generated by helm, I am able to install via kubectl apply. Following error is displayed when i use helm install myChart . --debug Error: cannot...
Drumm asked 23/12, 2021 at 16:23

9

I'd like to allow our developers to pass dynamic arguments to a helm template (Kubernetes job). Currently my arguments in the helm template are somewhat static (apart from certain values) and look ...
Myron asked 3/10, 2018 at 22:32

3

I have a values.yaml that has the following: abc: env: - name: name01 value: value01 - name: name02 value: value02 and I have another values file values-dev.yaml that I add when installing ...
Bedim asked 18/12, 2019 at 14:44

4

Solved

I am creating a CI/CD pipeline. I run helm install --wait --timeout 300 .... But that doesn't really wait, just returns when the "release" status is DEPLOYED. So then I see a few things in kubect...
Vladikavkaz asked 11/5, 2018 at 0:50

11

I am trying to install a helm release, using following command helm upgrade --install --reset-values {release-name} ../chart --namespace test01 --values /tmp/values737957648 The chart is not packa...
Averir asked 27/10, 2020 at 12:44

3

Solved

General Cluster Information: Kubernetes version: 1.19.13 Cloud being used: private Installation method: kubeadm init Host OS: Ubuntu 20.04.1 LTS CNI and version: Weave Net: 2.7.0 CRI and ver...

4

Solved

I am creating a helm chart for my app. In the templates directory, I have a config-map.yaml with this in it {{- with Values.xyz }} xyz.abc-def: {{ .abc-def }} {{- end }} When I try to run hel...
Talc asked 11/9, 2020 at 20:8

4

Solved

I want to make some deployments in kubernetes using helm charts. Here is a sample override-values yaml that I use: imageRepository: "" ocbb: imagePullPolicy: IfNotPresent TZ: UTC logDir: /oms_...
Biggin asked 18/10, 2019 at 8:42

8

Solved

I am getting an error in my kubernetes cluster while upgrading my install of kamus $ helm --debug upgrade --install soluto/kamus [debug] Created tunnel using local port: '64252' [debug] SERVER: &q...
Terr asked 27/3, 2019 at 0:25

3

Solved

I am installing a helm chart which has a ingress.yaml template. I get this error: Error: render error in "chartmuseum/templates/ingress.yaml": template: chartmuseum/templates/ingress.yam...
Excurved asked 13/8, 2019 at 10:6

7

Solved

I am looking for a way to rollback a helm release to its previous release without specifying the target release version as a number. Something like helm rollback <RELEASE> ~1 (like git reset...
Windshield asked 17/8, 2018 at 11:20

2

I want to override values between prod and dev deployments. The default values look like: apps: myapp: replicaCount: 2 containers: - name: foo env: MODE: "dev" I can override this ...
Lusitania asked 10/9, 2020 at 16:24

4

In a helm chart, we can define value as something like {{ Values.name }}, which will be replaced by the real value defined in values.yaml. But if the original value has the similar format such as {...
Scoggins asked 9/11, 2017 at 6:48

2

Solved

I would like to see the changes made to the helm chart compared to its previous release - running helm list i see there were xx revisions - any way to see differences ? I know about rollback helm r...
Anni asked 7/7, 2020 at 7:38

4

Solved

After upgrading Kubernetes to 1.25 helm upgrade --install ... fails with the following error: Error: UPGRADE FAILED: unable to recognize "": no matches for kind "HorizontalPodAutosca...
Aspa asked 15/6, 2023 at 16:32

2

I'm trying to do TCP/UDP port-forwarding with an ingress. Following the docs: https://kubernetes.github.io/ingress-nginx/user-guide/exposing-tcp-udp-services/ It says to set: --tcp-services-configm...

© 2022 - 2024 — McMap. All rights reserved.