commit bbebce5663aadb6a016d0b894f15479c91a80c70 parent 6e2ca37ac2edbeeb035802e469097b2f2edf29ca Author: MTRNord <MTRNord@users.noreply.github.com> Date: Sat, 13 Dec 2025 16:18:28 +0100 unify stage and beta Signed-off-by: MTRNord <MTRNord@users.noreply.github.com> Diffstat:
| M | apps/talos_cluster/connectivity-tester/kustomization.yaml | | | 1 | - |
| M | apps/talos_cluster/connectivity-tester/staging_deployment.yaml | | | 1 | + |
| D | apps/talos_cluster/connectivity-tester/tester-v2.yaml | | | 82 | ------------------------------------------------------------------------------- |
3 files changed, 1 insertion(+), 83 deletions(-)
diff --git a/apps/talos_cluster/connectivity-tester/kustomization.yaml b/apps/talos_cluster/connectivity-tester/kustomization.yaml @@ -6,7 +6,6 @@ resources: - staging_deployment.yaml - deployment.yaml - service.yaml - - tester-v2.yaml configMapGenerator: - name: connectivity-tester-config namespace: matrix diff --git a/apps/talos_cluster/connectivity-tester/staging_deployment.yaml b/apps/talos_cluster/connectivity-tester/staging_deployment.yaml @@ -155,6 +155,7 @@ spec: namespace: envoy-gateway hostnames: - stage.connectivity-tester.mtrnord.blog + - beta.connectivity-tester.mtrnord.blog rules: - matches: - path: diff --git a/apps/talos_cluster/connectivity-tester/tester-v2.yaml b/apps/talos_cluster/connectivity-tester/tester-v2.yaml @@ -1,82 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: connectivity-tester-v2 - namespace: matrix -spec: - selector: - matchLabels: - app: connectivity-tester-v2 - template: - metadata: - labels: - app: connectivity-tester-v2 - spec: - containers: - - name: connectivity-tester-v2 - image: ghcr.io/mtrnord/matrix-connection-tester-ui:main - imagePullPolicy: Always - resources: - limits: {} - requests: - memory: "344Mi" - cpu: "252m" - ports: - - containerPort: 8000 - name: web - protocol: TCP - livenessProbe: - httpGet: - path: / - port: web - scheme: HTTP - readinessProbe: - httpGet: - path: / - port: web - scheme: HTTP - startupProbe: - httpGet: - path: / - port: web - volumeMounts: - - name: configs - mountPath: "/app/_fresh/client/config.json" - subPath: config.json - readOnly: true - volumes: - - name: configs - configMap: - name: connectivity-tester-config ---- -apiVersion: v1 -kind: Service -metadata: - name: connectivity-tester-v2 - namespace: matrix -spec: - selector: - app: connectivity-tester-v2 - ports: - - name: web - port: 8000 - targetPort: 8000 ---- -apiVersion: gateway.networking.k8s.io/v1 -kind: HTTPRoute -metadata: - name: connectivity-tester-v2 - namespace: matrix -spec: - parentRefs: - - name: envoy-gateway - namespace: envoy-gateway - hostnames: - - beta.connectivity-tester.mtrnord.blog - rules: - - backendRefs: - - name: connectivity-tester-v2 - port: 8000 - timeouts: - request: 240s - backendRequest: 0s