6,399 questions
-2
votes
0
answers
40
views
VS Code: Is the yaml red hat plugin not working correctly with helm? [closed]
I'm using VS Code to work with Kubernetes and Helm YAML files. I have the Red Hat plugin installed. Everything was fine until today. I always had simple files, but today I opened a file with if/else/...
0
votes
0
answers
59
views
How can I remove Helm chart annotations items [closed]
I am deploying a Helm chart (Seafile) using
helm template seafile ./seafile-chart -f values.yaml > build/seafile.yaml
kubectl kustomize build/rendered | kubectl apply -f -
Now the issue is that ...
0
votes
1
answer
47
views
Zeppelin Helm installation behind a client proxy [closed]
I have installed Zeppelin with Helm, using the duyet/zeppelin chart on a client's Microk8s cluster and this client has a proxy configured.
When I try to run a notebook that installs packages,
%python
#...
0
votes
0
answers
39
views
java.net.UnknownHostException in a Helm Project
What are the steps I should take to solve the error:
17-11-2025 14:00:00.002 [org.test.ingest.io] ERROR o.s.s.s.TaskUtils$LoggingErrorHandler.handleError - Unexpected error occurred in scheduled task
...
0
votes
1
answer
60
views
Failed to bind properties under 'server.address' with helm
I want to deploy my app on kubernetes with Helm
I have a Ingest Service running with spring boot that is made of two parts
Fiprocessor
Io
Both of this part use the same deployment file and the same ...
0
votes
0
answers
74
views
How to overwrite an env value with Helm
I want to deploy an app on Kubernetes with Helm. This app is composed of multiple parts, 2 of them are a Spring backend and a Mongo database.
I want to deploy theme in 2 pods and have them talk with ...
0
votes
0
answers
63
views
Tilt Port Forwarding to specific pod in Kubernetes Resource
We use Tilt to manage our local development Kube clusters. I've integrated the langfuse helm chart in the Tiltfile, which functions properly, however I'm having trouble forwarding a port to the web ...
0
votes
1
answer
57
views
Helm subchart uses baseline values.yaml instead of merged values.yaml + values-dev.yaml when deployed via parent chart
Here is my helm chart structure:
app/
├── Chart.yaml
├── values.yaml
├── values-dev.yaml
└── templates/
app-test/
├── Chart.yaml
├── values.yaml
├── values-dev.yaml
└── charts/
...
0
votes
0
answers
61
views
Helm doesn't remove initContainers from Deployment
I've created deployment template using helm (v3.14.3) with support for setting initContainers. Last time I realized one of initContainers removed from values.yaml is still present in cluster. I tried ...
1
vote
1
answer
52
views
Check RBAC policy in Helm chart
I have the following check in my Helm chart to see if a rbac policy has already been applied:
{{- if not (lookup "rbac.authorization.k8s.io/v1" "ClusterRole" "" "&...
0
votes
0
answers
19
views
Migration from Native Helm Release to FluxCD Helm Release
I need to migrate the currently deployed Native Helm Release to FluxCD HelmRelease.
How can I achieve this?
-3
votes
2
answers
111
views
Helm push to JFrog Artifactory fails: invalid repository
I have a HelmOCI repository set on my JFrog Artifactory.
I am using the following command to push my chart to the repository:
helm push my-chart-1.0.0-oci.tgz oci://my-jfrog-artifactory/my-oci-helm --...
0
votes
0
answers
42
views
Can I use {{ .Release.Name }} to specify .Values in a Helm library chart?
I haven't found any specific alternatives to this; right now I'm in an environment that requires me to do some slightly odd things with my Helm charts. Currently, the way I have it setup is that I ...
2
votes
1
answer
112
views
Can't iterate through lists in scalar blocks
I have a values.yaml file as follows:
myTest: |-
- name: app1
url: https://example.com/app1
- name: app2
url: https://example.com/app2
Now I want to deploy a Helm chart which has a ...
0
votes
0
answers
121
views
How to properly setup argocd behind a proxy
I have been trying to setup Argocd with EKS, helm chart and AWS ALB behind a proxy( nginx ingress) and it not working at all. After deployment to eks cluster, if i do port-forawarding, the UI works ...
1
vote
0
answers
65
views
How to let Gitlab/Langchain continue finding file?
I want to use Langchain to automatically update a helm chart via Gitlab-Python API. I realise it might work without langchain/llm with a more deterministic approach. However, i use it for testing ...
0
votes
0
answers
71
views
Helm Chart: conflict over non-global values with subchart
I encountered a weird situation in which a non-global configuration value from my own chart conflicts with one in the mysql subchart I reference. More specifically, the .Values.metrics.serviceMonitor ...
1
vote
1
answer
89
views
How to access keys with a period in the name?
I'm working on a Helm deployment of an app that I've written. I thought a neat way of managing the configuration was to specify it in values.yaml in the following format:
configFiles:
file.yaml:
...
0
votes
1
answer
41
views
Resolving templates in value.yml [closed]
I have a Helm values.yaml file which contains the following
environment: production
app: my-app
namespace: my-app
#build
build:
imageStream: '{{ .Values.app }}-{{ .Values.environment }}'
#deploy
...
0
votes
0
answers
32
views
Helm create multi line param from object value
I am trying to pass values from the object:
values.yaml
objects:
- name: kv-secret-name-1
type: secret
- name: kv-secret-name-2
type: secret
and create the 'SecretProviderClass` resource.
...
0
votes
1
answer
53
views
Evaluate expression in Helm deployment file from values file
I have the following code block in my Helm chart (deployment.yml)
{{`{{- with secret "my/path/kv/key" }}
{{ .Data.data.key | indent 10 }}
{{- end }} `}}
I would like to replace the second ...
0
votes
1
answer
58
views
Why k8s resource doesn't increase apiVersion?
I have a CustomResourceDefinition:
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
labels:
app.kubernetes.io/name: applicationsets.argoproj.io
app.kubernetes.io/...
0
votes
0
answers
67
views
Non existing field in persistentVolumeClaim helm template
I was reviewing a Prometheus Helm chart and noticed that the following prometheus/templates/alertmanager/pvc.yaml template includes the volumeBindingMode field:
apiVersion: v1
kind: ...
0
votes
1
answer
52
views
Trying to pass Kafka message bodies as environment variables through an Argo Sensor that triggers jobs
I am attempting to create a Kubernetes cluster that uses a Kafka eventsource that has an argo sensor trigger a job. I am trying to get the content event body set as an environment variable in my job ...
-3
votes
1
answer
63
views
cp Command Fails to Copy JAR File to Target Folder [closed]
I am trying to copy a file (jar file) so that I can run the jar (java -jar) in my pod. But the copy command just doesn't work. The pod logs don't throw any error also.
My deployment.yaml looks like (...
0
votes
1
answer
72
views
Helm Templates dockerconfigjson secret - Cannot unmarshal string into Go struct field Secret.data
I have defined a helm template like the one below to get a predefined set of private registries in values and create a dockerconfigjson type secret in the namespace if needed by copying the templates ...
1
vote
1
answer
31
views
Set helm chart array value leveraging --set command with unquoted string value
helm gurus I'm seeking an appropriate helm set option than can synthesize the equivalent of the values.yaml seen below - in particular the array entry unquoted string.
$ cat values.yaml
sftp:
...
0
votes
0
answers
207
views
How can I use variables in (GitLab Runner Helm Chart) Value File (to avoid repetition in another deployment)?
Disclaimer: I am fairly new to Kubernetes and Helm, but not to Docker.
TL;DR: I want to move GitLab Runner Helm Chart configuration values out of the original values.yaml in a home-made configuration ...
0
votes
0
answers
15
views
"command not found: helm-run" while evaluating API based custom LLM using Stanford HELM framework
I am trying to run my custom LLM model deployed on a server and accessible through api_url, key, model name. I did clone the Helm repo and did all changes like adding custom model in model_deployment ...
0
votes
1
answer
76
views
How to persist ConfigMap values on deployment upgrade?
I'm using ConfigMap to switch on/off some functionality of the application in the pod. I have mounted it in the deployment like that:
volumes:
- name: {{ .Chart.Name }}-config-volume
projected:
...
0
votes
0
answers
127
views
Argo CD not able to pull helm library charts in private OCI repo
Pretty new to ArgoCD.
I am trying to use ApplicationSet
iVersion: argoproj.io/v1alpha1
kind: ApplicationSet
metadata:
name: xxx-pull-preview-test
spec:
generators:
- pullRequest:
...
-1
votes
3
answers
254
views
Apache Airflow: Unable to get remote logging to Azure Blob storage to work
I have airflow (2.8.4) deployed in kubernetes using helm and I'm trying to setup remote logging to azure blob storage. I am using an Azure shared key for authentication. When trying to retrieve/write ...
0
votes
0
answers
63
views
Two ingress controller have issues and not able to split traffic in Kubernetes
I have two ingress setup on my Kubernetes cluster one for internal traffic called nginx-ingress and it has default setting and with values of
root@k8s-master-1:~/Ingress# cat values.yaml
controller:
...
0
votes
1
answer
128
views
helm chart to manage crds using sub-charts
From the Helm documentation know that the CRDS to be deployed recommended to go under top level crd folder in helm chart.
app-charts
|_ charts
|_ app1
|_ charts
|_ ...
1
vote
0
answers
99
views
How to get nested dictionary values in Helm template?
I am creating helm template and try refrencing 2 variable both have dynamic value.
template.yaml
{{- define "lib.keys" }}
{{- $top := .top }}
{{ range $data_access := $top.Values....
0
votes
1
answer
183
views
Strimzi does not parse secret when deploying Kafka Connector with Helm
I am struggling with io.strimzi.kafka.KubernetesSecretConfigProvider when deploying connector to my Kafka Connect service in k8s. Pod log returns error when trying to create connector:
ERROR Uncaught ...
0
votes
1
answer
82
views
deploying "...": building helm dependencies: exit status 1
I have added following part to my skaffold.yaml file to deploy gitlab-ce , kafka and penpot on minikube.
deploy:
helm:
releases:
- name: gitlab
chartPath: gitlab/gitlab
...
0
votes
0
answers
22
views
Use system environment variable in helm
I am trying to deploy an application using Helm, and I would like to be able to use a system environment variable in my helm chart.
I have a server with the following environment variable set:
server1 ...
1
vote
0
answers
174
views
Istio sidecar not injected despite correct namespace label and autoInject settings
I'm setting up a service mesh with Istio (v1.21.0) on Kubernetes, deployed via FluxCD using a HelmRelease. The istiod component is running correctly in the istio-system namespace and the installation ...
0
votes
1
answer
161
views
How (if possible) to create a k8s object in a helm chart only if not exists
Problem I'm trying to solve:
I'm using 1password as a secret vault and can create secrets that track those vault items just fine. I create an object OnePasswordItem using flux, which creates a secret ...
0
votes
1
answer
46
views
Adding PEM file to Kubernetes Airflow
I'm trying to add a PEM file to the config for the latest airflow HELM chart. I've added the certificate as a configMap, I have added the following code to the HELM chart for the webserver. It has ...
0
votes
0
answers
54
views
gitlab-ce deployment on minikube using Helm: 422: The change you requested was rejected
I tried to deploy gitlab-ce on minikube running on my local machine using Helm and it seemed to be successful but when I try to log-in using root username, I see a page with following message:
422: ...
1
vote
1
answer
68
views
Testing Helm hook with Helm unittest
YAML to be tested
metadata:
annotations:
"helm.sh/hook": pre-upgrade
Unittest
- it: annotations validation
asserts:
- equal:
path: metadata.annotations."helm....
0
votes
0
answers
26
views
fluxcd v2 analog to valuesFrom chartFileRef
What is the analog of Flux v1 HelmRelease expression bellow for flux v2? Can same custom.yaml be used for both flux v1 and flux v2?
valuesFrom:
- chartFileRef:
path: values/custom.yaml
0
votes
2
answers
162
views
Helm-chart template convert to uppercase
Is there a way to use the same _helper.tpl function and convert in to upper/lower whithin the helm-chart yaml files?
_helper.tpl:
{{- define "hostnameparts.name" -}}
{{$hostnameparts := &...
0
votes
0
answers
33
views
Helm grafana plugin installation - no web access
I am trying to install infinity plugin via a gitlab package registry however I am unable to make it work. Does anyone know the correct yaml syntax to do something like this?
env:
...
0
votes
1
answer
83
views
Helm template how to include dynamic template
I have the following in my values
test:
- a
- b
- c
In my template, I have the following:
{{- range $.Values.test }}
...
someValue: {{ include "staticString" $ }}
...
{{- end }}
I ...
1
vote
1
answer
254
views
How to deploy a local image on K3D without pushing to a registry and upgrade Helm deployments locally?
I have two questions regarding deploying a local Kubernetes cluster using K3D and Helm.
I have successfully built a local registry and cluster on K3D using the commands k3d registry create registry....
0
votes
1
answer
82
views
Assign both backend- and edge-security-policy to a ingress
We use a Google Cloud CDN.
How can we assign both backend- and edge-security-policy to that CDN via helm?
It can be done via gcp-web-console: Assign the same Backend-Service as target to both Cloud ...
1
vote
2
answers
431
views
Java options within Kubernetes container
I am working with Java application and I’m going to deploy it within container.
I have prepared Dockerfile with
ENTRYPOINT ["java", "-jar", "java_j.jar"]
in my Java ...