Skip to content

Commit 34b5d26

Browse files
committed
fix replicas and existingSecret. bump to 3.25.3
1 parent 7cc61ab commit 34b5d26

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

ci/helm-chart/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 3.25.2
18+
version: 3.25.3
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

ci/helm-chart/templates/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
app.kubernetes.io/instance: {{ .Release.Name }}
99
app.kubernetes.io/managed-by: {{ .Release.Service }}
1010
spec:
11-
replicas: 1
11+
replicas: {{ .Values.replicaCount | default 1 }}
1212
strategy:
1313
type: Recreate
1414
selector:

ci/helm-chart/values.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ nameOverride: ""
1919
fullnameOverride: ""
2020
hostnameOverride: ""
2121

22+
# The existing secret to use for code-server authentication in the frontend. the password is stored in the secret under the key `password`
23+
# existingSecret: ""
24+
2225
serviceAccount:
2326
# Specifies whether a service account should be created
2427
create: true

0 commit comments

Comments
 (0)