From 3f02576dd8482c893022981013345cc07268b06d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=9F=E9=85=8C=20=E9=B5=AC=E5=85=84?= Date: Wed, 16 Mar 2022 05:28:01 +0900 Subject: [PATCH] Added nginx sidecar for direct access --- k8s/deployments.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/k8s/deployments.yaml b/k8s/deployments.yaml index 132aee7..3d05730 100644 --- a/k8s/deployments.yaml +++ b/k8s/deployments.yaml @@ -55,6 +55,11 @@ spec: volumeMounts: - name: cache mountPath: "/app/cache" + - name: assets + image: nginx:alpine + volumeMounts: + - mountPath: "/usr/share/nginx/html" + name: cache volumes: - name: cache persistentVolumeClaim: @@ -85,3 +90,7 @@ spec: ports: - port: 5000 targetPort: 5000 + name: application + - port: 80 + targetPort: 80 + name: files