charts/hertzbeat/templates/tsdb/statefulset.yaml (70 lines of code) (raw):

# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. apiVersion: apps/v1 kind: StatefulSet metadata: name: {{ include "hertzbeat.tsdb" . }} labels: {{- include "hertzbeat.labels" . | nindent 4 }} component: tsdb spec: replicas: 1 serviceName: {{ include "hertzbeat.tsdb" . }} selector: matchLabels: {{- include "hertzbeat.selectorLabels" . | nindent 6 }} component: tsdb template: metadata: {{- with .Values.tsdb.podAnnotations }} annotations: {{- toYaml . | nindent 8 }} {{- end }} labels: {{- include "hertzbeat.selectorLabels" . | nindent 8 }} component: tsdb spec: securityContext: {{- toYaml .Values.tsdb.podSecurityContext | nindent 8 }} containers: - name: tsdb image: {{ .Values.tsdb.image.repository }}:{{ .Values.tsdb.image.tag }} imagePullPolicy: {{ .Values.tsdb.image.pullPolicy }} livenessProbe: tcpSocket: port: 8428 initialDelaySeconds: 300 periodSeconds: 10 readinessProbe: tcpSocket: port: 8428 initialDelaySeconds: 1 periodSeconds: 10 resources: {{- toYaml .Values.tsdb.resources | nindent 12 }} envFrom: - configMapRef: name: "{{ include "hertzbeat.tsdb" . }}" volumeMounts: - name: data mountPath: /victoria-metrics-data subPath: "" volumes: {{- if not .Values.tsdb.persistence.enabled }} - name: data emptyDir: {} {{- else }} - name: data persistentVolumeClaim: claimName: {{ .Values.tsdb.persistence.existingClaim | default (include "hertzbeat.tsdb" .) }} {{- end }} {{- with .Values.tsdb.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.tsdb.affinity }} affinity: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.tsdb.tolerations }} tolerations: {{- toYaml . | nindent 8 }} {{- end }}