diff --git a/helm/templates/web-deployment.yaml b/helm/templates/web-deployment.yaml index b5386dba4..a0db9ccfd 100644 --- a/helm/templates/web-deployment.yaml +++ b/helm/templates/web-deployment.yaml @@ -9,7 +9,7 @@ metadata: app.kubernetes.io/managed-by: {{ .Release.Service }} k8s.passbook.beryju.org/component: web spec: - replicas: {{ serverReplicas }} + replicas: {{ .Values.serverReplicas }} selector: matchLabels: app.kubernetes.io/name: {{ include "passbook.name" . }} diff --git a/helm/templates/worker-deployment.yaml b/helm/templates/worker-deployment.yaml index 0f18d09ba..5f6bd98d4 100644 --- a/helm/templates/worker-deployment.yaml +++ b/helm/templates/worker-deployment.yaml @@ -9,7 +9,7 @@ metadata: app.kubernetes.io/managed-by: {{ .Release.Service }} k8s.passbook.beryju.org/component: worker spec: - replicas: {{ workerReplicas }} + replicas: {{ .Values.workerReplicas }} selector: matchLabels: app.kubernetes.io/name: {{ include "passbook.name" . }}