kustomize
This commit is contained in:
@@ -1,29 +1,22 @@
|
||||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: ApplicationSet
|
||||
kind: Application
|
||||
metadata:
|
||||
name: infrastructure-apps
|
||||
name: infrastructure-app-of-apps
|
||||
namespace: argocd
|
||||
spec:
|
||||
goTemplate: true
|
||||
generators:
|
||||
- git:
|
||||
repoURL: https://github.com/snothub/sturdy-adventure.git
|
||||
revision: HEAD
|
||||
directories:
|
||||
- path: argocd/infra/*.yaml
|
||||
template:
|
||||
metadata:
|
||||
name: "{{ .path.basenameNormalized }}"
|
||||
labels:
|
||||
app.kubernetes.io/name: "{{ .path.basenameNormalized }}"
|
||||
app.kubernetes.io/name: infrastructure-app-of-apps
|
||||
app.kubernetes.io/part-of: platform
|
||||
app.kubernetes.io/managed-by: argocd
|
||||
spec:
|
||||
annotations:
|
||||
argocd.argoproj.io/sync-wave: "-1"
|
||||
spec:
|
||||
project: default
|
||||
source:
|
||||
repoURL: https://github.com/snothub/sturdy-adventure.git
|
||||
repoURL: https://github.com/fortedigital/sturdy-adventure.git
|
||||
targetRevision: HEAD
|
||||
path: "{{ .path.dir }}"
|
||||
path: argocd
|
||||
kustomize:
|
||||
enable: true
|
||||
destination:
|
||||
server: https://kubernetes.default.svc
|
||||
namespace: argocd
|
||||
@@ -35,6 +28,7 @@ spec:
|
||||
- CreateNamespace=true
|
||||
- Validate=true
|
||||
- ServerSideApply=true
|
||||
timeout: 300s
|
||||
retry:
|
||||
limit: 5
|
||||
backoff:
|
||||
|
||||
23
argocd/kustomization.yaml
Normal file
23
argocd/kustomization.yaml
Normal file
@@ -0,0 +1,23 @@
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
metadata:
|
||||
name: infrastructure
|
||||
|
||||
# Include all infrastructure Application manifests as-is (no templating or modification)
|
||||
resources:
|
||||
# Platform components
|
||||
- infra/traefik-application.yaml
|
||||
- infra/cert-manager-application.yaml
|
||||
- infra/cluster-resources-application.yaml
|
||||
- infra/kyverno.yaml
|
||||
- infra/sealedsecrets.yaml
|
||||
- infra/trivy.yaml
|
||||
|
||||
# Monitoring stack
|
||||
- infra/prometheus.yaml
|
||||
- infra/grafana.yaml
|
||||
- infra/loki.yaml
|
||||
- infra/fluent-bit.yaml
|
||||
|
||||
# Business applications (currently empty, will auto-include any YAML files added)
|
||||
- apps/
|
||||
Reference in New Issue
Block a user