eefa6e728a
- Add spark-cluster/base with Bitnami Spark chart 9.2.10 (master + 2 workers), spark-events PVC (RWO/local-path), and Ingress resources for spark.nowchess.janis-eccarius.de (master UI) and spark-history.nowchess.janis-eccarius.de (history placeholder) - Add spark-cluster/eu-central-1-prod overlay and ArgoCD Application (automated prune + selfHeal) - Migrate all spark-analytics CronJobs and streaming Deployment from K8s-native mode (k8s://...) to Spark standalone (spark://spark-master:7077); drop kubernetes-specific --conf flags; add eventLog confs; mount spark-events PVC on all job pods Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
50 lines
1.9 KiB
YAML
Executable File
50 lines
1.9 KiB
YAML
Executable File
{{- /*
|
|
Copyright Broadcom, Inc. All Rights Reserved.
|
|
SPDX-License-Identifier: APACHE-2.0
|
|
*/}}
|
|
|
|
{{- if and .Values.metrics.enabled .Values.metrics.podMonitor.enabled }}
|
|
apiVersion: monitoring.coreos.com/v1
|
|
kind: PodMonitor
|
|
metadata:
|
|
name: {{ include "common.names.fullname" . }}
|
|
{{- if .Values.metrics.podMonitor.namespace }}
|
|
namespace: {{ .Values.metrics.podMonitor.namespace }}
|
|
{{- else }}
|
|
namespace: {{ include "common.names.namespace" . | quote }}
|
|
{{- end }}
|
|
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
app.kubernetes.io/component: metrics
|
|
{{- if .Values.metrics.podMonitor.additionalLabels }}
|
|
{{- include "common.tplvalues.render" (dict "value" .Values.metrics.podMonitor.additionalLabels "context" $) | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
podMetricsEndpoints:
|
|
- port: http
|
|
path: /metrics/
|
|
{{- if .Values.metrics.podMonitor.interval }}
|
|
interval: {{ .Values.metrics.podMonitor.interval }}
|
|
{{- end }}
|
|
{{- if .Values.metrics.podMonitor.scrapeTimeout }}
|
|
scrapeTimeout: {{ .Values.metrics.podMonitor.scrapeTimeout }}
|
|
{{- end }}
|
|
{{- range .Values.metrics.podMonitor.extraMetricsEndpoints }}
|
|
- port: {{ .port }}
|
|
path: {{ .path }}
|
|
{{- if $.Values.metrics.podMonitor.interval }}
|
|
interval: {{ $.Values.metrics.podMonitor.interval }}
|
|
{{- end }}
|
|
{{- if $.Values.metrics.podMonitor.scrapeTimeout }}
|
|
scrapeTimeout: {{ $.Values.metrics.podMonitor.scrapeTimeout }}
|
|
{{- end }}
|
|
{{- end }}
|
|
namespaceSelector:
|
|
matchNames:
|
|
- {{ include "common.names.namespace" . | quote }}
|
|
selector:
|
|
matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 6 }}
|
|
{{- end }}
|