6,400 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
110 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
111 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 ...