Skip to content

Commit a289257

Browse files
authored
Merge pull request #53 from DataBiosphere/nodepool
RW-10598 parameterize replica count
2 parents 4eacf9f + d22a059 commit a289257

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

terra-app-helm/aou-rstudio-chart/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ apiVersion: v2
22
name: aou-rstudio-chart
33
description: Chart for deploying Rstudio to All of Us Workbench
44
type: application
5-
version: 0.2.0
5+
version: 0.3.0

terra-app-helm/aou-rstudio-chart/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
labels:
66
{{- include "app.labels" . | nindent 4 }}
77
spec:
8-
replicas: 1
8+
replicas: {{ .Values.replicaCount }}
99
selector:
1010
matchLabels:
1111
{{- include "app.selectorLabels" . | nindent 6 }}

terra-app-helm/aou-rstudio-chart/values.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,6 @@ welder:
4949
# - name: CLUSTER_NAME
5050
# value: "dummy"
5151
# - name: OWNER_EMAIL
52-
# value: "dummy"
52+
# value: "dummy"
53+
54+
replicaCount: 1

terra-app-helm/aou-sas-chart/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ apiVersion: v2
22
name: aou-sas-chart
33
description: Chart for deploying SAS to All of Us Workbench
44
type: application
5-
version: 0.1.0
5+
version: 0.2.0

terra-app-helm/aou-sas-chart/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
labels:
66
{{- include "app.labels" . | nindent 4 }}
77
spec:
8-
replicas: 1
8+
replicas: {{ .Values.replicaCount }}
99
selector:
1010
matchLabels:
1111
{{- include "app.selectorLabels" . | nindent 6 }}

terra-app-helm/aou-sas-chart/values.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,6 @@ persistence:
5959
welder:
6060
extraEnv:
6161
# - name: WORKSPACE_NAME
62-
# value: my-workspace
62+
# value: my-workspace
63+
64+
replicaCount: 1

0 commit comments

Comments
 (0)