Skip to content
This repository has been archived by the owner on Nov 21, 2023. It is now read-only.

Commit

Permalink
fix(*/ingress-nginx): all values inside helm.valueObject must be quoted
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtechmares committed Oct 2, 2023
1 parent 2f510ff commit 7368335
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions clusters/cherry/apps/ingress-nginx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
14 changes: 7 additions & 7 deletions clusters/lychee/ingress-nginx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 7368335

Please sign in to comment.