Skip to content

Commit aead341

Browse files
fix: extract replica count (#3)
1 parent edadc90 commit aead341

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

charts/hdx-oss-v2/templates/app-deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
{{- include "hdx-oss.labels" . | nindent 4 }}
77
app: app
88
spec:
9-
replicas: 1
9+
replicas: {{ .Values.hyperdx.replicas | default 1 }}
1010
selector:
1111
matchLabels:
1212
{{- include "hdx-oss.selectorLabels" . | nindent 6 }}

charts/hdx-oss-v2/values.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ hyperdx:
1919
tls:
2020
enabled: false
2121
secretName: "hyperdx-tls"
22+
replicas: 1
2223

2324
mongodb:
2425
image: "mongo:5.0.14-focal"

0 commit comments

Comments
 (0)