From b5dc13020761d01e1173a66d1e915413be4f93c3 Mon Sep 17 00:00:00 2001 From: Hermes Agent service account Date: Fri, 12 Jun 2026 16:18:34 -0500 Subject: [PATCH] fix(connections): correct deployment naming per mk-labs convention MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Deployment name: connections → signal-cli-rest-api (what it IS) Service name: connections (unchanged - Epcot-themed role) Updated labels throughout deployment and service selector to match. --- cluster/platform/connections/deployment.yaml | 8 ++++---- cluster/platform/connections/service.yaml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cluster/platform/connections/deployment.yaml b/cluster/platform/connections/deployment.yaml index 8a684ec..c48a610 100644 --- a/cluster/platform/connections/deployment.yaml +++ b/cluster/platform/connections/deployment.yaml @@ -1,10 +1,10 @@ apiVersion: apps/v1 kind: Deployment metadata: - name: connections + name: signal-cli-rest-api namespace: connections labels: - app.kubernetes.io/name: connections + app.kubernetes.io/name: signal-cli-rest-api app.kubernetes.io/component: messaging-gateway app.kubernetes.io/version: "0.85" # Pin version initially spec: @@ -13,11 +13,11 @@ spec: type: Recreate # Prevents dual mount of PVC selector: matchLabels: - app.kubernetes.io/name: connections + app.kubernetes.io/name: signal-cli-rest-api template: metadata: labels: - app.kubernetes.io/name: connections + app.kubernetes.io/name: signal-cli-rest-api app.kubernetes.io/component: messaging-gateway spec: containers: diff --git a/cluster/platform/connections/service.yaml b/cluster/platform/connections/service.yaml index b3f1ab2..c3f30d9 100644 --- a/cluster/platform/connections/service.yaml +++ b/cluster/platform/connections/service.yaml @@ -14,4 +14,4 @@ spec: protocol: TCP name: http selector: - app.kubernetes.io/name: connections + app.kubernetes.io/name: signal-cli-rest-api