Files
porthole/argocd/porthole-application.yaml
OpenCode Test 3cbbe2c1d1 deploy: add ArgoCD deployment files
- 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
2025-12-24 12:51:06 -08:00

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