- Added values-porthole.yaml.example for cluster-specific configuration - Updated ArgoCD Application to use values-porthole.yaml - Added ARGOCD_DEPLOY.md with deployment guide and troubleshooting
27 lines
588 B
YAML
27 lines
588 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: porthole
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: git@gitea-ssh.gitea.svc:will/porthole.git
|
|
targetRevision: main
|
|
path: helm/porthole
|
|
helm:
|
|
releaseName: porthole
|
|
valueFiles:
|
|
- values.yaml
|
|
- ../../argocd/values-porthole.yaml
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: porthole
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=false
|
|
- ApplyOutOfSyncOnly=true
|