- Remove argocd/ and helm-values/ subdirectories - Move files to parent directory (argocd.yaml, helm-values.yaml) - Update helm valueFiles paths in ArgoCD Applications - Remove CreateNamespace=true from all applications - Namespace creation now handled by namespace.yaml with Goldilocks labels
19 lines
387 B
YAML
19 lines
387 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
resources:
|
|
# Namespace with Goldilocks label
|
|
- namespace.yaml
|
|
|
|
# Gitea Runner
|
|
- deployment.yaml
|
|
|
|
# Vault secrets
|
|
- vault/gitea-admin-secret.yaml
|
|
- vault/gitea-postgres-password.yaml
|
|
- vault/gitea-runner-token.yaml
|
|
- vault/gitea-minio-credentials.yaml
|
|
- vault/minio-root-password.yaml
|
|
|
|
namespace: gitea
|