From fb7cbc0edb4b6de7abacf229094f33fd35baf1a0 Mon Sep 17 00:00:00 2001 From: Sergio Talens-Oliag Date: Thu, 8 May 2025 09:47:09 +0200 Subject: [PATCH] fix: update the traefik-cert.sh script to use the lo.mixinet.net domain --- bin/traefik-cert.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/traefik-cert.sh b/bin/traefik-cert.sh index 599c53d..81495ad 100755 --- a/bin/traefik-cert.sh +++ b/bin/traefik-cert.sh @@ -1,8 +1,8 @@ #!/bin/sh # Script to update the -secret="localhost-mixinet-net-ingress-cert" -cert="${1:-localhost.mixinet.net.crt}" -key="${2:-localhost.mixinet.net.key}" +secret="lo-mixinet-net-ingress-cert" +cert="${1:-lo.mixinet.net.crt}" +key="${2:-lo.mixinet.net.key}" if [ -f "$cert" ] && [ -f "$key" ]; then kubectl -n kube-system create secret tls $secret \ --key=$key \