2021-08-23 01:06:42 +07:00
|
|
|
apiVersion: networking.k8s.io/v1
|
|
|
|
kind: Ingress
|
|
|
|
metadata:
|
|
|
|
name: tekton-dashboard
|
|
|
|
namespace: tekton-pipelines
|
2021-12-05 23:03:53 +07:00
|
|
|
annotations:
|
2021-12-05 17:43:32 +07:00
|
|
|
cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
2021-08-23 01:06:42 +07:00
|
|
|
spec:
|
2021-11-29 21:16:27 +07:00
|
|
|
ingressClassName: nginx
|
2021-08-23 01:06:42 +07:00
|
|
|
rules:
|
2021-12-16 21:02:13 +07:00
|
|
|
- host: &host tekton.khuedoan.com
|
2021-08-23 01:06:42 +07:00
|
|
|
http:
|
|
|
|
paths:
|
|
|
|
- pathType: ImplementationSpecific
|
|
|
|
backend:
|
|
|
|
service:
|
|
|
|
name: tekton-dashboard
|
|
|
|
port:
|
2021-08-25 02:26:11 +07:00
|
|
|
name: http
|
|
|
|
tls:
|
|
|
|
- hosts:
|
2021-12-16 21:02:13 +07:00
|
|
|
- *host
|
2021-08-25 02:26:11 +07:00
|
|
|
secretName: tekton-tls-certificate
|