From 329935dbb631fc23046ee2fb73b24c141ed50754 Mon Sep 17 00:00:00 2001 From: tom Date: Tue, 28 May 2024 15:44:30 +0000 Subject: [PATCH] KUSTOMIZE BUILD: rebuild dashboard deployment with kustomize 1003 (done automagically via Drone pipeline) [CI SKIP] --- dashboard/prod/dashboard.yaml | 6 ++++++ dashboard/staging/dashboard.yaml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/dashboard/prod/dashboard.yaml b/dashboard/prod/dashboard.yaml index f734f75..7eb7ace 100644 --- a/dashboard/prod/dashboard.yaml +++ b/dashboard/prod/dashboard.yaml @@ -49,6 +49,8 @@ spec: apiVersion: networking.k8s.io/v1 kind: Ingress metadata: + annotations: + kubernetes.io/tls-acme: "true" name: dashboard-ingress namespace: dashboard spec: @@ -63,3 +65,7 @@ spec: number: 80 path: / pathType: Prefix + tls: + - hosts: + - dashboard.services.yolokube.de + secretName: dashboard-tls-key diff --git a/dashboard/staging/dashboard.yaml b/dashboard/staging/dashboard.yaml index 07738ad..7f44146 100644 --- a/dashboard/staging/dashboard.yaml +++ b/dashboard/staging/dashboard.yaml @@ -49,6 +49,8 @@ spec: apiVersion: networking.k8s.io/v1 kind: Ingress metadata: + annotations: + kubernetes.io/tls-acme: "true" name: dashboard-ingress namespace: dashboard-staging spec: @@ -63,3 +65,7 @@ spec: number: 80 path: / pathType: Prefix + tls: + - hosts: + - dashboard-staging.services.yolokube.de + secretName: dashboard-tls-key