Skip to content

Instantly share code, notes, and snippets.

@aianus
aianus / rbac.yaml
Created November 6, 2018 22:45 — forked from allanlei/rbac.yaml
Kubernetes Node Labeling permissions
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRole
metadata:
name: node-labeler
rules:
- apiGroups: [""]
resources: ["nodes"]
verbs: ["get", "list", "update", "patch"]
---
apiVersion: rbac.authorization.k8s.io/v1beta1