Skip to content

Commit

Permalink
Update ingress.md to work wirth traefik 3.0 (#18103)
Browse files Browse the repository at this point in the history
Signed-off-by: pgumpoldsberger <60177408+pgumpoldsberger@users.noreply.github.com>
  • Loading branch information
pgumpoldsberger committed May 7, 2024
1 parent 82db166 commit 20fada8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/operator-manual/ingress.md
Expand Up @@ -350,7 +350,7 @@ the API server -- one for gRPC and the other for HTTP/HTTPS. However it allows T
happen at the ingress controller.


## [Traefik (v2.2)](https://docs.traefik.io/)
## [Traefik (v3.0)](https://docs.traefik.io/)

Traefik can be used as an edge router and provide [TLS](https://docs.traefik.io/user-guides/grpc/) termination within the same deployment.

Expand All @@ -360,7 +360,7 @@ The API server should be run with TLS disabled. Edit the `argocd-server` deploym

### IngressRoute CRD
```yaml
apiVersion: traefik.containo.us/v1alpha1
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: argocd-server
Expand All @@ -376,7 +376,7 @@ spec:
- name: argocd-server
port: 80
- kind: Rule
match: Host(`argocd.example.com`) && Headers(`Content-Type`, `application/grpc`)
match: Host(`argocd.example.com`) && Header(`Content-Type`, `application/grpc`)
priority: 11
services:
- name: argocd-server
Expand Down

0 comments on commit 20fada8

Please sign in to comment.