-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade cass-operator to 1.6.0 (#41)
I replaced the all-in-one operator manifest file with separate files in part to make the updates a little easier.
- Loading branch information
Showing
13 changed files
with
377 additions
and
265 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
name: cass-operator-cr | ||
rules: | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- nodes | ||
- persistentvolumes | ||
verbs: | ||
- get | ||
- list | ||
- watch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
kind: ClusterRoleBinding | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
metadata: | ||
name: cass-operator-crb | ||
subjects: | ||
- kind: ServiceAccount | ||
name: cass-operator | ||
# The namespace is removed here in order for it to be set by kustomize. See | ||
# https://github.com/kubernetes-sigs/kustomize/pull/166 for details. | ||
roleRef: | ||
kind: ClusterRole | ||
name: cass-operator-cr | ||
apiGroup: rbac.authorization.k8s.io |
Oops, something went wrong.