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