Questions tagged [kubernetes-helm]

45 questions
19
votes
4 answers

Use one Helm chart for ALL microservices?

This is a follow up question to my post Parameterized Kubernetes manifest files?. I understand more about Helm now, after lots of reading, including the Learn Helm book (which I recommend). I still have this understanding that each microservice will…
Chris F
  • 477
  • 1
  • 4
  • 17
6
votes
1 answer

Can I use Bitnami Helm Chart to deploy Redis Stack?

Background Currently, I am deploying a redis container using the [redislabs/redismod] (https://hub.docker.com/r/redislabs/redismod) image in the same pod as the application (nodejs). We are utilizing the RediSearch and RedisJSON modules to access…
virenstack
  • 61
  • 2
5
votes
1 answer

How to add timeout to a helm chart?

I have a helm chart which pulls a lot of images from various registries and deploys a lot of pods. It runs a lot of k8s jobs before getting the pods up. Overall, helm install command takes huge time, so usually my helm install will also have…
Madhusoodan
  • 153
  • 1
  • 1
  • 4
4
votes
2 answers

How to allow a non-root user to write to a mounted EFS in EKS

I am having trouble configuring a statically provisioned EFS such that multiple pods, which run as a non-root user, can read and write the file system. I am using the AWS EFS CSI Driver. My version info is as follows: Client Version:…
R. Arctor
  • 151
  • 1
  • 1
  • 6
4
votes
2 answers

Helm charts: Can't access defined named templates in subcharts

I am having trouble accessing some named templates defined in the main chart from subcharts. As it is in the documentation that every defined named template is global, I'd like to get help on what I am doing wrong here. Below is the defined named…
William
  • 41
  • 1
  • 1
  • 2
3
votes
1 answer

How to use same terraform code for both kubernetes clusters Oracle (OKE) and AWS (EKS)?

I want to use same terraform code for both kubernetes clusters oracle (OKE) and AWS (EKS) and install the argocd helm chart on it, I given my code below for your reference, now the problem I am facing now, if I set k8s_cluster_type to "eks", so…
San
  • 31
  • 1
3
votes
1 answer

Helm - UPGRADE FAILED: cannot patch "..." with kind Deployment: Deployment.apps

I was running the older 2.16.0 version of ChartMuseum Helm Chart. I am trying to update it to use newer 3.1.0. When I try to upgrade using helm upgrade -n , the upgrade fails with the following error: Error: UPGRADE…
ray an
  • 135
  • 1
  • 1
  • 6
2
votes
1 answer

Migrating from a Helm chart release to an ArgoCD Application

The process to create an ArgoCD application from an existing helm chart release without downtime is well documented e.g. here: Just create an application, you can start with auto-sync turned off to see if it picks up on resources etc. The only…
thiagowfx
  • 145
  • 1
  • 6
2
votes
0 answers

Upload a realm to bitnami/keycloak on helm install

I'm trying to upload a realm to my keycloak deployment via helm using the bitnami/keycloak chart. Here's my values.yaml override file that I'm just using to test: keycloakConfigCli: enabled: true configuration: realm1.yaml: | realm:…
j7skov
  • 121
  • 3
2
votes
0 answers

Recommended way to uninstall Istio?

I installed Istio with istioctl and our cluster has multiple Istio control planes. So as part of upgrading to a new Istio version, I want to delete the older version. What is the recommended approach? istioctl x uninstall -f manifest helm uninstall…
Rocky Hai
  • 287
  • 1
  • 7
2
votes
1 answer

Run docker-in-docker container alongside Jenkins agent

I'm looking for a way to run a Docker-in-Docker (dind) container alongside my Jenkins agent nodes using the Jenkins Kubernetes Plugin configured by Jenkins Configuration-as-Code (JCasC). I'm currently running a plain agent node, that has all my…
Max N.
  • 413
  • 6
  • 13
2
votes
2 answers

How to structure/combine the installation of helm + deployment files

I have a Wordpress Helm chart, and a seperate ingress definition to go along with it, which I specified in a wordpress-deployment.yaml file. My workflow for installing would be: Install the helm chart using a wordpress-values.yaml file for…
Sander
  • 21
  • 2
2
votes
2 answers

Using helm to manage an "environment?"

I'm new to Kubernetes, and hence helm, so I've been reading a lot, and teaching myself by setting up a cluster, services, deployments, and pods. In my case I use AWS EKS. I now at least understand each piece from a technical point of view. But now I…
Chris F
  • 477
  • 1
  • 4
  • 17
1
vote
1 answer

helm trouble creating pod using bitnami/mongodb chart

Here is my My Chart.yaml file: apiVersion: v2 name: pixer-microservice-infra description: A Helm chart for Kubernetes type: application version: 0.1.0 appVersion: "1.16.0" dependencies: - name: mongodb version: ~14.3.1 repository:…
harrydang
  • 11
  • 1
1
vote
3 answers

helm check if key exist and then evaluate if it's value is true on single line condition

"helm check if key exist and then evaluate if it's value is true on single line condition" In Helm version 3.10 will the following condition below work as intended or I can achieve it in some other way? {{- if and (hasKey .Values.enableJsConfigMap)…
1
2 3