...
2. In case you would like to grant the read-only access for Cloudaware to allow creation of ClusterRole and ClusterRoleBinding ClusterRole Binding in Kubernetes, use one of the sections below:
Code Block |
---|
apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: name: cloudaware-reader rules: - apiGroups: ["*"] resources: ["*"] verbs: ["get", "watch", "list"] |
...