From 8417ea52da4cf386aaac4b8c04073f11b5fbc995 Mon Sep 17 00:00:00 2001
From: Martin Lowe <martin.lowe@eclipse-foundation.org>
Date: Wed, 8 Feb 2023 14:40:20 -0500
Subject: [PATCH] Fix production k8s conf referencing bad image name

---
 src/main/k8s/production.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/k8s/production.yml b/src/main/k8s/production.yml
index ede4ca7..7910fb4 100644
--- a/src/main/k8s/production.yml
+++ b/src/main/k8s/production.yml
@@ -11,7 +11,7 @@ spec:
     matchLabels:
       app: eclipsefdn-mailing-lists-api
       environment: production
-  replicas: 2
+  replicas: 1
   template:
     metadata:
       labels:
@@ -30,7 +30,7 @@ spec:
             weight: 1
       containers:
       - name: api
-        image: eclipsefdn/eclipsefdn-mailing-list-api:latest
+        image: eclipsefdn/eclipsefdn-mailing-lists-api:latest
         imagePullPolicy: Always
         ports:
         - containerPort: 8090
-- 
GitLab