Initial boostrap

This commit is contained in:
2025-11-28 23:15:28 +05:30
commit ca3ed48737
4 changed files with 38 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
Version: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- app.yaml
+18
View File
@@ -0,0 +1,18 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: root-app
namespace: argocd
spec:
project: default
source:
repoURL: https://gitea.whyredfire.tech/whyredfire/gitops
targetRevision: main
path: apps
destination:
server: https://kubernetes.default.svc
namespace: argocd
syncPolicy:
automated:
prune: true
selfHeal: true
+11
View File
@@ -0,0 +1,11 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: argocd
resources:
- namespace.yaml
# ArgoCD installation
- https://raw.githubusercontent.com/argoproj/argo-cd/v3.2.0/manifests/install.yaml
# Bootstrap the app-of-apps
- argocd-apps
+4
View File
@@ -0,0 +1,4 @@
apiVersion: v1
kind: Namespace
metadata:
name: argocd