Files
kubernetes/dch-webhooks/ingress.yaml
Dustin C. Hatch 9b441738d4 dch-webhooks: Disable HTTPS redirect
The [Generic Event][0] plugin for Jenkins does not support HTTPS
webhooks, only plain HTTP.

[0]: https://plugins.jenkins.io/generic-event/
2024-01-22 16:55:03 -06:00

30 lines
641 B
YAML

---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
nginx.ingress.kubernetes.io/ssl-redirect: "false"
labels:
app.kubernetes.io/name: dch-webhooks
app.kubernetes.io/component: dch-webhooks
app.kubernetes.io/instance: dch-webhooks
app.kubernetes.io/part-of: dch-webhooks
name: dch-webhooks
spec:
ingressClassName: nginx
tls:
- hosts:
- webhooks.pyrocufflink.blue
rules:
- host: webhooks.pyrocufflink.blue
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: dch-webhooks
port:
name: http