mirror of
https://github.com/ION606/argo-temp.git
synced 2026-05-14 20:06:53 +00:00
19 lines
767 B
YAML
19 lines
767 B
YAML
apiVersion: gateway.networking.k8s.io/v1
|
|
kind: HTTPRoute
|
|
metadata:
|
|
name: blahaj-routes
|
|
namespace: argocd
|
|
spec:
|
|
parentRefs: [{ name: blahaj-gw }]
|
|
rules:
|
|
- matches: [{ path: { type: PathPrefix, value: "/" } }]
|
|
backendRefs: [{ name: reef, port: 80 }]
|
|
- matches: [{ path: { type: PathPrefix, value: "/kelp" } }]
|
|
backendRefs: [{ name: kelp, port: 80 }]
|
|
- matches: [{ path: { type: PathPrefix, value: "/coral" } }]
|
|
backendRefs: [{ name: coral, port: 80 }]
|
|
- matches: [{ path: { type: PathPrefix, value: "/bubbles" } }]
|
|
backendRefs: [{ name: bubbles, port: 80 }]
|
|
- matches: [{ path: { type: PathPrefix, value: "/blahaj" } }]
|
|
backendRefs: [{ name: bubbles, port: 80 }]
|