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