# infrastructure/cert-manager/cleanup/cert-manager-cleanup-rbac.yaml apiVersion: v1 kind: ServiceAccount metadata: name: cert-manager-cleanup namespace: cert-manager --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: name: cert-manager-cleanup rules: - apiGroups: [""] resources: - pods - services - endpoints - configmaps - secrets - serviceaccounts verbs: ["get", "list", "watch", "delete"] - apiGroups: ["apps"] resources: - deployments - daemonsets - statefulsets - replicasets verbs: ["get", "list", "watch", "delete"] - apiGroups: ["batch"] resources: - jobs - cronjobs verbs: ["get", "list", "watch", "delete"] - apiGroups: ["rbac.authorization.k8s.io"] resources: - roles - rolebindings - clusterroles - clusterrolebindings verbs: ["get", "list", "watch", "delete"] - apiGroups: ["admissionregistration.k8s.io"] resources: - validatingwebhookconfigurations - mutatingwebhookconfigurations verbs: ["get", "list", "watch", "delete"] --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: name: cert-manager-cleanup roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: cert-manager-cleanup subjects: - kind: ServiceAccount name: cert-manager-cleanup namespace: cert-manager