29 lines
556 B
YAML
29 lines
556 B
YAML
|
---
|
||
|
apiVersion: source.toolkit.fluxcd.io/v1beta1
|
||
|
kind: GitRepository
|
||
|
metadata:
|
||
|
name: traefik-crd-source
|
||
|
namespace: flux-system
|
||
|
spec:
|
||
|
interval: 30m
|
||
|
url: https://github.com/traefik/traefik-helm-chart.git
|
||
|
ref:
|
||
|
tag: v10.19.5
|
||
|
ignore: |
|
||
|
# exclude all
|
||
|
/*
|
||
|
# path to crds
|
||
|
!/traefik/crds/
|
||
|
---
|
||
|
apiVersion: kustomize.toolkit.fluxcd.io/v1beta2
|
||
|
kind: Kustomization
|
||
|
metadata:
|
||
|
name: traefik-crds
|
||
|
namespace: flux-system
|
||
|
spec:
|
||
|
interval: 15m
|
||
|
prune: false
|
||
|
wait: true
|
||
|
sourceRef:
|
||
|
kind: GitRepository
|
||
|
name: traefik-crd-source
|