diff --git a/manifests/auth-proxy/auth-proxy.yaml b/manifests/auth-proxy/auth-proxy.yaml index 5d66a93..cec8a24 100644 --- a/manifests/auth-proxy/auth-proxy.yaml +++ b/manifests/auth-proxy/auth-proxy.yaml @@ -110,7 +110,7 @@ spec: tailscale --socket=/tmp/tailscaled.sock up \ --accept-dns=true \ --authkey=${AUTH_KEY} \ - --hostname=auth-proxy + --hostname=auth-proxy-oauth2 echo "Re-enabling incoming traffic from the cluster" wait ${PID} --- diff --git a/manifests/auth-proxy/non-auth-proxy.yaml b/manifests/auth-proxy/non-auth-proxy.yaml index b8be46d..3b51c31 100644 --- a/manifests/auth-proxy/non-auth-proxy.yaml +++ b/manifests/auth-proxy/non-auth-proxy.yaml @@ -81,7 +81,7 @@ spec: tailscale --socket=/tmp/tailscaled.sock up \ --accept-dns=true \ --authkey=${AUTH_KEY} \ - --hostname=auth-proxy + --hostname=auth-proxy-internal-proxy wait ${PID} volumes: - name: host-mappings @@ -229,7 +229,7 @@ spec: tailscale --socket=/tmp/tailscaled.sock up \ --accept-dns=true \ --authkey=${AUTH_KEY} \ - --hostname=auth-proxy + --hostname=non-auth-proxy echo "Re-enabling incoming traffic from the cluster" wait ${PID} ---