From 4b5eeca688462fcd833143f92b5e2052d7c2dcbd Mon Sep 17 00:00:00 2001 From: Conan Scott Date: Tue, 30 Dec 2025 17:17:16 +1100 Subject: [PATCH] restructured --- bootstrap/okd-tuning-application.yaml | 25 +++++++++++++++++++ .../openshift-monitoring-configmap.yaml | 0 .../system-memory-reservation.yaml | 0 3 files changed, 25 insertions(+) create mode 100644 bootstrap/okd-tuning-application.yaml rename openshift-monitoring-configmap.yaml => manifests/openshift-monitoring-configmap.yaml (100%) rename system-memory-reservation.yaml => manifests/system-memory-reservation.yaml (100%) diff --git a/bootstrap/okd-tuning-application.yaml b/bootstrap/okd-tuning-application.yaml new file mode 100644 index 0000000..218d6a8 --- /dev/null +++ b/bootstrap/okd-tuning-application.yaml @@ -0,0 +1,25 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: okd-tuning + namespace: openshift-gitops + annotations: + argocd.argoproj.io/sync-wave: "-5" +spec: + orphanedResources: + warn: false # Disable warning + project: infrastructure + destination: + server: https://kubernetes.default.svc + source: + repoURL: https://gitea.apilab.us/cscott/okd-tuning.git + targetRevision: main + path: manifests + syncPolicy: + automated: + prune: true + selfHeal: false + syncOptions: + - CreateNamespace=true + - ApplyOutOfSyncOnly=true + - PruneLast=true diff --git a/openshift-monitoring-configmap.yaml b/manifests/openshift-monitoring-configmap.yaml similarity index 100% rename from openshift-monitoring-configmap.yaml rename to manifests/openshift-monitoring-configmap.yaml diff --git a/system-memory-reservation.yaml b/manifests/system-memory-reservation.yaml similarity index 100% rename from system-memory-reservation.yaml rename to manifests/system-memory-reservation.yaml