mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-07 05:51:17 +07:00
26 lines
613 B
YAML
26 lines
613 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: tekton-dashboard
|
|
namespace: tekton-pipelines
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
hajimari.io/appName: Tekton
|
|
hajimari.io/icon: robot-industrial
|
|
spec:
|
|
ingressClassName: nginx
|
|
rules:
|
|
- host: &host tekton.khuedoan.com
|
|
http:
|
|
paths:
|
|
- pathType: ImplementationSpecific
|
|
backend:
|
|
service:
|
|
name: tekton-dashboard
|
|
port:
|
|
name: http
|
|
tls:
|
|
- hosts:
|
|
- *host
|
|
secretName: tekton-tls-certificate
|