kubernetes-helm Questions
2
Solved
I have following dependency in requirement.yaml file:
dependencies:
- name: redis
version: 0.1.2
repository: http://helm-charts.repo:8800/
requirements.lock:
dependencies:
- name: redis
rep...
Ratline asked 30/1, 2019 at 15:31
1
Solved
Context:
I'm trying to implement a helm chart to deploy a python application. This python application has multiple web-servers on the same docker image. So with the same image I can run the web-sev...
Beater asked 27/1 at 18:42
6
Yesterday, I stopped a Helm upgrade when it was running on a release pipeline in Azure DevOps and the followings deployments failed.
I tried to see the chart that has failed with the aim of delete ...
Transcendentalistic asked 24/3, 2022 at 9:23
3
Solved
This seems like a really simple question but I couldn't find a straight answer to it.
My question is, are you allowed children directories within the templates directory of a Helm chart? i.e, somet...
Gemmell asked 18/10, 2023 at 9:25
2
Solved
Is there a way to obtain the manifest file from a helm chart? The manifest file needs to be able to run just like a helm install. This will need to have all values populated and aggregated into one...
Orellana asked 7/10, 2020 at 15:32
2
Solved
I installed the default helm chart of Argo Workflow with only configuring init.serviceAccount as argo-sa, which I have created. (ServiceAccount with enough authorization)
However, running every Wor...
Hinge asked 20/11, 2020 at 5:51
3
Solved
I am trying to create a Helm Chart with the following resources:
Secret
ConfigMap
Service
Job
Deployment
These are also in the order that I would like them to be deployed. I have put a hook in ...
Pogue asked 21/8, 2018 at 22:45
2
Solved
I see patchesStrategicMergein my kustomization.yaml file, but not getting it clearly, like whats its need or why we require that?
kustomization.yaml
resources:
- a.yaml
patchesStrategicMerge:
- b....
Sato asked 17/2, 2022 at 20:47
10
I want to generate a password in a Helm template, this is easy to do using the randAlphaNum function. However the password will be changed when the release is upgraded. Is there a way to check if a...
Unworldly asked 16/5, 2019 at 13:44
9
Solved
I'm using Kubernetes and I recently updated my admin certs used in the kubeconfig. However, after I did that, all the helm commands fail thus:
Error: Get https://cluster.mysite.com/api/v1/namespac...
Brighton asked 5/1, 2018 at 18:54
4
Is it possible to use Helm to deploy Argo workflows? I get an error like below when I do a helm install
Error: UPGRADE FAILED: parse error at
(workflows/templates/my_dag.yaml:47): function "w...
Newsmonger asked 12/11, 2020 at 10:37
3
Using Helm, I was under the impression default would be the fallback if a variable is not defined. However, it doesn't appear Helm can get to values in sub-object hashes:
type: {{ default "NodePo...
Granulite asked 3/1, 2020 at 0:38
3
Solved
argoproj/argocd:v1.8.7
Have a helm chart (1 with ingress, 1 with deployment/service/cm).
It has sync policies of automated (prune and self-heal). When trying to delete them from the argocd dashboar...
Knickers asked 19/5, 2021 at 5:27
2
Solved
I'm pretty new to K8s.
I'm trying to make my app visible to the outside world. I have deployed this Nginx Ingress Controller with my apps, using Helm and helmfile which has given me an extern...
Declinature asked 13/5, 2022 at 12:46
3
I have been asked to modify a Helm template to accommodate a few changes to check if a value is empty or not as in the code snippet below. I need to check $var.alias inside the printf in the code s...
Hardecanute asked 26/5, 2021 at 14:24
2
Solved
For example, per the helm chart documentation for Drupal, the default value for accessModes is ["ReadWriteOnce"] which translates to the following in the YAML:
...
accessModes
- ReadWrite...
Sheikh asked 5/4, 2022 at 14:56
5
Use helm install can set value when install a chart like:
helm install --set favoriteDrink=slurm ./mychart
Now want to set value like:
helm install --set aws.subnets="subnet-123456, subnet-65...
Glioma asked 18/1, 2018 at 7:57
4
Solved
A pattern I've often seen in Helm charts (e.g.) is to set a boolean value to default to true unless some overriding value is provided:
feature_enabled_in_k8s_resource: {{ default true .Values.foo_f...
Antenna asked 30/10, 2022 at 22:3
3
The default Helm Chart for PostgreSQL (i.e. stable/postgresql) defines an initdbScripts parameter that allows initialization scripts to be run. However, I can't seem to get the format correct on ho...
Delude asked 3/4, 2019 at 16:26
2
I have created Kubernetes job and job got created, but it is failing on deployment to the Kubernetes cluster. When I try to redeploy it using Helm the job is not redeploying (deleting old job and r...
Pacien asked 13/10, 2022 at 10:56
4
Solved
I have this error when the previous upgrade failed.
I cannot upgrade without deleting manually all my pods and services.
Error: UPGRADE FAILED: rendered manifests contain a new resource that alre...
Selfpronouncing asked 21/4, 2020 at 17:10
5
Solved
Recently, prometheus-operator has been promoted to stable helm chart (https://github.com/helm/charts/tree/master/stable/prometheus-operator).
I'd like to understand how to add a custom applicatio...
Etiquette asked 25/10, 2018 at 13:52
2
Solved
Running helm lint I get:
I get: [INFO] Chart.yaml: icon is recommended
Where do I set the icon?
Peterson asked 27/7, 2018 at 12:28
4
I want to deploy helm charts, which are stored in a repository in AWS ECR, in the kubernetes cluster using ArgoCD. But I am getting a 401 unauthorized issue. I have pasted the entire issue below
Un...
Byelaw asked 29/3, 2021 at 9:39
6
I have a generic SSL certificate *.domain.com
I want configure a HTTPS for a 4 level domain (my4.level.domain.com)
I read in this discussion, that i need to use --default-ssl-certificate
But i don...
Rangoon asked 21/11, 2019 at 10:23
© 2022 - 2024 — McMap. All rights reserved.