Skip to content

Accidentally deleted ClusterRole eks:addon-manager

0

Hi, I accidentally deleted ClusterRole eks:addon-manager.

Is there any way to restore the role? I couldn't find its yaml content on public internet.

1 Answer
3
Accepted Answer
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
  name: eks:addon-manager
rules:
  - apiGroups:
      - ""
    resources:
      - configmaps
    verbs:
      - create
      - delete
      - get
      - list
      - update
      - watch
  - apiGroups:
      - apps
    resources:
      - deployments
    verbs:
      - create
      - delete
      - get
      - list
      - update
      - watch
  - apiGroups:
      - eks.amazonaws.com
    resources:
      - addons
    verbs:
      - create
      - delete
      - get
      - list
      - update
      - watch

EXPERT
answered 2 years ago
EXPERT
reviewed 2 years ago
EXPERT
reviewed 2 years ago
EXPERT
reviewed 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.