--- apiVersion: v1 kind: Service metadata: name: immich-service namespace: media annotations: metallb.io/allow-shared-ip: "shared-ip-1" spec: loadBalancerIP: 192.168.1.230 type: LoadBalancer selector: app: immich-app ports: - port: 2283 targetPort: 2283 --- apiVersion: v1 kind: Service metadata: name: immich-machine-learning-service namespace: media annotations: metallb.io/allow-shared-ip: "shared-ip-1" spec: loadBalancerIP: 192.168.1.230 type: LoadBalancer selector: app: immich-ml ports: - port: 3333 targetPort: 3003 --- apiVersion: v1 kind: Service metadata: name: immich-psql-service namespace: media spec: selector: app: immich-db ports: - protocol: TCP port: 5432 targetPort: 5432 --- apiVersion: v1 kind: Service metadata: name: immich-redis-service namespace: media spec: selector: app: immich-db ports: - protocol: TCP port: 6379 targetPort: 6379