This commit is contained in:
Brad 2022-12-14 22:32:35 -08:00
parent a2ffd5f29f
commit b406a40573
4 changed files with 6 additions and 2 deletions

View File

@ -5,7 +5,7 @@ metadata:
labels:
app: {{ .Values.appName }}
spec:
replicas: 5
replicas: {{ .Values.replicas }}
selector:
matchLabels:
app: {{ .Values.appName }}

View File

@ -1,4 +1,6 @@
replicas: 2
configmap:
data:
CUSTOM_HEADER: 'This is on the DEV environment!'

View File

@ -1,4 +1,6 @@
replicas: 4
configmap:
data:
CUSTOM_HEADER: 'This is on the PROD environment!'

View File

@ -3,4 +3,4 @@ kind: Deployment
metadata:
name: mywebapp
spec:
replicas: 5
replicas: 4