Updated for weather app

This commit is contained in:
jshu0 2023-08-15 10:29:14 -05:00
parent 61a23d284c
commit 067143caf2
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ spec:
- name: mycontainer - name: mycontainer
image: "{{ .Values.image.name }}:{{ .Values.image.tag }}" image: "{{ .Values.image.name }}:{{ .Values.image.tag }}"
ports: ports:
- containerPort: 80 - containerPort: 3000
envFrom: envFrom:
- configMapRef: - configMapRef:
name: {{ .Values.configmap.name }} name: {{ .Values.configmap.name }}

View File

@ -6,7 +6,7 @@ metadata:
app: {{ .Values.appName }} app: {{ .Values.appName }}
spec: spec:
ports: ports:
- port: 80 - port: 3000
protocol: TCP protocol: TCP
name: flask name: flask
selector: selector:

View File

@ -8,5 +8,5 @@ configmap:
CUSTOM_HEADER: 'This app was deployed with helm!' CUSTOM_HEADER: 'This app was deployed with helm!'
image: image:
name: devopsjourney1/mywebapp name: shujohns/weather
tag: latest tag: latest