Skip to content
Snippets Groups Projects
Commit 630935b1 authored by Nico Benjamin Pögel's avatar Nico Benjamin Pögel
Browse files

added routing rules for the myaktion ingress route.

parent 7209119a
No related branches found
No related tags found
No related merge requests found
......@@ -9,12 +9,35 @@ metadata:
spec:
routes:
- kind: Rule
match: PathPrefix(`/campaigns`)
match: Path(`/campaigns/[0-9]{1,}/dontations`) && Method(`POST`)
services:
- kind: Service
name: myaktion-service
namespace: default
port: 8080
- kind: Rule
match: Path(`/campaigns/[0-9]{1,}/dontations`) && Method(`GET`)
middlewares:
- name: fw-auth-mw
namespace: default
services:
- kind: Service
name: myaktion-service
namespace: default
port: 8080
- kind: Rule
match: Path(`/campaigns`) || Path(`/campaigns/[0-9]{1,}`)
middlewares:
- name: fw-auth-mw
namespace: default
services:
- kind: Service
name: myaktion-service
namespace: default
port: 8080
- kind: Rule
match: PathPrefix(`/monitor.html`)
services:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment