Small fixes to snapshot-controller YAML

Remove "sidecar" language for the controller.

Update image tag to 2.0.0-rc4 (the latest)

Change imagePullPolicy back to Always
This commit is contained in:
Ben Swartzlander
2019-12-30 09:39:21 -05:00
parent 81797595c8
commit 298e08e262
3 changed files with 7 additions and 7 deletions

View File

@@ -56,7 +56,7 @@ roleRef:
kind: Role
apiVersion: rbac.authorization.k8s.io/v1
metadata:
namespace: default # TODO: replace with the namespace you want for your sidecar
namespace: default # TODO: replace with the namespace you want for your controller
name: snapshot-controller-leaderelection
rules:
- apiGroups: ["coordination.k8s.io"]
@@ -68,11 +68,11 @@ kind: RoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: snapshot-controller-leaderelection
namespace: default # TODO: replace with the namespace you want for your sidecar
namespace: default # TODO: replace with the namespace you want for your controller
subjects:
- kind: ServiceAccount
name: snapshot-controller
namespace: default # TODO: replace with the namespace you want for your sidecar
namespace: default # TODO: replace with the namespace you want for your controller
roleRef:
kind: Role
name: snapshot-controller-leaderelection

View File

@@ -20,8 +20,8 @@ spec:
containers:
- name: snapshot-controller
# NOTE: replace with official image when released: quay.io/k8scsi/snapshot-controller:v2.0.0
image: quay.io/k8scsi/snapshot-controller:v2.0.0-rc2
image: quay.io/k8scsi/snapshot-controller:v2.0.0-rc4
args:
- "--v=5"
- "--leader-election=false"
imagePullPolicy: IfNotPresent #Always
imagePullPolicy: Always