From fc00bd5b4a7905d9170c1a9992ca045d893190ae Mon Sep 17 00:00:00 2001 From: Conan Scott Date: Tue, 30 Dec 2025 20:47:52 +1100 Subject: [PATCH] re-org for argo --- bootstrap/n8n-application.yaml | 22 +++++++++++++++++++ deploy.sh => manifests/deploy.sh | 0 .../n8n-deployment.yaml | 0 n8n-pvc.yaml => manifests/n8n-pvc.yaml | 0 .../n8n-service.yaml | 0 namespace.yaml => manifests/namespace.yaml | 0 ...postgres-claim0-persistentvolumeclaim.yaml | 0 .../postgres-configmap.yaml | 0 .../postgres-deployment.yaml | 0 .../postgres-secret.yaml | 0 .../postgres-service.yaml | 0 route.yaml => manifests/route.yaml | 0 scc-updates.sh => manifests/scc-updates.sh | 0 13 files changed, 22 insertions(+) create mode 100644 bootstrap/n8n-application.yaml rename deploy.sh => manifests/deploy.sh (100%) rename n8n-deployment.yaml => manifests/n8n-deployment.yaml (100%) rename n8n-pvc.yaml => manifests/n8n-pvc.yaml (100%) rename n8n-service.yaml => manifests/n8n-service.yaml (100%) rename namespace.yaml => manifests/namespace.yaml (100%) rename postgres-claim0-persistentvolumeclaim.yaml => manifests/postgres-claim0-persistentvolumeclaim.yaml (100%) rename postgres-configmap.yaml => manifests/postgres-configmap.yaml (100%) rename postgres-deployment.yaml => manifests/postgres-deployment.yaml (100%) rename postgres-secret.yaml => manifests/postgres-secret.yaml (100%) rename postgres-service.yaml => manifests/postgres-service.yaml (100%) rename route.yaml => manifests/route.yaml (100%) rename scc-updates.sh => manifests/scc-updates.sh (100%) diff --git a/bootstrap/n8n-application.yaml b/bootstrap/n8n-application.yaml new file mode 100644 index 0000000..528d289 --- /dev/null +++ b/bootstrap/n8n-application.yaml @@ -0,0 +1,22 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: n8n + namespace: openshift-gitops +spec: + project: default + destination: + server: https://kubernetes.default.svc + namespace: n8n + source: + repoURL: https://gitea.apilab.us/cscott/n8n.git + targetRevision: main + path: . + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true + - ApplyOutOfSyncOnly=true + - PruneLast=true diff --git a/deploy.sh b/manifests/deploy.sh similarity index 100% rename from deploy.sh rename to manifests/deploy.sh diff --git a/n8n-deployment.yaml b/manifests/n8n-deployment.yaml similarity index 100% rename from n8n-deployment.yaml rename to manifests/n8n-deployment.yaml diff --git a/n8n-pvc.yaml b/manifests/n8n-pvc.yaml similarity index 100% rename from n8n-pvc.yaml rename to manifests/n8n-pvc.yaml diff --git a/n8n-service.yaml b/manifests/n8n-service.yaml similarity index 100% rename from n8n-service.yaml rename to manifests/n8n-service.yaml diff --git a/namespace.yaml b/manifests/namespace.yaml similarity index 100% rename from namespace.yaml rename to manifests/namespace.yaml diff --git a/postgres-claim0-persistentvolumeclaim.yaml b/manifests/postgres-claim0-persistentvolumeclaim.yaml similarity index 100% rename from postgres-claim0-persistentvolumeclaim.yaml rename to manifests/postgres-claim0-persistentvolumeclaim.yaml diff --git a/postgres-configmap.yaml b/manifests/postgres-configmap.yaml similarity index 100% rename from postgres-configmap.yaml rename to manifests/postgres-configmap.yaml diff --git a/postgres-deployment.yaml b/manifests/postgres-deployment.yaml similarity index 100% rename from postgres-deployment.yaml rename to manifests/postgres-deployment.yaml diff --git a/postgres-secret.yaml b/manifests/postgres-secret.yaml similarity index 100% rename from postgres-secret.yaml rename to manifests/postgres-secret.yaml diff --git a/postgres-service.yaml b/manifests/postgres-service.yaml similarity index 100% rename from postgres-service.yaml rename to manifests/postgres-service.yaml diff --git a/route.yaml b/manifests/route.yaml similarity index 100% rename from route.yaml rename to manifests/route.yaml diff --git a/scc-updates.sh b/manifests/scc-updates.sh similarity index 100% rename from scc-updates.sh rename to manifests/scc-updates.sh