1
0
Fork 0

fix(*/ingress-nginx): all values inside helm.valueObject must be quoted

See: https://github.com/argoproj/argo-cd/issues/15126
This commit is contained in:
Vojtěch Mareš 2023-10-03 01:45:53 +02:00
parent 2f510ffa00
commit 7368335c45
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D
2 changed files with 13 additions and 13 deletions

View file

@ -22,19 +22,19 @@ spec:
releaseName: ingress-nginx
valuesObject:
ingressClassResource:
default: true
default: "true"
# TODO: enable proxy protocol
controller:
kind: DaemonSet
kind: "DaemonSet"
updateStrategy:
type: RollingUpdate
type: "RollingUpdate"
rollingUpdate:
maxUnavailable: 1
maxUnavailable: "1"
service:
# TODO: use Service .spec.type: NodePort
type: ClusterIP
type: "ClusterIP"
hostPort:
enabled: true
enabled: "true"
config:
allow-snippet-annotations: "true"
generate-request-id: "true"

View file

@ -24,18 +24,18 @@ spec:
releaseName: ingress-nginx
valuesObject:
ingressClassResource:
default: true
default: "true"
controller:
kind: DaemonSet
kind: "DaemonSet"
updateStrategy:
type: RollingUpdate
type: "RollingUpdate"
rollingUpdate:
maxUnavailable: 1
maxUnavailable: "1"
service:
type: NodePort
type: "NodePort"
nodePorts:
http: 32080
https: 32443
http: "32080"
https: "32443"
config:
allow-snippet-annotations: "true"
generate-request-id: "true"