123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- kind: ClusterRole
- apiVersion: rbac.authorization.k8s.io/v1beta1
- metadata:
- name: nginx-ingress
- rules:
- - apiGroups:
- - ""
- resources:
- - services
- - endpoints
- verbs:
- - get
- - list
- - watch
- - apiGroups:
- - ""
- resources:
- - secrets
- verbs:
- - get
- - list
- - watch
- - apiGroups:
- - ""
- resources:
- - configmaps
- verbs:
- - get
- - list
- - watch
- - update
- - create
- - apiGroups:
- - ""
- resources:
- - pods
- verbs:
- - list
- - apiGroups:
- - ""
- resources:
- - events
- verbs:
- - create
- - patch
- - apiGroups:
- - extensions
- resources:
- - ingresses
- verbs:
- - list
- - watch
- - get
- - apiGroups:
- - "extensions"
- resources:
- - ingresses/status
- verbs:
- - update
- ---
- kind: ClusterRoleBinding
- apiVersion: rbac.authorization.k8s.io/v1beta1
- metadata:
- name: nginx-ingress
- subjects:
- - kind: ServiceAccount
- name: nginx-ingress
- namespace: nginx-ingress
- roleRef:
- kind: ClusterRole
- name: nginx-ingress
- apiGroup: rbac.authorization.k8s.io
|