Last active
November 17, 2018 13:23
-
-
Save yudaykiran/4b4e68981b5c3e1140b1d421b120da99 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
apiVersion: rbac.authorization.k8s.io/v1 | |
metadata: | |
name: elasticsearch-logging | |
labels: | |
k8s-app: elasticsearch-logging | |
kubernetes.io/cluster-service: "true" | |
addonmanager.kubernetes.io/mode: Reconcile | |
rules: | |
- apiGroups: | |
- "" | |
resources: | |
- "services" | |
- "namespaces" | |
- "endpoints" | |
verbs: | |
- "get" | |
--- | |
kind: ClusterRoleBinding | |
apiVersion: rbac.authorization.k8s.io/v1 | |
metadata: | |
namespace: logging | |
name: elasticsearch-logging | |
labels: | |
k8s-app: elasticsearch-logging | |
kubernetes.io/cluster-service: "true" | |
addonmanager.kubernetes.io/mode: Reconcile | |
subjects: | |
- kind: ServiceAccount | |
name: elasticsearch-logging | |
namespace: logging | |
apiGroup: "" | |
roleRef: | |
kind: ClusterRole | |
name: elasticsearch-logging | |
apiGroup: "" | |
--- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment