42 lines
863 B
YAML
42 lines
863 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: istio
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: https://gitea.linvogel.ch/linus/gitops.git
|
|
targetRevision: HEAD
|
|
path: helm/istio
|
|
helm:
|
|
valueFiles:
|
|
- values.yaml
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: istio-ingress
|
|
syncPolicy:
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
---
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: istiod
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: https://gitea.linvogel.ch/linus/gitops.git
|
|
targetRevision: HEAD
|
|
path: helm/istiod
|
|
helm:
|
|
valueFiles:
|
|
- values.yaml
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: istio-system
|
|
syncPolicy:
|
|
syncOptions:
|
|
- CreateNamespace=true
|