| Giorgi Lekveishvili | cccf72f | 2023-05-19 16:13:22 +0400 | [diff] [blame] | 1 | {{- if and .Values.controller.admissionWebhooks.enabled .Values.controller.admissionWebhooks.patch.enabled (not .Values.controller.admissionWebhooks.certManager.enabled) -}} |
| Giorgi Lekveishvili | 725bb39 | 2023-05-05 18:24:27 +0400 | [diff] [blame] | 2 | apiVersion: rbac.authorization.k8s.io/v1 |
| 3 | kind: ClusterRoleBinding |
| 4 | metadata: |
| Giorgi Lekveishvili | cccf72f | 2023-05-19 16:13:22 +0400 | [diff] [blame] | 5 | name: {{ include "ingress-nginx.fullname" . }}-admission |
| Giorgi Lekveishvili | 725bb39 | 2023-05-05 18:24:27 +0400 | [diff] [blame] | 6 | annotations: |
| 7 | "helm.sh/hook": pre-install,pre-upgrade,post-install,post-upgrade |
| 8 | "helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded |
| 9 | labels: |
| 10 | {{- include "ingress-nginx.labels" . | nindent 4 }} |
| 11 | app.kubernetes.io/component: admission-webhook |
| Giorgi Lekveishvili | cccf72f | 2023-05-19 16:13:22 +0400 | [diff] [blame] | 12 | {{- with .Values.controller.admissionWebhooks.patch.labels }} |
| 13 | {{- toYaml . | nindent 4 }} |
| 14 | {{- end }} |
| Giorgi Lekveishvili | 725bb39 | 2023-05-05 18:24:27 +0400 | [diff] [blame] | 15 | roleRef: |
| 16 | apiGroup: rbac.authorization.k8s.io |
| 17 | kind: ClusterRole |
| 18 | name: {{ include "ingress-nginx.fullname" . }}-admission |
| 19 | subjects: |
| 20 | - kind: ServiceAccount |
| 21 | name: {{ include "ingress-nginx.fullname" . }}-admission |
| 22 | namespace: {{ .Release.Namespace | quote }} |
| 23 | {{- end }} |