From 067143caf2a699506fb763bc36c83d80f5644303 Mon Sep 17 00:00:00 2001 From: jshu0 Date: Tue, 15 Aug 2023 10:29:14 -0500 Subject: [PATCH] Updated for weather app --- helm-webapp/templates/deployment.yaml | 2 +- helm-webapp/templates/service.yaml | 2 +- helm-webapp/values.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/helm-webapp/templates/deployment.yaml b/helm-webapp/templates/deployment.yaml index 1ba1743..4adfdf3 100644 --- a/helm-webapp/templates/deployment.yaml +++ b/helm-webapp/templates/deployment.yaml @@ -20,7 +20,7 @@ spec: - name: mycontainer image: "{{ .Values.image.name }}:{{ .Values.image.tag }}" ports: - - containerPort: 80 + - containerPort: 3000 envFrom: - configMapRef: name: {{ .Values.configmap.name }} diff --git a/helm-webapp/templates/service.yaml b/helm-webapp/templates/service.yaml index 0ffe034..2f44541 100644 --- a/helm-webapp/templates/service.yaml +++ b/helm-webapp/templates/service.yaml @@ -6,7 +6,7 @@ metadata: app: {{ .Values.appName }} spec: ports: - - port: 80 + - port: 3000 protocol: TCP name: flask selector: diff --git a/helm-webapp/values.yaml b/helm-webapp/values.yaml index 2f332a2..b205c18 100644 --- a/helm-webapp/values.yaml +++ b/helm-webapp/values.yaml @@ -8,5 +8,5 @@ configmap: CUSTOM_HEADER: 'This app was deployed with helm!' image: - name: devopsjourney1/mywebapp + name: shujohns/weather tag: latest \ No newline at end of file