123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- {{- define "prometheus.workload" -}}
- workload:
- prometheus:
- enabled: true
- primary: true
- type: Deployment
- podSpec:
- hostNetwork: {{ .Values.prometheusNetwork.hostNetwork }}
- containers:
- prometheus:
- enabled: true
- primary: true
- imageSelector: image
- securityContext:
- runAsUser: {{ .Values.prometheusRunAs.user }}
- runAsGroup: {{ .Values.prometheusRunAs.group }}
- args:
- - --web.listen-address=0.0.0.0:{{ .Values.prometheusNetwork.apiPort }}
- - --storage.tsdb.path=/data
- - --config.file=/config/prometheus.yml
- - --storage.tsdb.retention.time={{ .Values.prometheusConfig.retentionTime }}
- {{ with .Values.prometheusConfig.retentionSize }}
- - --storage.tsdb.retention.size={{ . }}
- {{ end }}
- {{ if .Values.prometheusConfig.walCompression }}
- - --storage.tsdb.wal-compression
- {{ end }}
- {{ with .Values.prometheusConfig.additionalArgs }}
- extraArgs:
- {{ range $arg := . }}
- - {{ $arg | quote }}
- {{ end }}
- {{ end }}
- {{ with .Values.prometheusConfig.additionalEnvs }}
- env:
- {{ range $env := . }}
- {{ $env.name }}: {{ $env.value }}
- {{ end }}
- {{ end }}
- probes:
- liveness:
- enabled: true
- type: http
- port: {{ .Values.prometheusNetwork.apiPort }}
- path: /-/healthy
- readiness:
- enabled: true
- type: http
- port: {{ .Values.prometheusNetwork.apiPort }}
- path: /-/ready
- startup:
- enabled: true
- type: http
- port: {{ .Values.prometheusNetwork.apiPort }}
- path: /-/ready
- initContainers:
- {{- include "ix.v1.common.app.permissions" (dict "containerName" "01-permissions"
- "UID" .Values.prometheusRunAs.user
- "GID" .Values.prometheusRunAs.group
- "mode" "check"
- "type" "install") | nindent 8 }}
- init-config:
- enabled: true
- type: init
- imageSelector: image
- resources:
- limits:
- cpu: 500m
- memory: 256Mi
- securityContext:
- runAsUser: {{ .Values.prometheusRunAs.user }}
- runAsGroup: {{ .Values.prometheusRunAs.group }}
- command: sh
- args:
- - -c
- - |
- if [ ! -f /config/prometheus.yml ]; then
- touch /config/prometheus.yml
- fi
- {{/* Service */}}
- service:
- prometheus:
- enabled: true
- primary: true
- type: NodePort
- targetSelector: prometheus
- ports:
- prometheus:
- enabled: true
- primary: true
- port: {{ .Values.prometheusNetwork.apiPort }}
- nodePort: {{ .Values.prometheusNetwork.apiPort }}
- targetSelector: prometheus
- {{/* Persistence */}}
- persistence:
- data:
- enabled: true
- {{- include "ix.v1.common.app.storageOptions" (dict "storage" .Values.prometheusStorage.data) | nindent 4 }}
- targetSelector:
- prometheus:
- prometheus:
- mountPath: /data
- {{- if and (eq .Values.prometheusStorage.data.type "ixVolume")
- (not (.Values.prometheusStorage.data.ixVolumeConfig | default dict).aclEnable) }}
- 01-permissions:
- mountPath: /mnt/directories/data
- {{- end }}
- config:
- enabled: true
- {{- include "ix.v1.common.app.storageOptions" (dict "storage" .Values.prometheusStorage.config) | nindent 4 }}
- targetSelector:
- prometheus:
- prometheus:
- mountPath: /config
- init-config:
- mountPath: /config
- {{- if and (eq .Values.prometheusStorage.config.type "ixVolume")
- (not (.Values.prometheusStorage.config.ixVolumeConfig | default dict).aclEnable) }}
- 01-permissions:
- mountPath: /mnt/directories/config
- {{- end }}
- {{- range $idx, $storage := .Values.prometheusStorage.additionalStorages }}
- {{ printf "prometheus-%v:" (int $idx) }}
- enabled: true
- {{- include "ix.v1.common.app.storageOptions" (dict "storage" $storage) | nindent 4 }}
- targetSelector:
- prometheus:
- prometheus:
- mountPath: {{ $storage.mountPath }}
- {{- if and (eq $storage.type "ixVolume") (not ($storage.ixVolumeConfig | default dict).aclEnable) }}
- 01-permissions:
- mountPath: /mnt/directories{{ $storage.mountPath }}
- {{- end }}
- {{- end }}
- {{- end -}}
|