Questions tagged [helm-tls]

11 questions
25
votes
3 answers

How to use imagePullSecrets: [] in Helm 3

Helm 3 imagePullSecrets: [] secrete gives an error. Error: unable to build Kubernetes objects from release manifest: error validating "": error validating data: ValidationError(Deployment.spec.template.spec.imagePullSecrets[0]): invalid type for…
Rajesh Narayanan
  • 281
  • 1
  • 3
  • 6
2
votes
1 answer

helm chart error: could not find expected ':'

I am getting the below error while executing the helm chart. Error: YAML parse error on helmcharts/templates/route.yaml: error converting YAML to JSON: yaml: line 25: could not find expected ':' The chart works fine if I remove the multiline string…
2
votes
0 answers

Helm - Error: x509: cannot validate certificate for 127.0.0.1 because it doesn't contain any IP SANs

I am getting below error when I install helm with TLS. I applied the given solution here: https://helm.sh/docs/tiller_ssl/#troubleshooting but, still it's not working. Error: x509: cannot validate certificate for 127.0.0.1 because it doesn't…
RNK
  • 5,582
  • 11
  • 65
  • 133
1
vote
0 answers

Helm chart is fetchable but not searchable

I have helm charts for a project my-project uploaded to a repo myrepo. Using helm v3.5.3, if I run helm repo update helm fetch myrepo/my-project --version 0.0.1 It downloads the my-project-0.0.1.tgz file I had pushed to myrepo. But when I run helm…
Mike S
  • 1,451
  • 1
  • 16
  • 34
1
vote
1 answer

Helm upgrade command fails for no apparent reason

I want to perform a helm upgrade on a GKE k8s cluster. I am executing the following command helm upgrade --force --tls --install --set master.installPlugins=[u'kubernetes:1.21.2', u'workflow-job:2.36', u'workflow-aggregator:2.6',…
pkaramol
  • 16,451
  • 43
  • 149
  • 324
0
votes
0 answers

IBM MQ Kubernetes Helm kdb

I have a Kubernetes IBM MQ deployment using ibm-mqadvanced-server-dev helm chart following this link. Suppose I have a kdb in the Kubernetes's ibm pod. Now I want to add client cert to the key database. But I don't want to access the bash of the…
Toami
  • 3
  • 4
0
votes
1 answer

Issue with Helm client certificate

Hi I have IBM cloud private cluster up and running. I try login with cloudctl login https://icp-console.example.co.id Everything is fine, the last line show me: Configuring helm: /root/.helm OK But when i try to inspect the certificate generated in…
0
votes
2 answers

How to install helm in travis pipeline

I am doing this to install helm in my travis job curl https://baltocdn.com/helm/signing.asc | sudo apt-key add - sudo apt-get install apt-transport-https --yes echo "deb https://baltocdn.com/helm/stable/debian/ all main" | sudo tee…
0
votes
1 answer

Helm always reports a 403 error when adding minio repo

I have run the latest version of minio with Docker and can access it normally by browser. Then I installed the MC client and tested Minio with MC, and everything worked fine. but when I use helm add the minio repo. I get a 403…
Esc
  • 521
  • 13
  • 30
0
votes
1 answer

Is it possile to create yaml object from helm from file

I want to iterate over the Yaml list which is defined in the file, and use it in Job. For example i have test.yaml list: - first element - second element In _helpers.tpl i can define something like {{- define "mychart.list"…
user2701108
  • 219
  • 1
  • 2
  • 10
0
votes
1 answer

Substitute password in helm values file prometheus blackbox exporter http target

I'm trying to do an aliveness-check to rabbitmq management console via http api. I have the target in the helm values file under endpoints; I'm using http probe. endpoints: - module: rabbit_alive_check port: http scheme: http …