From a563078a6f1c3ff66ec6f0a9ef037b3657024a1b Mon Sep 17 00:00:00 2001 From: Steffen Illium Date: Sun, 5 May 2024 21:02:28 +0200 Subject: [PATCH] new ports metrics --- apps/emby/base/deployment.yaml | 2 ++ .../02-argocd/patches/argocd-server-service.yaml | 13 +++++++++++++ 2 files changed, 15 insertions(+) diff --git a/apps/emby/base/deployment.yaml b/apps/emby/base/deployment.yaml index c35f0f5..87ba52b 100644 --- a/apps/emby/base/deployment.yaml +++ b/apps/emby/base/deployment.yaml @@ -7,6 +7,8 @@ metadata: namespace: emby spec: replicas: 1 + strategy: + type: Recreate selector: matchLabels: app: emby diff --git a/infrastructure/02-argocd/patches/argocd-server-service.yaml b/infrastructure/02-argocd/patches/argocd-server-service.yaml index 95e027b..366dd9c 100644 --- a/infrastructure/02-argocd/patches/argocd-server-service.yaml +++ b/infrastructure/02-argocd/patches/argocd-server-service.yaml @@ -5,4 +5,17 @@ metadata: spec: type: LoadBalancer loadBalancerIP: 192.168.178.103 + ports: + - name: http + port: 80 + protocol: TCP + targetPort: 8080 + - name: https + port: 443 + protocol: TCP + targetPort: 8080 + - name: metrics + port: 8083 + protocol: TCP + targetPort: 8083