From 40b3649e18a203a4f0a0b9cf3e46d5da2b4d8160 Mon Sep 17 00:00:00 2001 From: Flux <> Date: Tue, 3 Sep 2024 15:31:57 +0200 Subject: [PATCH] Add Flux sync manifests --- .../flux-system/gotk-sync.yaml | 27 +++++++++++++++++++ .../flux-system/kustomization.yaml | 5 ++++ 2 files changed, 32 insertions(+) create mode 100644 clusters/ethereum-node-automation/flux-system/gotk-sync.yaml create mode 100644 clusters/ethereum-node-automation/flux-system/kustomization.yaml diff --git a/clusters/ethereum-node-automation/flux-system/gotk-sync.yaml b/clusters/ethereum-node-automation/flux-system/gotk-sync.yaml new file mode 100644 index 0000000..9878a57 --- /dev/null +++ b/clusters/ethereum-node-automation/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: ethereum-node-automation-poc + secretRef: + name: flux-system + url: ssh://git@github.com/Smorci/ethereum-node-automation +--- +apiVersion: kustomize.toolkit.fluxcd.io/v1 +kind: Kustomization +metadata: + name: flux-system + namespace: flux-system +spec: + interval: 10m0s + path: ./clusters/ethereum-node-automation + prune: true + sourceRef: + kind: GitRepository + name: flux-system diff --git a/clusters/ethereum-node-automation/flux-system/kustomization.yaml b/clusters/ethereum-node-automation/flux-system/kustomization.yaml new file mode 100644 index 0000000..3842229 --- /dev/null +++ b/clusters/ethereum-node-automation/flux-system/kustomization.yaml @@ -0,0 +1,5 @@ +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +resources: +- gotk-components.yaml +- gotk-sync.yaml