- Vagrantfile: Ubuntu 24.04, k3s (no traefik/servicelb), Helm, yq, host-only 192.168.56.10, pre-pulls key images - scripts/bootstrap.sh: installs ArgoCD via Helm, applies root app - apps/project.yaml: permissive AppProject for workshop - apps/root.yaml: App-of-Apps watching apps/ directory - apps/argocd.yaml: ArgoCD self-manages via Helm chart 7.7.11 - manifests/argocd/values.yaml: insecure mode, port-forward access
36 lines
878 B
YAML
36 lines
878 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: argocd
|
|
namespace: argocd
|
|
annotations:
|
|
argocd.argoproj.io/sync-wave: "0"
|
|
spec:
|
|
project: workshop
|
|
source:
|
|
repoURL: https://argoproj.github.io/argo-helm
|
|
chart: argo-cd
|
|
targetRevision: "7.7.11"
|
|
helm:
|
|
valueFiles:
|
|
- $values/manifests/argocd/values.yaml
|
|
sources:
|
|
- repoURL: https://argoproj.github.io/argo-helm
|
|
chart: argo-cd
|
|
targetRevision: "7.7.11"
|
|
helm:
|
|
valueFiles:
|
|
- $values/manifests/argocd/values.yaml
|
|
- repoURL: https://github.com/innspire/ops-demo.git
|
|
targetRevision: HEAD
|
|
ref: values
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: argocd
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
- ServerSideApply=true
|