Merge pull request #864 from 3dwardch3ng/infra/argo-workflow

add ingress for argo-server for app argo workflows
This commit is contained in:
2024-08-27 22:37:22 +10:00
committed by GitHub
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

@@ -12,3 +12,4 @@ resources:
- ./svc.yaml
- ./pc.yaml
- ./deployment.yaml
- ./ingress.yaml