Questions tagged [helm]

Package manager for kubernetes

Package manager for kubernetes

https://helm.sh/

87 questions
1
vote
0 answers

How to enable ipv6 for ingress-controller services when installing using Helm nginx-ingress chart?

I have a baremetal K8 cluster setup using Kubespray (Calico as CNI) and have dual stack enabled. I can see that all the pods that get deployed get both IPv4 and IPv6 addresses but when I try to install nginx-ingress controller using nginx helm chart…
mickey9
  • 11
  • 2
1
vote
2 answers

GitLab Runner failing to register after migration to new cluster

I have GitLab installed in Kubernetes with their Helm chart. I migrated my old Gitlab deployment from one cluster to another with the following steps: Scale down all pods in old cluster Apply values.yml with helm to new cluster (to create…
cclloyd
  • 593
  • 2
  • 14
  • 29
1
vote
0 answers

AKS Certificate Manager upgrade w/ namespace change - Wrong cert-manager hook ID

Recently, we changed uninstalled our cert manager and reinstalled it into a new namespace. There were no issues with the uninstall / reinstall of the cert manager. When we tried to create a new certificate issuer, the cert manager is unable to…
Brennan Mann
  • 133
  • 1
  • 3
1
vote
1 answer

CreateContainerError: context deadline exceeded

For a project, I must use big containers (500Mb to 60Gb). I don't have a precise measurement but when I run containers larger than 3-5Gb with gitlab-runner, I get an error in rancher: CreateContainerError: context deadline exceeded Our kubernetes…
Oyabi
  • 133
  • 2
  • 13
1
vote
1 answer

Deploy mysql release using helm

Hi I'm new to k8s and helm ecosystem. I constructed my own k8s cluster using kubespray with EC2 (I can use EKS but for the purpose of practice) and the next step is using helm. I'm trying to deploy mysql chart to my k8s cluster. My env k8s cluster…
bmy4415
  • 25
  • 2
1
vote
1 answer

Hosting docker images on multiple registries but reference them the same way e.g. in a k8s deployment

Since I started with docker there is one question that follows me and I could not get a good answer so far. Let's assume I have a .yaml file specifying a k8s deployment. We are building our docker images on a local build server and they are getting…
1
vote
0 answers

How to run helm from a docker image

UPDATE This is slightly different than the posted comment asking if the linked question resolves my issue. The problem is that helm in the container is trying to connect to localhost which is not correct. It should be reading my information from…
icfantv
  • 111
  • 4
1
vote
1 answer

How can I set up Kubernetes to forward a set of externally-facing ports on the master node to a service internal to the cluster?

I have a Kubernetes cluster on which I'm running a ZeroMQ broker internally. I have set up a service so that this broker can be found by pods on the cluster, using the following Helm template: #values.yaml zmqServiceType: type: ClusterIP …
stix
  • 131
  • 4
1
vote
0 answers

How to generate or change HostPath in kubernetes config for each developer?

In Kubernetes, you can create a volume to mount into a with hostpath. This hostPath should provide a directory on the node running the pod. It's useful when you are working in development environments using minikube, we use this hostPath to sync…
fermin
  • 113
  • 4
1
vote
1 answer

How can i delete a helm installed package?

I'm using Helm 3 to install kubernetes packages. Now I need to remove/clean up what was installed, I tried with unintall but it seems it’s looking for a release (not sure what it does mean) not a package: $ helm install prometheus…
bachr
  • 163
  • 1
  • 5
  • 11
1
vote
0 answers

mysql helm aks keeps crashing

I tried to install mysql using helm chart helm install mysql --set mysqlRootPassword=medone,mysqlUser=mysql,mysqlPassword=medone,mysqlDatabase=profil,persistence.existingClaim=mysql-pv-claim stable/mysql when i tried to connect to the pod it…
Medone
  • 11
  • 1
1
vote
1 answer

terraform with helm provider ignore image changes

I am using terraform with helm provider to deploy a helm chart, everything works with terraform, the problem is when the application is already running and I changed the image tag from the gitlab pipeline. So the next time that I run terraform the…
c4f4t0r
  • 5,301
  • 3
  • 31
  • 42
0
votes
1 answer

Cannot access Minio After Helm Installation

I tried installing Minio via the helm chart. You can see my values.yml below. I set the accessKey and secretKey myself. But after I bring up the deployment, I cannot log in. When I go to the webpage and try to, it says The access key ID you…
cclloyd
  • 593
  • 2
  • 14
  • 29
0
votes
0 answers

Restore SQL dump in a running Kubernetes deployment

TL;DR: I imagine that there is a way to temporarily disable access to a pod / service so maintenance can be done. In this case: Block access to a database so a dump can be restored. $ kubectl exec podwith-postgresql-59b77ffb7d-fc4xj dropdb…
Mofef
  • 21
  • 3
0
votes
2 answers

change name of the pods via helm

I am trying to run mongodb via helm. I want to run 1 primary replica and 2 secondary replicas. I would like to setup the following naming for the 3 mongodb pods once they are created: mongo-0 mongo-1 mongo-2 And lets say that mongo-0 would be…
Palino1611
  • 11
  • 3