Skip to content

Commit 4332469

Browse files
authored
Merge pull request #86 from tidepool-org/fix-charts-path
Fix chart generation
2 parents 3c99c70 + 8ef09ae commit 4332469

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Tiltconfig.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
# parameters, and update the `hostPath` if you've checked the repo out to a different location.
44

55
### Global Config Start ###
6-
tidepool_helm_charts_version: '0.1.7' # Version of the Tidepool helm charts to deploy.
76

87
global:
98
gateway:

Tiltfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ tidepool_helm_overrides_file = getHelmOverridesFile()
55
config = getConfig()
66
watch_file(tidepool_helm_overrides_file)
77

8-
tidepool_helm_charts_version = config.get('tidepool_helm_charts_version')
9-
tidepool_helm_chart_dir = "./charts/tidepool/{}".format(tidepool_helm_charts_version)
8+
tidepool_helm_chart_dir = "./charts/tidepool"
109

1110
is_shutdown = isShutdown()
1211
### Config End ###

Tiltfile.gateway

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ tidepool_helm_overrides_file = getHelmOverridesFile()
55
config = getConfig()
66
watch_file(tidepool_helm_overrides_file)
77

8-
tidepool_helm_charts_version = config.get('tidepool_helm_charts_version')
9-
tidepool_helm_chart_dir = "./charts/tidepool/{}".format(tidepool_helm_charts_version)
8+
tidepool_helm_chart_dir = "./charts/tidepool"
109

1110
gloo_chart_dir = './local/charts'
1211
absolute_gloo_chart_dir = getAbsoluteDir(gloo_chart_dir)

bin/gen_random_secrets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ QUICKSTART_DIR=$(realpath ./tidepool-quickstart)
4040
git clone [email protected]:/tidepool-org/development >/dev/null 2>&1
4141
(cd development; git checkout k8s >/dev/null 2>&1)
4242
DEV_DIR=$(realpath development)
43-
CHART_DIR=$DEV_DIR/charts/tidepool/0.1.7
43+
CHART_DIR=$DEV_DIR/charts/tidepool
4444

4545
# clone config repo
4646
git clone $remote >/dev/null 2>&1

bin/gen_templated_secrets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ QUICKSTART_DIR=$(realpath ./tidepool-quickstart)
2222
git clone [email protected]:/tidepool-org/development >/dev/null 2>&1
2323
(cd development; git checkout k8s >/dev/null 2>&1)
2424
DEV_DIR=$(realpath development)
25-
CHART_DIR=$DEV_DIR/charts/tidepool/0.1.7
25+
CHART_DIR=$DEV_DIR/charts/tidepool
2626

2727
# run template processor to create non-Tidepool services
2828
cd $QUICKSTART_DIR

charts/tidepool/charts/glooingress/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,18 @@ virtualServices:
1616
enabled: true # whether to accept HTTP requests
1717
redirect: false # whether to redirect HTTP requests to HTTPS
1818
labels: {}
19+
options: {}
1920
https:
2021
name: https
2122
dnsNames: [] # DNS names served with HTTPS
2223
enabled: false # whether to serve HTTPS
2324
hsts: false # whether to require Strict Transport Security
2425
labels: {}
26+
options: {}
2527
httpInternal:
2628
name: http-internal
2729
labels: {}
30+
options: {}
2831
gloo:
2932
enabled: false # whether to install the Gloo API Gateway control plane
3033
crds:

0 commit comments

Comments
 (0)