Files
Kubernetes-Manifests/infra/argocd/applications/victoria-metrics-application.yaml
T
Jeffrey 02c43d8b85 victoria-metrics: point the values ref at applications/
$values resolves to the repo root, so $values/victoria-metrics/values.yaml
never existed once the manifests moved under applications/. helm template
failed on every reconcile, leaving the app permanently sync status Unknown.

gitea-runner had the same broken path but has no manifest in this repo, so
it was patched on the cluster only.
2026-08-29 18:18:27 +02:00

34 lines
996 B
YAML

apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: victoria-metrics
namespace: argocd
spec:
project: default
sources:
- repoURL: https://victoriametrics.github.io/helm-charts/
chart: victoria-metrics-k8s-stack
targetRevision: 0.91.2
helm:
# Release name kept short to avoid label length >63 chars on alertmanager StatefulSet pods
releaseName: vm
valueFiles:
- $values/applications/victoria-metrics/values.yaml
- repoURL: https://gitea.jsme.be/Jeffrey/Kubernetes-Manifests.git
targetRevision: HEAD
ref: values
- repoURL: https://gitea.jsme.be/Jeffrey/Kubernetes-Manifests.git
targetRevision: HEAD
path: applications/victoria-metrics
directory:
exclude: "values.yaml"
destination:
server: https://kubernetes.default.svc
namespace: victoria-metrics
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- ServerSideApply=true