From 82c4659a489025432f65956968a630fe9ffb0c08 Mon Sep 17 00:00:00 2001 From: Matthias Hinrichs Date: Sun, 10 May 2026 17:57:02 +0200 Subject: [PATCH] added config --- .../local-path/application.yaml | 2 +- .../homelab-apps/httproute-everest.yaml | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 09_homelab_apps/homelab-apps/httproute-everest.yaml diff --git a/08_cluster_infrastructure/local-path/application.yaml b/08_cluster_infrastructure/local-path/application.yaml index 3b922f8..1491a65 100644 --- a/08_cluster_infrastructure/local-path/application.yaml +++ b/08_cluster_infrastructure/local-path/application.yaml @@ -21,7 +21,7 @@ spec: defaultClass: false # Hier definierst du, wo auf deinem Ryzen-Node die SSD liegt nodePathMap: - - node: DEFAULT_PATH_FOR_ALL_NODES + - node: DEFAULT_PATH_FOR_NON_LISTED_NODES paths: - /opt/local-path-provisioner syncPolicy: diff --git a/09_homelab_apps/homelab-apps/httproute-everest.yaml b/09_homelab_apps/homelab-apps/httproute-everest.yaml new file mode 100644 index 0000000..3125157 --- /dev/null +++ b/09_homelab_apps/homelab-apps/httproute-everest.yaml @@ -0,0 +1,19 @@ +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + name: everest-ui + namespace: everest-system +spec: + parentRefs: + - name: shared-gateway # Anpassen an dein Gateway + namespace: default + hostnames: + - "everest.k8s.hnrx.net" + rules: + - matches: + - path: + type: PathPrefix + value: / + backendRefs: + - name: everest + port: 8080 \ No newline at end of file