Charts: [stable/spinnaker] spinnaker deployment is failing on Kubernetes 1.16

Created on 30 Oct 2019  路  10Comments  路  Source: helm/charts

Describe the bug
Looks like the versions of minio and redis charts are old and those version do no support but the latest stable versions for both the charts support the changes of apiversion for deployments and statefulsets.

Version of Helm and Kubernetes:

root@ip-10-10-10-100#helm version
Client: &version.Version{SemVer:"v2.15.1", GitCommit:"cf1de4f8ba70eded310918a8af3a96bfe8e7683b", GitTreeState:"clean"}
Server: &version.Version{SemVer:"v2.15.1", GitCommit:"cf1de4f8ba70eded310918a8af3a96bfe8e7683b", GitTreeState:"clean"}
root@ip-10-10-10-100#kubectl version
Client Version: version.Info{Major:"1", Minor:"16", GitVersion:"v1.16.2", GitCommit:"c97fe5036ef3df2967d086711e6c0c405941e14b", GitTreeState:"clean", BuildDate:"2019-10-15T19:18:23Z", GoVersion:"go1.12.10", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"16", GitVersion:"v1.16.2", GitCommit:"c97fe5036ef3df2967d086711e6c0c405941e14b", GitTreeState:"clean", BuildDate:"2019-10-15T19:09:08Z", GoVersion:"go1.12.10", Compiler:"gc", Platform:"linux/amd64"}



md5-b267c9903f9d3f0b16fcfd8f8eb8fbf0



helm install --name spinnaker stable/spinnaker

Error: [unable to recognize "": no matches for kind "Deployment" in version "apps/v1beta2", unable to recognize "": no matches for kind "StatefulSet" in version "apps/v1beta2"]

What you expected to happen:
helm should get deploy a default setup of spinnaker

How to reproduce it (as minimally and precisely as possible):
run command helm install --name spinnaker stable/spinnaker on Kubernetes v1.16

Anything else we need to know:

lifecyclstale

Most helpful comment

reopen - as pr is still not merged

All 10 comments

you can solve this localy with the following
update requirements.yml with

dependencies:
- name: redis
  version: 9.4.3
  repository: https://kubernetes-charts.storage.googleapis.com/
  condition: redis.enabled
- name: minio
  version: 2.5.17
  repository: https://kubernetes-charts.storage.googleapis.com/
  condition: minio.enabled

run helm dependency update
than run the following in the spinnaker chart dir
helm install --name spinnaker --namespace spinnaker . --timeout 600

the dependecies should be updated upstream.

i got it working using these dependencies
```dependencies:

but then i also had to change the default version of halyard's image tag to 1.26.0 in the values file otherwise it wasn't able to deploy some of the spin-* deployments/statefulsets

halyard:
image:
tag: 1.26.0
```

i also needed to remove the jobs feature flags from the values.yaml

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Any further update will cause the issue/pull request to no longer be considered stale. Thank you for your contributions.

This issue is being automatically closed due to inactivity.

reopen - as pr is still not merged

@ramonskie any update on the PR?

i got no responses what so ever and as the pr is now closed i cant reopen it

ohh.. i saw that you have another PR open for it which looks like it is in the last stages for approval, i did tag the reviewers in that PR (let's hope to get some response on that soon).

Was this page helpful?
0 / 5 - 0 ratings