add ingress for argo-server for app argo workflows

This commit is contained in:
2024-08-27 22:36:52 +10:00
parent ebb12d5098
commit 7aadca21b0
2 changed files with 23 additions and 1 deletions

View File

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

View File

@@ -11,4 +11,5 @@ resources:
- ./secret.yaml
- ./svc.yaml
- ./pc.yaml
- ./deployment.yaml
- ./deployment.yaml
- ./ingress.yaml