mirror of
https://github.com/vhaudiquet/homeprod.git
synced 2025-12-19 12:36:03 +00:00
34 lines
608 B
YAML
34 lines
608 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: webhook-receiver
|
|
namespace: flux-system
|
|
spec:
|
|
rules:
|
|
- host: flux-webhook.vhaudiquet.fr
|
|
http:
|
|
paths:
|
|
- pathType: Prefix
|
|
path: /
|
|
backend:
|
|
service:
|
|
name: webhook-receiver
|
|
port:
|
|
number: 80
|
|
---
|
|
apiVersion: notification.toolkit.fluxcd.io/v1
|
|
kind: Receiver
|
|
metadata:
|
|
name: homeprod
|
|
namespace: flux-system
|
|
spec:
|
|
type: github
|
|
events:
|
|
- "ping"
|
|
- "push"
|
|
secretRef:
|
|
name: webhook-token
|
|
resources:
|
|
- kind: GitRepository
|
|
name: homeprod
|