commit
701ad4e077
4 changed files with 13 additions and 10 deletions
|
@ -1,6 +1,6 @@
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
name: ingress-nginx
|
name: ingress-nginx
|
||||||
version: 3.2.0
|
version: 3.3.0
|
||||||
appVersion: 0.35.0
|
appVersion: 0.35.0
|
||||||
home: https://github.com/kubernetes/ingress-nginx
|
home: https://github.com/kubernetes/ingress-nginx
|
||||||
description: Ingress controller for Kubernetes using NGINX as a reverse proxy and load balancer
|
description: Ingress controller for Kubernetes using NGINX as a reverse proxy and load balancer
|
||||||
|
|
|
@ -102,10 +102,11 @@ spec:
|
||||||
- --health-check-path={{ .Values.controller.healthCheckPath }}
|
- --health-check-path={{ .Values.controller.healthCheckPath }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- range $key, $value := .Values.controller.extraArgs }}
|
{{- range $key, $value := .Values.controller.extraArgs }}
|
||||||
{{- if $value }}
|
{{- /* Accept keys without values or with false as value */}}
|
||||||
- --{{ $key }}={{ $value }}
|
{{- if eq ($value | quote | len) 2 }}
|
||||||
{{- else }}
|
|
||||||
- --{{ $key }}
|
- --{{ $key }}
|
||||||
|
{{- else }}
|
||||||
|
- --{{ $key }}={{ $value }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
securityContext:
|
securityContext:
|
||||||
|
|
|
@ -106,10 +106,11 @@ spec:
|
||||||
- --health-check-path={{ .Values.controller.healthCheckPath }}
|
- --health-check-path={{ .Values.controller.healthCheckPath }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- range $key, $value := .Values.controller.extraArgs }}
|
{{- range $key, $value := .Values.controller.extraArgs }}
|
||||||
{{- if $value }}
|
{{- /* Accept keys without values or with false as value */}}
|
||||||
- --{{ $key }}={{ $value }}
|
{{- if eq ($value | quote | len) 2 }}
|
||||||
{{- else }}
|
|
||||||
- --{{ $key }}
|
- --{{ $key }}
|
||||||
|
{{- else }}
|
||||||
|
- --{{ $key }}={{ $value }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
securityContext:
|
securityContext:
|
||||||
|
|
|
@ -43,10 +43,11 @@ spec:
|
||||||
{{- if .Values.defaultBackend.extraArgs }}
|
{{- if .Values.defaultBackend.extraArgs }}
|
||||||
args:
|
args:
|
||||||
{{- range $key, $value := .Values.defaultBackend.extraArgs }}
|
{{- range $key, $value := .Values.defaultBackend.extraArgs }}
|
||||||
{{- if $value }}
|
{{- /* Accept keys without values or with false as value */}}
|
||||||
- --{{ $key }}={{ $value }}
|
{{- if eq ($value | quote | len) 2 }}
|
||||||
{{- else }}
|
|
||||||
- --{{ $key }}
|
- --{{ $key }}
|
||||||
|
{{- else }}
|
||||||
|
- --{{ $key }}={{ $value }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
Loading…
Reference in a new issue