mirror of
https://github.com/amkartashov/gf-k8s.git
synced 2026-01-11 01:49:44 +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
|
# 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
|
kind: Ingress
|
||||||
metadata:
|
metadata:
|
||||||
name: argocd-server-ingress
|
name: argocd-server-ingress
|
||||||
|
|
@ -13,9 +13,13 @@ spec:
|
||||||
rules:
|
rules:
|
||||||
- http:
|
- http:
|
||||||
paths:
|
paths:
|
||||||
- backend:
|
- path: /
|
||||||
serviceName: argocd-server
|
pathType: Prefix
|
||||||
servicePort: https
|
backend:
|
||||||
|
service:
|
||||||
|
name: argocd-server
|
||||||
|
port:
|
||||||
|
name: https
|
||||||
host: argocd.gorilych.ru
|
host: argocd.gorilych.ru
|
||||||
tls:
|
tls:
|
||||||
- hosts:
|
- hosts:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue