apiVersion: apps/v1 kind: StatefulSet metadata: name: {{ include "uptrace.fullname" . }} labels: app: uptrace {{- include "uptrace.labels" . | nindent 4 }} spec: {{- if not .Values.autoscaling.enabled }} replicas: {{ .Values.replicaCount }} {{- end }} serviceName: {{ include "uptrace.fullname" . }} selector: matchLabels: app: uptrace {{- include "uptrace.selectorLabels" . | nindent 6 }} template: metadata: annotations: checksum/config: {{ .Values.uptrace.config | toYaml | sha256sum }} labels: app: uptrace {{- include "uptrace.selectorLabels" . | nindent 8 }} spec: {{- with .Values.imagePullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }} {{- end }} serviceAccountName: {{ include "uptrace.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} containers: - name: {{ .Chart.Name }} securityContext: {{- toYaml .Values.securityContext | nindent 12 }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} volumeMounts: - name: config mountPath: /etc/uptrace/uptrace.yml subPath: uptrace.yml ports: - name: http containerPort: 14318 protocol: TCP livenessProbe: httpGet: path: / port: http readinessProbe: httpGet: path: / port: http resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.affinity }} affinity: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.tolerations }} tolerations: {{- toYaml . | nindent 8 }} {{- end }} volumes: - name: config configMap: name: {{ include "uptrace.fullname" . }}