Update helm templates to match new chart name

This commit is contained in:
ChiefAlexander 2020-02-28 08:53:24 -06:00
parent cfebfe4c99
commit 710f1f2601
No known key found for this signature in database
GPG key ID: 0FF2F4C67F06A1AC
41 changed files with 170 additions and 171 deletions

View file

@ -3,12 +3,12 @@ apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
labels:
{{- include "nginx-ingress.labels" . | nindent 4 }}
{{- include "ingress-nginx.labels" . | nindent 4 }}
app.kubernetes.io/component: {{ .Values.defaultBackend.name | quote }}
name: {{ include "nginx-ingress.fullname" . }}-backend
name: {{ include "ingress-nginx.fullname" . }}-backend
rules:
- apiGroups: ['{{ template "podSecurityPolicy.apiGroup" . }}']
resources: ['podsecuritypolicies']
verbs: ['use']
resourceNames: [{{ include "nginx-ingress.fullname" . }}-backend]
resourceNames: [{{ include "ingress-nginx.fullname" . }}-backend]
{{- end -}}