From 51349de72ecf358ff704626f744cf5f3f1198901 Mon Sep 17 00:00:00 2001 From: David Landry Date: Sun, 20 Oct 2024 01:27:37 -0400 Subject: [PATCH] fix(portfolio): service name; always pull image --- apps/portfolio/base/deployment.yaml | 1 + apps/portfolio/base/service.yaml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/portfolio/base/deployment.yaml b/apps/portfolio/base/deployment.yaml index 872be03..76072ec 100644 --- a/apps/portfolio/base/deployment.yaml +++ b/apps/portfolio/base/deployment.yaml @@ -15,6 +15,7 @@ spec: spec: containers: - image: registry.int.nc.landry.land/portfolio-site + imagePullPolicy: Always name: portfolio-site ports: - containerPort: 8080 diff --git a/apps/portfolio/base/service.yaml b/apps/portfolio/base/service.yaml index f86b16a..2f02cb6 100644 --- a/apps/portfolio/base/service.yaml +++ b/apps/portfolio/base/service.yaml @@ -3,11 +3,11 @@ kind: Service metadata: annotations: labels: - name: syncthing + name: portfolio spec: ports: - name: http port: 80 targetPort: http selector: - app: syncthing + app: portfolio