2021-10-16 06:31:19 +00:00
|
|
|
apiVersion: networking.k8s.io/v1
|
2021-04-04 17:51:59 +00:00
|
|
|
kind: Ingress
|
|
|
|
metadata:
|
|
|
|
name: argo
|
|
|
|
namespace: inlets
|
|
|
|
labels:
|
|
|
|
app: argo
|
|
|
|
annotations:
|
|
|
|
cert-manager.io/cluster-issuer: letsencrypt
|
2021-10-16 08:46:06 +00:00
|
|
|
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
|
2021-04-04 17:51:59 +00:00
|
|
|
spec:
|
2021-10-16 08:46:06 +00:00
|
|
|
ingressClassName: nginx
|
2021-04-04 17:51:59 +00:00
|
|
|
tls:
|
|
|
|
- hosts:
|
|
|
|
- argo.cluster.fun
|
|
|
|
secretName: argo-ingress
|
|
|
|
rules:
|
|
|
|
- host: argo.cluster.fun
|
|
|
|
http:
|
|
|
|
paths:
|
|
|
|
- path: /
|
2021-10-16 06:31:19 +00:00
|
|
|
pathType: ImplementationSpecific
|
2021-04-04 17:51:59 +00:00
|
|
|
backend:
|
2021-10-16 06:31:19 +00:00
|
|
|
service:
|
|
|
|
name: auth-proxy
|
|
|
|
port:
|
|
|
|
number: 80
|