From 345e1b1831454ce02cbb8a9b9ebe1f481dd5feca Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Sun, 7 Apr 2024 20:46:07 -0400 Subject: [PATCH] Update immich to expose correct port --- immich/immich-server-deployment.yaml | 2 ++ immich/immich-server-service.yaml | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/immich/immich-server-deployment.yaml b/immich/immich-server-deployment.yaml index d04f777..a69bbca 100644 --- a/immich/immich-server-deployment.yaml +++ b/immich/immich-server-deployment.yaml @@ -17,6 +17,8 @@ spec: - name: immich-server image: ghcr.io/immich-app/immich-server:release args: ["start.sh", "immich"] + ports: + - containerPort: 3001 env: - name: UPLOAD_LOCATION value: /usr/src/app/upload diff --git a/immich/immich-server-service.yaml b/immich/immich-server-service.yaml index d1b700b..f1acc8a 100644 --- a/immich/immich-server-service.yaml +++ b/immich/immich-server-service.yaml @@ -6,7 +6,7 @@ metadata: spec: type: LoadBalancer ports: - - port: 3000 - targetPort: 2283 + - port: 80 + targetPort: 3001 selector: app: immich-server