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

Side cars update #52

Merged
merged 4 commits into from
Feb 17, 2022
Merged
Show file tree
Hide file tree
Changes from 2 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
10 changes: 5 additions & 5 deletions helm/csi-powerstore/k8s-1.21-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@ kubeversion: "v1.21"
images:
# "images.attacher" defines the container images used for the csi attacher
# container.
attacher: k8s.gcr.io/sig-storage/csi-attacher:v3.3.0
attacher: k8s.gcr.io/sig-storage/csi-attacher:v3.4.0

# "images.provisioner" defines the container images used for the csi provisioner
# container.
provisioner: k8s.gcr.io/sig-storage/csi-provisioner:v3.0.0
provisioner: k8s.gcr.io/sig-storage/csi-provisioner:v3.1.0

# "images.snapshotter" defines the container image used for the csi external snapshotter
snapshotter: k8s.gcr.io/sig-storage/csi-snapshotter:v4.2.1
snapshotter: k8s.gcr.io/sig-storage/csi-snapshotter:v5.0.1

# "images.registrar" defines the container images used for the csi registrar
# container.
registrar: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.3.0
registrar: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.5.0

# "images.resizer" defines the container images used for the csi resizer
# container.
resizer: k8s.gcr.io/sig-storage/csi-resizer:v1.3.0
resizer: k8s.gcr.io/sig-storage/csi-resizer:v1.4.0

# "images.externalhealthmonitorcontroller" defines the container images used for the csi
# external health monitor controller
Expand Down
10 changes: 5 additions & 5 deletions helm/csi-powerstore/k8s-1.22-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@ kubeversion: "v1.22"
images:
# "images.attacher" defines the container images used for the csi attacher
# container.
attacher: k8s.gcr.io/sig-storage/csi-attacher:v3.3.0
attacher: k8s.gcr.io/sig-storage/csi-attacher:v3.4.0

# "images.provisioner" defines the container images used for the csi provisioner
# container.
provisioner: k8s.gcr.io/sig-storage/csi-provisioner:v3.0.0
provisioner: k8s.gcr.io/sig-storage/csi-provisioner:v3.1.0

# "images.snapshotter" defines the container image used for the csi external snapshotter
snapshotter: k8s.gcr.io/sig-storage/csi-snapshotter:v4.2.1
snapshotter: k8s.gcr.io/sig-storage/csi-snapshotter:v5.0.1

# "images.registrar" defines the container images used for the csi registrar
# container.
registrar: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.3.0
registrar: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.5.0

# "images.resizer" defines the container images used for the csi resizer
# container.
resizer: k8s.gcr.io/sig-storage/csi-resizer:v1.3.0
resizer: k8s.gcr.io/sig-storage/csi-resizer:v1.4.0

# "images.externalhealthmonitorcontroller" defines the container images used for the csi
# external health monitor controller
Expand Down
10 changes: 5 additions & 5 deletions helm/csi-powerstore/k8s-1.23-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@ kubeversion: "v1.23"
images:
# "images.attacher" defines the container images used for the csi attacher
# container.
attacher: k8s.gcr.io/sig-storage/csi-attacher:v3.3.0
attacher: k8s.gcr.io/sig-storage/csi-attacher:v3.4.0

# "images.provisioner" defines the container images used for the csi provisioner
# container.
provisioner: k8s.gcr.io/sig-storage/csi-provisioner:v3.0.0
provisioner: k8s.gcr.io/sig-storage/csi-provisioner:v3.1.0

# "images.snapshotter" defines the container image used for the csi external snapshotter
snapshotter: k8s.gcr.io/sig-storage/csi-snapshotter:v4.2.1
snapshotter: k8s.gcr.io/sig-storage/csi-snapshotter:v5.0.1

# "images.registrar" defines the container images used for the csi registrar
# container.
registrar: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.3.0
registrar: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.5.0

# "images.resizer" defines the container images used for the csi resizer
# container.
resizer: k8s.gcr.io/sig-storage/csi-resizer:v1.3.0
resizer: k8s.gcr.io/sig-storage/csi-resizer:v1.4.0

# "images.externalhealthmonitorcontroller" defines the container images used for the csi
# external health monitor controller
Expand Down
4 changes: 2 additions & 2 deletions helm/csi-powerstore/templates/controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ rules:
verbs: ["get", "list", "watch"]
- apiGroups: ["snapshot.storage.k8s.io"]
resources: ["volumesnapshotcontents"]
verbs: ["create", "get", "list", "watch", "update", "delete"]
verbs: ["create", "get", "list", "watch", "update", "delete", "patch"]
- apiGroups: ["snapshot.storage.k8s.io"]
resources: ["volumesnapshotcontents/status"]
verbs: ["update"]
verbs: ["update", "patch"]
- apiGroups: ["snapshot.storage.k8s.io"]
resources: ["volumesnapshots", "volumesnapshots/status"]
verbs: ["get", "list", "watch", "update"]
Expand Down