Describe the bug
A clear and concise description of what the bug is.
When install: Error: validation failed: unable to recognize "": no matches for kind "Deployment" in version "extensions/v1beta1"
Version of Helm and Kubernetes:
Kubernetes V1.16
Helm V2.14.3
Which chart:
stable/chartmuseum
What happened:
When install: Error: validation failed: unable to recognize "": no matches for kind "Deployment" in version "extensions/v1beta1"
What you expected to happen:
Install chartmuseum
How to reproduce it (as minimally and precisely as possible):
Just install "stable/chartmuseum" on Kubernetes 1.16
Anything else we need to know:
No
Same here, clean install of minikube to run it on.
https://kubernetes.io/blog/2019/07/18/api-deprecations-in-1-16/
Looks like extensions/v1beta1 got deprecated, and there is a missing selector on the Deployment chart.
Changes needed:
From apiVerson: extensions/v1beta1
To: apiVersion: apps/v1
Describe the bug
A clear and concise description of what the bug is.
When install: Error: validation failed: unable to recognize "": no matches for kind "Deployment" in version "extensions/v1beta1"Version of Helm and Kubernetes:
Kubernetes V1.16
Helm V2.14.3Which chart:
stable/chartmuseumWhat happened:
When install: Error: validation failed: unable to recognize "": no matches for kind "Deployment" in version "extensions/v1beta1"What you expected to happen:
Install chartmuseumHow to reproduce it (as minimally and precisely as possible):
Just install "stable/chartmuseum" on Kubernetes 1.16Anything else we need to know:
No
there is really something we need to know. I also faced this issue.
Same here, clean install of minikube to run it on.
https://kubernetes.io/blog/2019/07/18/api-deprecations-in-1-16/
Looks like extensions/v1beta1 got deprecated, and there is a missing selector on the Deployment chart.
Changes needed:
From
apiVerson: extensions/v1beta1
To:apiVersion: apps/v1
This works but you need to first install tiller using the content of the file below instead of helm init
@rafambbr This should have been fixed with #17334. Just run helm repo update and use the 2.4.0 version of the chart.
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.
Most helpful comment
Same here, clean install of minikube to run it on.
https://kubernetes.io/blog/2019/07/18/api-deprecations-in-1-16/
Looks like extensions/v1beta1 got deprecated, and there is a missing selector on the Deployment chart.
Changes needed:
From
apiVerson: extensions/v1beta1To:
apiVersion: apps/v1