Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't use external-provisioner delete finalizer #266

Merged
merged 2 commits into from
Apr 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions CHANGELOG-1.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@
* filter resizer related params from storageclass before passing them to the driver ([#248](https://github.com/kubernetes-csi/external-provisioner/pull/248))
* Cache driver capabilities ([#241](https://github.com/kubernetes-csi/external-provisioner/pull/241))
* Use distroless as base image ([#247](https://github.com/kubernetes-csi/external-provisioner/pull/247))
* Fix rbac ([#236](https://github.com/kubernetes-csi/external-provisioner/pull/236))
* Fix retry loop issues ([#216](https://github.com/kubernetes-csi/external-provisioner/pull/216))
* Cache driver name ([#215](https://github.com/kubernetes-csi/external-provisioner/pull/215))
* Fix issue with PV protection ([#209](https://github.com/kubernetes-csi/external-provisioner/pull/209))
* Add prune to gopkg.toml ([#196](https://github.com/kubernetes-csi/external-provisioner/pull/196))
* Don't provide access to Secrets in default RBAC ([#188](https://github.com/kubernetes-csi/external-provisioner/pull/188))
6 changes: 3 additions & 3 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

[[constraint]]
name = "sigs.k8s.io/sig-storage-lib-external-provisioner"
version = "v3.0.0"
version = "v3.1.0"

# TODO: remove when released
[[constraint]]
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/rbac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ rules:
# verbs: ["get", "list"]
- apiGroups: [""]
resources: ["persistentvolumes"]
verbs: ["get", "list", "watch", "update", "create", "delete"]
verbs: ["get", "list", "watch", "create", "delete"]
- apiGroups: [""]
resources: ["persistentvolumeclaims"]
verbs: ["get", "list", "watch", "update"]
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.