From e8ceba34f153d5a8ba36401d3e600d0efbd89e58 Mon Sep 17 00:00:00 2001 From: Julius de Jeu Date: Mon, 23 May 2022 21:57:54 +0200 Subject: [PATCH] Fix port --- flux/cluster/apps/networking/traefik/helm.yaml | 8 ++++---- nixos/machines/nginx/default.nix | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/flux/cluster/apps/networking/traefik/helm.yaml b/flux/cluster/apps/networking/traefik/helm.yaml index 8ad32df..41d98f8 100644 --- a/flux/cluster/apps/networking/traefik/helm.yaml +++ b/flux/cluster/apps/networking/traefik/helm.yaml @@ -33,12 +33,12 @@ spec: port: 9000 expose: true web: - port: 80 - exposedPort: 80 + port: 8080 + exposedPort: 8080 expose: true websecure: - port: 443 - exposedPort: 443 + port: 8443 + exposedPort: 8443 expose: true pilot: enabled: false diff --git a/nixos/machines/nginx/default.nix b/nixos/machines/nginx/default.nix index 0db4ba6..9272fb9 100644 --- a/nixos/machines/nginx/default.nix +++ b/nixos/machines/nginx/default.nix @@ -22,7 +22,7 @@ let }; }; - k8sProxy = proxy "http://kubernetes.lxd:80/"; + k8sProxy = proxy "http://kubernetes.lxd:8080/"; in { imports = [ ../../common ../../common/lxc.nix ]; networking.hostName = "nginx";