6,369 questions
0
votes
0
answers
26
views
Flux CD does not seem to recognize environment variables injected by the Kubernetes deployment manifest
I have a simple Kubernetes app with a Helm Chart as follows.
deployment.yaml
env:
{{- toYaml .Values.env | nindent 12 }}
values.yaml
env:
- name: QUARKUS_HTTP_HOST
value: 0.0.0.0
- name: ...
-3
votes
0
answers
47
views
ubernetes cluster unreachable: invalid configuration: no configuration has been provided, try setting KUBERNETES_MASTER environment variable │ [closed]
with helm_release.argocd[0],
│ on argocd.tf line 1, in resource "helm_release" "argocd":
│ 1: resource "helm_release" "argocd" {
│
╵
╷
│ Error: Kubernetes ...
-2
votes
2
answers
160
views
helm create secret from parsing external ini file
I need to create secret from external INI file content by parsing the keys and values from the file without the section. For example, with the following secret file,
apiVersion: v1
kind: Secret
type: ...
Advice
0
votes
1
replies
57
views
Accessing terraform variables from helm configuration
I am using terraform and helm to deploy a container using a framework setup by another team.
I would like to access one if the terraform variables and put it in an environment variable for the service ...
-1
votes
1
answer
135
views
How to inject a complex YAML config (arrays & nested objects) into a Go application running on Kubernetes (using Helm)?
I have a Go application running on Kubernetes, deployed using Helm.
The application loads configuration using koanf, supporting both YAML files and environment variables.
I have a complex ...
Best practices
0
votes
4
replies
138
views
What is the recommended best practice to create a provider with Terraform with Terragrunt where the provider has a dependency on a resource
The Problem
I'm working on a project where we are using Terraform and we are migrating to Terraform with Terragrunt. We are using Terraform to configure an AKS cluster via the azurerm provider. Which ...
1
vote
1
answer
106
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
135
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 ...
0
votes
0
answers
86
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
62
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
73
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
116
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
151
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
94
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
145
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 ...