Skip to content

Commit

Permalink
Use latest version of storage-provisioner to work around kubernetes#7218
Browse files Browse the repository at this point in the history


Also need to follow instructions here:
kubernetes#7218 (comment)

> After installing new version of storage-provisioner you need to edit
clusterrole:
> `kubectl edit clusterrole -n kube-system system:persistent-volume-provisioner`
> and add new permissions there

```
- apiGroups:
  - ""
  resources:
  - endpoints
  verbs:
  - get
  - list
  - watch
  - create
  - patch
  - update
```
  • Loading branch information
Eric Butler committed Jun 4, 2020
1 parent 025ba11 commit 5c2bc19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
hostNetwork: true
containers:
- name: storage-provisioner
image: {{default "gcr.io/k8s-minikube" .ImageRepository}}/storage-provisioner{{.ExoticArch}}:v1.8.1
image: {{default "gcr.io/k8s-minikube" .ImageRepository}}/storage-provisioner{{.ExoticArch}}:latest
command: ["/storage-provisioner"]
imagePullPolicy: IfNotPresent
volumeMounts:
Expand Down

0 comments on commit 5c2bc19

Please sign in to comment.