fix weave-gitops app

This commit is contained in:
2024-06-18 11:16:04 +10:00
parent 33aa120d91
commit 956ff9fc47
4 changed files with 90 additions and 39 deletions

View File

@@ -0,0 +1,31 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: weave-gitops-ingress
namespace: weave-gitops
annotations:
nginx.ingress.kubernetes.io/ssl-redirect: "false"
nginx.ingress.kubernetes.io/use-regex: "true"
spec:
ingressClassName: nginx
rules:
- host: "weave-gitops.edward.sydney"
http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: weave-gitops
port:
number: 9001
- host: "weave-gitops.cluster.local"
http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: weave-gitops
port:
number: 9001