From e7eddc9a306e5d66451ef82efbeddc5196435703 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 27 Jul 2025 09:59:55 +0300 Subject: persistent volume example --- .../apache-ingress.yaml | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 f3s/example-apache-volume-claim/apache-ingress.yaml (limited to 'f3s/example-apache-volume-claim/apache-ingress.yaml') diff --git a/f3s/example-apache-volume-claim/apache-ingress.yaml b/f3s/example-apache-volume-claim/apache-ingress.yaml new file mode 100644 index 0000000..b26f95b --- /dev/null +++ b/f3s/example-apache-volume-claim/apache-ingress.yaml @@ -0,0 +1,41 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: apache-ingress + namespace: test + namespace: test + annotations: + spec.ingressClassName: traefik + traefik.ingress.kubernetes.io/router.entrypoints: web +spec: + rules: + - host: f3s.buetow.org + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: apache-service + port: + number: 80 + - host: standby.f3s.buetow.org + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: apache-service + port: + number: 80 + - host: www.f3s.buetow.org + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: apache-service + port: + number: 80 -- cgit v1.2.3