30 lines
1014 B
YAML
30 lines
1014 B
YAML
# Bootstrap Application, applied once by hand (like app-of-projects.yaml
|
|
# and app-of-secretstores.yaml) — ArgoCD can't sync its own entry points.
|
|
# General-purpose spot for occasional raw Kubernetes manifests that don't
|
|
# fit the Helm-chart-per-app pattern this repo otherwise uses, and don't
|
|
# belong under secretstores/ (that one's scoped to External Secrets
|
|
# Operator resources specifically). First use: a second Ingress for
|
|
# Harbor's Tailscale hostname, since that chart has no multi-host support
|
|
# of its own to hang it off.
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: app-of-extra-manifests
|
|
namespace: argocd
|
|
finalizers:
|
|
- resources-finalizer.argocd.argoproj.io
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: 'http://gitea.192.168.1.7.nip.io/mukul/devops-infra-argo-config.git'
|
|
targetRevision: main
|
|
path: extra-manifests
|
|
directory:
|
|
recurse: true
|
|
destination:
|
|
name: in-cluster
|
|
namespace: argocd
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|