commit 6c4d84fba84e9e4d5c3366d47e1950a629bac8a8 parent 8e0133fa954457229b22a9d8e4eb4202ccbeab5e Author: MTRNord <MTRNord@users.noreply.github.com> Date: Sun, 29 Jun 2025 20:21:16 +0200 Fix domain Diffstat:
| M | apps/base/matrix/connectivity-tester/kustomization.yaml | | | 4 | ++-- |
| M | apps/base/matrix/connectivity-tester/service.yaml | | | 32 | ++++++++------------------------ |
2 files changed, 10 insertions(+), 26 deletions(-)
diff --git a/apps/base/matrix/connectivity-tester/kustomization.yaml b/apps/base/matrix/connectivity-tester/kustomization.yaml @@ -3,9 +3,9 @@ kind: Kustomization namespace: matrix resources: - deployment.yaml - #- service.yaml + - service.yaml configMapGenerator: - name: connectivity-tester-config namespace: matrix files: - - config.json=config.json + - config.json=config.json diff --git a/apps/base/matrix/connectivity-tester/service.yaml b/apps/base/matrix/connectivity-tester/service.yaml @@ -1,23 +1,7 @@ -apiVersion: v1 -kind: Service -metadata: - name: connectivity-tester-api - namespace: matrix - labels: - app: connectivity-tester -spec: - selector: - app: connectivity-tester - ports: - - port: 8080 - targetPort: api - protocol: TCP - name: api ---- apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: - name: connectivity-tester-api + name: connectivity-tester-api-temp namespace: matrix spec: parentRefs: @@ -28,12 +12,12 @@ spec: - federationtester.mtrnord.blog rules: - matches: - - path: - value: /api - type: PathPrefix + - path: + value: /api + type: PathPrefix backendRefs: - - name: connectivity-tester - port: 8080 + - name: connectivity-tester-api-primary + port: 8080 timeouts: - request: 240s - backendRequest: 0s + request: 240s + backendRequest: 0s