chore(bootstrap): First bootstrap for Artimis cluster

This commit is contained in:
Daniël Groothuis
2025-10-23 10:35:44 +02:00
parent 011de43065
commit 05cc640d32
9 changed files with 206 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
---
apiVersion: argoproj.io/v1alpha1
kind: AppProject
metadata:
name: ArgoCD
namespace: argocd
spec:
description: CI/CD Engine
sourceRepos:
- '*'
sourceNamespaces:
- '*'
destinations:
- namespace: '*'
server: '*'
clusterResourceWhitelist:
- group: '*'
kind: '*'

View File

@@ -0,0 +1,24 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: ArgoCD
namespace: argocd
labels:
platform.dgse.cloud/cluster: artimis
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: ArgoCD
source:
repoURL: 'https://git.dgse.cloud/DGSE/kubernetes.git'
path: manifests/artimis/argocd
targetRevision: HEAD
destination:
namespace: argocd
name: in-cluster
syncPolicy:
syncOptions:
- CreateNamespace=true
automated:
prune: true
selfHeal: true

View File

@@ -0,0 +1,7 @@
---
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- app-project.yaml
- application.yaml