This commit is contained in:
Steffen Illium 2024-05-03 10:47:14 +02:00
parent f23639e924
commit 3fa1dae0b1
6 changed files with 10 additions and 10 deletions

View File

@ -12,4 +12,4 @@ spec:
kind: Rule kind: Rule
services: services:
- name: immich-server - name: immich-server
port: http port: server

View File

@ -26,7 +26,7 @@ spec:
image: ghcr.io/immich-app/immich-server:release image: ghcr.io/immich-app/immich-server:release
name: microservices name: microservices
ports: ports:
- name: http - name: microservices
containerPort: 3002 containerPort: 3002
hostPort: 3002 hostPort: 3002
protocol: TCP protocol: TCP
@ -46,7 +46,7 @@ spec:
image: ghcr.io/immich-app/immich-server:release image: ghcr.io/immich-app/immich-server:release
name: server name: server
ports: ports:
- name: http - name: server
containerPort: 3001 containerPort: 3001
hostPort: 3001 hostPort: 3001
protocol: TCP protocol: TCP

View File

@ -8,6 +8,6 @@ spec:
ports: ports:
- name: "http" - name: "http"
port: 5432 port: 5432
targetPort: 5432 targetPort: http
selector: selector:
app: database app: database

View File

@ -8,6 +8,6 @@ spec:
ports: ports:
- name: "http" - name: "http"
port: 3003 port: 3003
targetPort: 3003 targetPort: http
selector: selector:
app: machine-learning app: machine-learning

View File

@ -8,6 +8,6 @@ spec:
ports: ports:
- name: "http" - name: "http"
port: 6379 port: 6379
targetPort: 6379 targetPort: http
selector: selector:
app: redis app: redis

View File

@ -6,11 +6,11 @@ metadata:
name: server name: server
spec: spec:
ports: ports:
- name: "http" - name: "server"
port: 3001 port: 3001
targetPort: 3001 targetPort: server
- name: "http" - name: "microservices"
port: 3002 port: 3002
targetPort: 3002 targetPort: microservices
selector: selector:
app: server app: server