Skip to content

Commit

Permalink
Set up ArgoCD (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyrofab authored Aug 13, 2024
1 parent 54d5929 commit 590670e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions argocd/IngressRoute.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
name: argocd-server
namespace: argocd
spec:
entryPoints:
- websecure
routes:
- kind: Rule
match: Host(`argocd.quiltmc.net`)
priority: 10
services:
- name: argocd-server
port: 80
# Note: this rule is currently unused as Cloudflare does not support Grpc on tunnels
# (https://developers.cloudflare.com/network/grpc-connections/#limitations)
- kind: Rule
match: Host(`argocd.quiltmc.net`) && Headers(`Content-Type`, `application/grpc`)
priority: 11
services:
- name: argocd-server
port: 80
scheme: h2c
tls:
certResolver: default

0 comments on commit 590670e

Please sign in to comment.