Files
movienight-backend/deploy/helm/movienight/templates/observability/vmagent-cr.yaml
T
google-labs-jules[bot]anddevitq 2d6012866b Fix observability and startup probe issues
- Explicitly configure management port 8081 in application.yaml to resolve connection refused errors.
- Adjust startupProbe failure threshold and initial delay in Helm chart to allow for a one-minute startup time.
- Update vmagent to use Kubernetes pod discovery for metrics scraping, adding necessary RBAC Role and RoleBinding.
- Introduce 'json-logging' Spring profile for structured console logging in Kubernetes.
- Add support for VictoriaMetrics Operator CRDs (VMSingle, VMAgent, VMPodScrape) to leverage the existing operator in the cluster.
- Review and refine observability templates for better integration with the VictoriaMetrics stack.

Co-authored-by: devitq <118541411+devitq@users.noreply.github.com>
2026-05-23 00:05:16 +00:00

23 lines
832 B
YAML

{{- if and .Values.observability.enabled .Values.observability.vmagent.enabled .Values.observability.victoriaMetrics.operator.enabled }}
apiVersion: operator.victoriametrics.com/v1beta1
kind: VMAgent
metadata:
name: {{ include "movienight.vmagentName" . }}
labels:
{{- include "movienight.componentLabels" (dict "root" . "component" "vmagent") | nindent 4 }}
spec:
scrapeInterval: {{ .Values.observability.vmagent.scrapeInterval }}
remoteWrite:
- url: {{ include "movienight.vmagentRemoteWriteURL" . }}
{{- with .Values.observability.vmagent.resources }}
resources:
{{- toYaml . | nindent 4 }}
{{- end }}
serviceScrapeSelector:
matchLabels:
{{- include "movienight.labels" . | nindent 6 }}
podScrapeSelector:
matchLabels:
{{- include "movienight.labels" . | nindent 6 }}
{{- end }}