From e5d10dc3334e5e25b2697b4e357a2a5236e5db9a Mon Sep 17 00:00:00 2001 From: Flux <> Date: Sat, 28 Oct 2023 02:08:19 +0100 Subject: [PATCH] Add Flux sync manifests --- clusters/kind/flux-system/gotk-sync.yaml | 27 ++++++++++++++++++++ clusters/kind/flux-system/kustomization.yaml | 5 ++++ 2 files changed, 32 insertions(+) create mode 100644 clusters/kind/flux-system/gotk-sync.yaml create mode 100644 clusters/kind/flux-system/kustomization.yaml diff --git a/clusters/kind/flux-system/gotk-sync.yaml b/clusters/kind/flux-system/gotk-sync.yaml new file mode 100644 index 0000000..5959330 --- /dev/null +++ b/clusters/kind/flux-system/gotk-sync.yaml @@ -0,0 +1,27 @@ +# This manifest was generated by flux. DO NOT EDIT. +--- +apiVersion: source.toolkit.fluxcd.io/v1 +kind: GitRepository +metadata: + name: flux-system + namespace: flux-system +spec: + interval: 1m0s + ref: + branch: main + secretRef: + name: flux-system + url: ssh://git@gitea.home.joemonk.co.uk:2222/joe/gitops.git +--- +apiVersion: kustomize.toolkit.fluxcd.io/v1 +kind: Kustomization +metadata: + name: flux-system + namespace: flux-system +spec: + interval: 10m0s + path: ./clusters/kind + prune: true + sourceRef: + kind: GitRepository + name: flux-system diff --git a/clusters/kind/flux-system/kustomization.yaml b/clusters/kind/flux-system/kustomization.yaml new file mode 100644 index 0000000..3842229 --- /dev/null +++ b/clusters/kind/flux-system/kustomization.yaml @@ -0,0 +1,5 @@ +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +resources: +- gotk-components.yaml +- gotk-sync.yaml