mirror of
https://github.com/thejimnicholson/jenkins.git
synced 2025-12-06 03:30:43 +00:00
22 lines
533 B
YAML
22 lines
533 B
YAML
---
|
|
apiVersion: networking.k8s.io/v1beta1
|
|
kind: Ingress
|
|
metadata:
|
|
name: jenkins-ingress
|
|
namespace: jenkins
|
|
annotations:
|
|
kubernetes.io/ingress.class: "traefik"
|
|
traefik.ingress.kubernetes.io/redirect-entry-point: https
|
|
cert-manager.io/cluster-issuer: http-clusterissuer
|
|
spec:
|
|
rules:
|
|
- host: jenkins.thejimnicholson.com
|
|
http:
|
|
paths:
|
|
- backend:
|
|
serviceName: jenkins
|
|
servicePort: 8080
|
|
tls:
|
|
- hosts:
|
|
- jenkins.thejimnicholson.com
|
|
secretName: jenkins.thejimnicholson.com |