I'm trying to recover my CI environment after having been forced to redeploy my Kubernetets cluster. I've done this in the past a few times without errors. Until today.
[root@nas gocd]# helm search repo -l stable/gocd | grep 19.10.0
stable/gocd 1.19.3 19.10.0 GoCD is an open-source continuous delivery serv...
stable/gocd 1.19.1 19.10.0 GoCD is an open-source continuous delivery serv...
stable/gocd 1.19.0 19.10.0 GoCD is an open-source continuous delivery serv...
I tried to do what I usually do:
[root@nas gocd]# helm install gocd-app stable/gocd --version 1.19.3 --namespace gocd --set server.persistence.storageClass=gocd-app-server-data
Error: template: deprecation/templates/NOTES.txt:10:3: executing "deprecation/templates/NOTES.txt" at <fail "\n*******************************************************\n* This chart location is deprecated. Learn more here: *\n*
https://helm.sh/blog/charts-repo-deprecation/ *\n*******************************************************\n">: error calling fail:
*******************************************************
* This chart location is deprecated. Learn more here: *
*******************************************************
This exact command has worked for me in the past multiple times, because I have automated my installation of my server. But now I get seem to hit this deprecation warning, but no hints as to how to solve it.
I searched gocd's github and this mailinglist for "helm" / "deprecated" but haven't found anyone with this same issue. Am I missing something obvious?
Any pointers to a way to solve this would be great
Kind regards,
Ray