56 lines
1.1 KiB
YAML
56 lines
1.1 KiB
YAML
# Phase 1 — Hookless releases continued: promtail, portainer
|
|
|
|
---
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: promtail
|
|
namespace: argocd
|
|
annotations:
|
|
argocd.argoproj.io/sync-wave: "1"
|
|
spec:
|
|
project: homelab
|
|
source:
|
|
repoURL: https://grafana.github.io/helm-charts
|
|
chart: promtail
|
|
targetRevision: latest
|
|
helm:
|
|
valueFiles:
|
|
- k8s/logging/promtail-values.yaml
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: logging
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
|
|
---
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: portainer
|
|
namespace: argocd
|
|
annotations:
|
|
argocd.argoproj.io/sync-wave: "3"
|
|
spec:
|
|
project: homelab
|
|
source:
|
|
repoURL: https://portainer.github.io/k8s/
|
|
chart: portainer
|
|
targetRevision: latest
|
|
helm:
|
|
valueFiles:
|
|
- k8s/portainer/portainer-values.yaml
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: dashboard
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|