charts
charts copied to clipboard
helm install pulsar-storage-provisioner streamnative/local-storage-provisioner error
[root@daspdev1 helm]# helm install local-storage-provisioner streamnative/local-storage-provisioner \
--set namespace=local-storage -n local-storage
Error: unable to build kubernetes objects from release manifest: unable to recognize "": no matches for kind "DaemonSet" in version "extensions/v1beta1"
I think the "extensions/v1beta1" is deprecated in Kubernetes API. Assuming, this chart should be updated to accept new release. (If I'm right ).
I'm also running into this issue
This worked for me:
- Pull the charts:
helm pull streamnative/local-storage-provisioner --untar
-
In
local-storage-provisioner/templates/provisioner-gke.yaml
, changeextensions/v1beta1
toapps/v1
. -
install the updated charts
helm install local-storage-provisioner ./local-storage-provisioner --namespace pulsar