Skip to content

Commit a41c35f

Browse files
authored
enabled replicacount value for ghost deployment (#4873)
1 parent d2983a3 commit a41c35f

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

bitnami/ghost/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ name: ghost
3333
sources:
3434
- https://github.com/bitnami/bitnami-docker-ghost
3535
- http://www.ghost.org/
36-
version: 11.1.9
36+
version: 11.2.0

bitnami/ghost/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ metadata:
1414
spec:
1515
selector:
1616
matchLabels: {{- include "common.labels.matchLabels" . | nindent 6 }}
17-
replicas: 1
17+
replicas: {{ .Values.replicaCount }}
1818
template:
1919
metadata:
2020
labels: {{- include "common.labels.standard" . | nindent 8 }}

bitnami/ghost/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ image:
2727
# pullSecrets:
2828
# - myRegistryKeySecretName
2929

30+
## Number of ghost replicas to deploy
31+
replicaCount: 1
32+
3033
## Command and args for running the Ghost container (set to default if not set). Use array form
3134
##
3235
command: []

0 commit comments

Comments
 (0)