Skip to content

Commit

Permalink
helm is so bad, just make everything strings
Browse files Browse the repository at this point in the history
  • Loading branch information
newgoliath committed Nov 20, 2023
1 parent 0d0593b commit 8b9318c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/showroom/templates/namespace.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if .Values.namespace.create -}}
{{- if eq .Values.namespace.create "true" -}}
apiVersion: v1
kind: Namespace
metadata:
Expand Down
2 changes: 1 addition & 1 deletion charts/showroom/templates/terminal/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
args:
- --base={{ .Values.terminal.wetty.base }}
- --port={{ .Values.terminal.wetty.port }}
{{- if .Values.terminal.autoSshToBastion -}}
{{- if eq .Values.terminal.wetty.autoSshToBastion "true" }}
- --ssh-host={{ .Values.terminal.wetty.sshHost }}
- --ssh-port={{ .Values.terminal.wetty.sshPort }}
- --ssh-user={{ .Values.terminal.wetty.sshUser }}
Expand Down
4 changes: 2 additions & 2 deletions charts/showroom/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# when launched as showroom-deployer user, chart CANNOT create namespaces

namespace:
create: true
create: "true"
name: showroom

guid: nnnn
Expand Down Expand Up @@ -64,7 +64,7 @@ terminal:
# image: ghcr.io/rhpds/showroom-terminal:latest # for when we return to custom built
name: terminal
wetty:
autoSshToBastion: false
autoSshToBastion: "false"
base: '/wetty/'
port: 8080
sshHost: shared-410-bastion.openshift.redhatworkshops.io
Expand Down

0 comments on commit 8b9318c

Please sign in to comment.