fix(helm): fallback on extraArgs update-status if not set
needed for helm version under v3.8.0
This commit is contained in:
parent
07b50e635e
commit
4a3a056101
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ rules:
|
||||||
- list
|
- list
|
||||||
- watch
|
- watch
|
||||||
# Omit Ingress status permissions if `--update-status` is disabled.
|
# Omit Ingress status permissions if `--update-status` is disabled.
|
||||||
{{- if ne (index .Values.controller.extraArgs "update-status") "false" }}
|
{{- if ne (index .Values.controller.extraArgs "update-status" | default "") "false" }}
|
||||||
- apiGroups:
|
- apiGroups:
|
||||||
- networking.k8s.io
|
- networking.k8s.io
|
||||||
resources:
|
resources:
|
||||||
|
|
Loading…
Reference in a new issue