diff --git a/helm/flowforge/templates/deployment.yaml b/helm/flowforge/templates/deployment.yaml index 38b6919e..abdaecc4 100644 --- a/helm/flowforge/templates/deployment.yaml +++ b/helm/flowforge/templates/deployment.yaml @@ -8,7 +8,7 @@ metadata: {{- toYaml . | nindent 4 }} {{- end }} spec: - replicas: 1 + replicas: {{ .Values.forge.replicas | default 1 }} selector: matchLabels: {{- include "forge.forgeSelectorLabels" . | nindent 6 }} diff --git a/helm/flowforge/values.schema.json b/helm/flowforge/values.schema.json index 4e22e93b..4b993491 100644 --- a/helm/flowforge/values.schema.json +++ b/helm/flowforge/values.schema.json @@ -20,6 +20,9 @@ "image": { "type": "string" }, + "replicas": { + "type": "integer" + }, "registry": { "type": "string" }, diff --git a/helm/flowforge/values.yaml b/helm/flowforge/values.yaml index 42fa82fb..8e685b5f 100644 --- a/helm/flowforge/values.yaml +++ b/helm/flowforge/values.yaml @@ -1,4 +1,5 @@ forge: + replicas: 1 localPostgresql: true https: true projectNamespace: flowforge