From 844ac8e4992fe37dd348bda1fb07dcffa6014517 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bompard?= Date: Wed, 17 Jan 2024 10:32:21 +0100 Subject: [PATCH] Mirrormanager: fix sevice name to map the route config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Aurélien Bompard --- roles/openshift-apps/mirrormanager/files/service.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/openshift-apps/mirrormanager/files/service.yml b/roles/openshift-apps/mirrormanager/files/service.yml index a4e99499a4..48644a2f08 100644 --- a/roles/openshift-apps/mirrormanager/files/service.yml +++ b/roles/openshift-apps/mirrormanager/files/service.yml @@ -1,14 +1,14 @@ apiVersion: v1 kind: Service metadata: - name: web + name: frontend labels: app: mirrormanager spec: + selector: + app: mirrormanager + deploymentconfig: frontend ports: - name: web port: 8080 targetPort: 8080 - selector: - app: mirrormanager - deploymentconfig: frontend