Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ ingressInternal:
# - chart-example.local

command:
workingDir: {}
enabled: false
value: []

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,9 @@ spec:
containerPort: {{ .port }}
protocol: TCP
{{- end}}
{{- if and $.Values.command.enabled $.Values.command.workingDir }}
workingDir: {{ $.Values.command.workingDir }}
{{- end}}
{{- if and $.Values.command.value $.Values.command.enabled}}
command:
{{ toYaml $.Values.command.value | indent 12 -}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,9 @@ dbMigrationConfig:
enabled: false

command:
enabled: false
value: []
workingDir: /app
enabled: true
value: ["ls"]

args:
enabled: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ ingressInternal:
# - chart-example.local

command:
workingDir: {}
enabled: false
value: []

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,9 @@ spec:
containerPort: {{ .port }}
protocol: TCP
{{- end}}
{{- if and $.Values.command.enabled $.Values.command.workingDir }}
workingDir: {{ $.Values.command.workingDir }}
{{- end}}
{{- if and $.Values.command.value $.Values.command.enabled}}
command:
{{ toYaml $.Values.command.value | indent 12 -}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,9 @@ dbMigrationConfig:
enabled: false

command:
enabled: false
value: []
workingDir: /app
enabled: true
value: ["ls"]

args:
enabled: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ ingressInternal:
# - chart-example.local

command:
workingDir: {}
enabled: false
value: []

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,9 @@ spec:
containerPort: {{ .port }}
protocol: TCP
{{- end}}
{{- if and $.Values.command.enabled $.Values.command.workingDir }}
workingDir: {{ $.Values.command.workingDir }}
{{- end}}
{{- if and $.Values.command.value $.Values.command.enabled}}
command:
{{ toYaml $.Values.command.value | indent 12 -}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ prometheusRule:


ingress:
enabled: true
enabled: false
className: nginx
annotations: {}
# nginx.ingress.kubernetes.io/rewrite-target: /
Expand Down Expand Up @@ -204,7 +204,7 @@ ingress:
# - chart-example.local

ingressInternal:
enabled: true
enabled: false
className: nginx-internal
annotations: {}
# kubernetes.io/ingress.class: nginx
Expand All @@ -231,8 +231,9 @@ dbMigrationConfig:
enabled: false

command:
workingDir: /app
enabled: false
value: []
value: ["ls"]

args:
enabled: false
Expand Down