From c32846b4db10f863703125648b8ecabd31cc968d Mon Sep 17 00:00:00 2001 From: erik Date: Thu, 10 Aug 2023 14:20:49 +0200 Subject: [PATCH] Add taiga-protected-service, consistent labels --- .../taiga/taiga-protected-deployment.yaml | 1 + .../taiga/taiga-protected-service.yaml | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 src/main/resources/taiga/taiga-protected-service.yaml diff --git a/src/main/resources/taiga/taiga-protected-deployment.yaml b/src/main/resources/taiga/taiga-protected-deployment.yaml index a0cf74f..3f78384 100644 --- a/src/main/resources/taiga/taiga-protected-deployment.yaml +++ b/src/main/resources/taiga/taiga-protected-deployment.yaml @@ -4,6 +4,7 @@ metadata: name: taiga-protected-deployment labels: app.kubernetes.part-of: c4k-taiga + app.kubernetes.io/component: taiga-protected spec: replicas: 1 selector: diff --git a/src/main/resources/taiga/taiga-protected-service.yaml b/src/main/resources/taiga/taiga-protected-service.yaml new file mode 100644 index 0000000..d84f539 --- /dev/null +++ b/src/main/resources/taiga/taiga-protected-service.yaml @@ -0,0 +1,18 @@ +kind: Service +apiVersion: v1 +metadata: + name: taiga-protected-service + labels: + app.kubernetes.part-of: c4k-taiga + app.kubernetes.io/component: taiga-protected + namespace: default +spec: + type: ClusterIP + selector: + app.kubernetes.io/component: taiga-protected + ports: + - name: http + targetPort: http + port: 8003 + protocol: TCP + \ No newline at end of file