Skip to content

Commit

Permalink
feat: adding base ingress for argo workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
andrrax committed Feb 28, 2024
1 parent ac2ef46 commit 67c0c5b
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
26 changes: 26 additions & 0 deletions components/11-argo-workflows/ingress.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: argo-workflows
annotations:
cert-manager.io/cluster-issuer: selfsigned-cluster-issuer
nginx.ingress.kubernetes.io/backend-protocol: "HTTPS"
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
spec:
ingressClassName: nginx
rules:
- host: argo-workflows.local
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: argo-server
port:
number: 2746
tls:
- hosts:
- argo-workflows.local
secretName: argo-workflows-ingress-tls
1 change: 1 addition & 0 deletions components/11-argo-workflows/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ kind: Kustomization

resources:
- https://github.com/argoproj/argo-workflows/releases/download/v3.5.4/namespace-install.yaml
- ingress.yaml

0 comments on commit 67c0c5b

Please sign in to comment.