mirror of
https://github.com/amkartashov/gf-k8s.git
synced 2026-01-10 17:39:43 +00:00
argocd: fix ingress api version
This commit is contained in:
parent
61d651f33d
commit
46d9aa5051
1 changed files with 8 additions and 4 deletions
|
|
@ -1,5 +1,5 @@
|
|||
# https://argoproj.github.io/argo-cd/operator-manual/ingress/#ssl-passthrough-with-cert-manager-and-lets-encrypt
|
||||
apiVersion: networking.k8s.io/v1beta1
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: argocd-server-ingress
|
||||
|
|
@ -13,9 +13,13 @@ spec:
|
|||
rules:
|
||||
- http:
|
||||
paths:
|
||||
- backend:
|
||||
serviceName: argocd-server
|
||||
servicePort: https
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: argocd-server
|
||||
port:
|
||||
name: https
|
||||
host: argocd.gorilych.ru
|
||||
tls:
|
||||
- hosts:
|
||||
|
|
|
|||
Loading…
Reference in a new issue