charts/hub/templates/statefulset.yaml (62 lines of code) (raw):

apiVersion: apps/v1 kind: StatefulSet metadata: name: {{ include "hub.fullname" . }} labels: {{- include "hub.labels" . | nindent 4 }} spec: replicas: 1 serviceName: {{ include "hub.fullname" . }} selector: matchLabels: {{- include "hub.selectorLabels" . | nindent 6 }} {{- with .Values.volumeClaimTemplates }} volumeClaimTemplates: {{- toYaml . | nindent 4 }} {{- end }} template: metadata: {{- with .Values.podAnnotations }} annotations: {{- toYaml . | nindent 8 }} {{- end }} labels: {{- include "hub.selectorLabels" . | nindent 8 }} spec: {{- with .Values.imagePullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }} {{- end }} serviceAccountName: {{ include "hub.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 }} ports: - name: http containerPort: 8080 protocol: TCP volumeMounts: {{- toYaml .Values.volumeMounts | nindent 12 }} resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.volumes }} volumes: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.affinity }} affinity: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.tolerations }} tolerations: {{- toYaml . | nindent 8 }} {{- end }}