6,391 questions
-3
votes
0
answers
29
views
Communication between different Namespace in Kubernetes cluster [closed]
So I used helm chart in order to install KEDA to my kubernetes cluster. However, KEDA is installed in its own seperate Namespace (called "keda"). Now i have a bunch of other namespaces all ...
1
vote
1
answer
44
views
Error reading file content in helm template
Hi I am trying to read below file content in helm template but getting below.
Folder:
charts
--Example
----pipelines
------a.conf
------b.conf
------c.conf
----templates
------example.yaml
{{ ....
1
vote
1
answer
34
views
in jenkins how create a pod template with the "Raw YAML for the Pod" filled througth manifest, with helm
in jenkins I want to create a pod template with the "Raw YAML for the Pod" filled througth manifest, with helm at the moment when Jenkins is created
I have a jenkins-controller.yaml where ...
-3
votes
0
answers
45
views
How can i configure branding for OX App Suite [closed]
How to brand OX App Suite v8? i have added below in my production.yml then i ran python3 render.py -f production.yml -r ./mail-deploy but all of these commands did not apply the login nothing changed. ...
0
votes
0
answers
51
views
ArgoCD applicationset - path and .argocd-source.yaml issues
I have a test setup where I have a base folder structure. This is working and I create the application for staging with the values and the configmap from the staging folder.
However, I also need to be ...
0
votes
0
answers
43
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
62
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
1
answer
98
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
1
answer
79
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
59
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
1
answer
89
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
56
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
23
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
140
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
55
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 ...