| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446 |
- {{- if .Values.allInOne.enabled }}
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: {{ template "seaweedfs.name" . }}-all-in-one
- namespace: {{ .Release.Namespace }}
- labels:
- app.kubernetes.io/name: {{ template "seaweedfs.name" . }}
- helm.sh/chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
- app.kubernetes.io/managed-by: {{ .Release.Service }}
- app.kubernetes.io/instance: {{ .Release.Name }}
- app.kubernetes.io/component: seaweedfs-all-in-one
- {{- if .Values.allInOne.annotations }}
- annotations:
- {{- toYaml .Values.allInOne.annotations | nindent 4 }}
- {{- end }}
- spec:
- replicas: 1
- strategy:
- type: Recreate
- selector:
- matchLabels:
- app.kubernetes.io/name: {{ template "seaweedfs.name" . }}
- app.kubernetes.io/instance: {{ .Release.Name }}
- app.kubernetes.io/component: seaweedfs-all-in-one
- template:
- metadata:
- labels:
- app.kubernetes.io/name: {{ template "seaweedfs.name" . }}
- helm.sh/chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
- app.kubernetes.io/instance: {{ .Release.Name }}
- app.kubernetes.io/component: seaweedfs-all-in-one
- {{- with .Values.podLabels }}
- {{- toYaml . | nindent 8 }}
- {{- end }}
- {{- with .Values.allInOne.podLabels }}
- {{- toYaml . | nindent 8 }}
- {{- end }}
- annotations:
- {{- with .Values.podAnnotations }}
- {{- toYaml . | nindent 8 }}
- {{- end }}
- {{- with .Values.allInOne.podAnnotations }}
- {{- toYaml . | nindent 8 }}
- {{- end }}
- spec:
- restartPolicy: {{ default .Values.global.restartPolicy .Values.allInOne.restartPolicy }}
- {{- if .Values.allInOne.affinity }}
- affinity:
- {{ tpl .Values.allInOne.affinity . | nindent 8 | trim }}
- {{- end }}
- {{- if .Values.allInOne.topologySpreadConstraints }}
- topologySpreadConstraints:
- {{ tpl .Values.allInOne.topologySpreadConstraints . | nindent 8 | trim }}
- {{- end }}
- {{- if .Values.allInOne.tolerations }}
- tolerations:
- {{- tpl .Values.allInOne.tolerations . | nindent 8 }}
- {{- end }}
- {{- include "seaweedfs.imagePullSecrets" . | nindent 6 }}
- terminationGracePeriodSeconds: 60
- enableServiceLinks: false
- {{- if .Values.allInOne.priorityClassName }}
- priorityClassName: {{ .Values.allInOne.priorityClassName | quote }}
- {{- end }}
- {{- if .Values.allInOne.serviceAccountName }}
- serviceAccountName: {{ .Values.allInOne.serviceAccountName | quote }}
- {{- end }}
- {{- if .Values.allInOne.initContainers }}
- initContainers:
- {{- tpl .Values.allInOne.initContainers . | nindent 8 }}
- {{- end }}
- {{- if .Values.allInOne.podSecurityContext.enabled }}
- securityContext:
- {{- omit .Values.allInOne.podSecurityContext "enabled" | toYaml | nindent 8 }}
- {{- end }}
- containers:
- - name: seaweedfs
- image: {{ template "master.image" . }}
- imagePullPolicy: {{ default "IfNotPresent" .Values.global.imagePullPolicy }}
- env:
- {{- /* Determine default cluster alias and the corresponding env var keys to avoid conflicts */}}
- {{- $envMerged := merge (.Values.global.extraEnvironmentVars | default dict) (.Values.allInOne.extraEnvironmentVars | default dict) }}
- {{- $clusterDefault := default "sw" (index $envMerged "WEED_CLUSTER_DEFAULT") }}
- {{- $clusterUpper := upper $clusterDefault }}
- {{- $clusterMasterKey := printf "WEED_CLUSTER_%s_MASTER" $clusterUpper }}
- {{- $clusterFilerKey := printf "WEED_CLUSTER_%s_FILER" $clusterUpper }}
- - name: POD_IP
- valueFrom:
- fieldRef:
- fieldPath: status.podIP
- - name: POD_NAME
- valueFrom:
- fieldRef:
- fieldPath: metadata.name
- - name: NAMESPACE
- valueFrom:
- fieldRef:
- fieldPath: metadata.namespace
- - name: SEAWEEDFS_FULLNAME
- value: "{{ template "seaweedfs.name" . }}"
- {{- if .Values.allInOne.extraEnvironmentVars }}
- {{- range $key, $value := .Values.allInOne.extraEnvironmentVars }}
- {{- if and (ne $key $clusterMasterKey) (ne $key $clusterFilerKey) }}
- - name: {{ $key }}
- {{- if kindIs "string" $value }}
- value: {{ $value | quote }}
- {{- else }}
- valueFrom:
- {{ toYaml $value | nindent 16 }}
- {{- end }}
- {{- end }}
- {{- end }}
- {{- end }}
- {{- if .Values.global.extraEnvironmentVars }}
- {{- range $key, $value := .Values.global.extraEnvironmentVars }}
- {{- if and (ne $key $clusterMasterKey) (ne $key $clusterFilerKey) }}
- - name: {{ $key }}
- {{- if kindIs "string" $value }}
- value: {{ $value | quote }}
- {{- else }}
- valueFrom:
- {{ toYaml $value | nindent 16 }}
- {{- end }}
- {{- end }}
- {{- end }}
- {{- end }}
- # Inject computed cluster endpoints for the default cluster
- - name: {{ $clusterMasterKey }}
- value: {{ include "seaweedfs.cluster.masterAddress" . | quote }}
- - name: {{ $clusterFilerKey }}
- value: {{ include "seaweedfs.cluster.filerAddress" . | quote }}
- command:
- - "/bin/sh"
- - "-ec"
- - |
- /usr/bin/weed \
- -v={{ .Values.global.loggingLevel }} \
- server \
- -dir=/data \
- -master \
- -volume \
- -ip=${POD_IP} \
- -ip.bind=0.0.0.0 \
- {{- if .Values.allInOne.idleTimeout }}
- -idleTimeout={{ .Values.allInOne.idleTimeout }} \
- {{- end }}
- {{- if .Values.allInOne.dataCenter }}
- -dataCenter={{ .Values.allInOne.dataCenter }} \
- {{- end }}
- {{- if .Values.allInOne.rack }}
- -rack={{ .Values.allInOne.rack }} \
- {{- end }}
- {{- if .Values.allInOne.whiteList }}
- -whiteList={{ .Values.allInOne.whiteList }} \
- {{- end }}
- {{- if .Values.allInOne.disableHttp }}
- -disableHttp={{ .Values.allInOne.disableHttp }} \
- {{- end }}
- {{- if and (.Values.volume.dataDirs) (index .Values.volume.dataDirs 0 "maxVolumes") }}
- -volume.max={{ index .Values.volume.dataDirs 0 "maxVolumes" }} \
- {{- end }}
- -master.port={{ .Values.master.port }} \
- {{- if .Values.global.enableReplication }}
- -master.defaultReplication={{ .Values.global.replicationPlacement }} \
- {{- else }}
- -master.defaultReplication={{ .Values.master.defaultReplication }} \
- {{- end }}
- {{- if .Values.master.volumePreallocate }}
- -master.volumePreallocate \
- {{- end }}
- -master.volumeSizeLimitMB={{ .Values.master.volumeSizeLimitMB }} \
- {{- if .Values.master.garbageThreshold }}
- -master.garbageThreshold={{ .Values.master.garbageThreshold }} \
- {{- end }}
- -volume.port={{ .Values.volume.port }} \
- -volume.readMode={{ .Values.volume.readMode }} \
- {{- if .Values.volume.imagesFixOrientation }}
- -volume.images.fix.orientation \
- {{- end }}
- {{- if .Values.volume.index }}
- -volume.index={{ .Values.volume.index }} \
- {{- end }}
- {{- if .Values.volume.fileSizeLimitMB }}
- -volume.fileSizeLimitMB={{ .Values.volume.fileSizeLimitMB }} \
- {{- end }}
- -volume.minFreeSpacePercent={{ .Values.volume.minFreeSpacePercent }} \
- -volume.compactionMBps={{ .Values.volume.compactionMBps }} \
- {{- if .Values.allInOne.metricsPort }}
- -metricsPort={{ .Values.allInOne.metricsPort }} \
- {{- else if .Values.master.metricsPort }}
- -metricsPort={{ .Values.master.metricsPort }} \
- {{- end }}
- -filer \
- -filer.port={{ .Values.filer.port }} \
- {{- if .Values.filer.disableDirListing }}
- -filer.disableDirListing \
- {{- end }}
- -filer.dirListLimit={{ .Values.filer.dirListLimit }} \
- {{- if .Values.global.enableReplication }}
- -filer.defaultReplicaPlacement={{ .Values.global.replicationPlacement }} \
- {{- else }}
- -filer.defaultReplicaPlacement={{ .Values.filer.defaultReplicaPlacement }} \
- {{- end }}
- {{- if .Values.filer.maxMB }}
- -filer.maxMB={{ .Values.filer.maxMB }} \
- {{- end }}
- {{- if .Values.filer.encryptVolumeData }}
- -filer.encryptVolumeData \
- {{- end }}
- {{- if .Values.filer.filerGroup}}
- -filer.filerGroup={{ .Values.filer.filerGroup}} \
- {{- end }}
- {{- if .Values.filer.rack }}
- -filer.rack={{ .Values.filer.rack }} \
- {{- end }}
- {{- if .Values.filer.dataCenter }}
- -filer.dataCenter={{ .Values.filer.dataCenter }} \
- {{- end }}
- {{- if .Values.allInOne.s3.enabled }}
- -s3 \
- -s3.port={{ .Values.s3.port }} \
- {{- if .Values.s3.domainName }}
- -s3.domainName={{ .Values.s3.domainName }} \
- {{- end }}
- {{- if .Values.global.enableSecurity }}
- {{- if .Values.s3.httpsPort }}
- -s3.port.https={{ .Values.s3.httpsPort }} \
- {{- end }}
- -s3.cert.file=/usr/local/share/ca-certificates/client/tls.crt \
- -s3.key.file=/usr/local/share/ca-certificates/client/tls.key \
- {{- end }}
- {{- if eq (typeOf .Values.s3.allowEmptyFolder) "bool" }}
- -s3.allowEmptyFolder={{ .Values.s3.allowEmptyFolder }} \
- {{- end }}
- {{- if .Values.s3.enableAuth }}
- -s3.config=/etc/sw/s3/seaweedfs_s3_config \
- {{- end }}
- {{- if .Values.s3.auditLogConfig }}
- -s3.auditLogConfig=/etc/sw/s3/s3_auditLogConfig.json \
- {{- end }}
- {{- end }}
- {{- if .Values.allInOne.sftp.enabled }}
- -sftp \
- -sftp.port={{ .Values.sftp.port }} \
- {{- if .Values.sftp.sshPrivateKey }}
- -sftp.sshPrivateKey={{ .Values.sftp.sshPrivateKey }} \
- {{- end }}
- {{- if .Values.sftp.hostKeysFolder }}
- -sftp.hostKeysFolder={{ .Values.sftp.hostKeysFolder }} \
- {{- end }}
- {{- if .Values.sftp.authMethods }}
- -sftp.authMethods={{ .Values.sftp.authMethods }} \
- {{- end }}
- {{- if .Values.sftp.maxAuthTries }}
- -sftp.maxAuthTries={{ .Values.sftp.maxAuthTries }} \
- {{- end }}
- {{- if .Values.sftp.bannerMessage }}
- -sftp.bannerMessage="{{ .Values.sftp.bannerMessage }}" \
- {{- end }}
- {{- if .Values.sftp.loginGraceTime }}
- -sftp.loginGraceTime={{ .Values.sftp.loginGraceTime }} \
- {{- end }}
- {{- if .Values.sftp.clientAliveInterval }}
- -sftp.clientAliveInterval={{ .Values.sftp.clientAliveInterval }} \
- {{- end }}
- {{- if .Values.sftp.clientAliveCountMax }}
- -sftp.clientAliveCountMax={{ .Values.sftp.clientAliveCountMax }} \
- {{- end }}
- -sftp.userStoreFile=/etc/sw/sftp/seaweedfs_sftp_config \
- {{- end }}
- volumeMounts:
- - name: data
- mountPath: /data
- {{- if and .Values.allInOne.s3.enabled (or .Values.s3.enableAuth .Values.filer.s3.enableAuth) }}
- - name: config-s3-users
- mountPath: /etc/sw/s3
- readOnly: true
- {{- end }}
- {{- if .Values.allInOne.sftp.enabled }}
- - name: config-ssh
- mountPath: /etc/sw/ssh
- readOnly: true
- - mountPath: /etc/sw/sftp
- name: config-users
- readOnly: true
- {{- end }}
- {{- if .Values.filer.notificationConfig }}
- - name: notification-config
- mountPath: /etc/seaweedfs/notification.toml
- subPath: notification.toml
- readOnly: true
- {{- end }}
- - name: master-config
- mountPath: /etc/seaweedfs/master.toml
- subPath: master.toml
- readOnly: true
- {{- if .Values.global.enableSecurity }}
- - name: security-config
- mountPath: /etc/seaweedfs/security.toml
- subPath: security.toml
- readOnly: true
- - name: ca-cert
- mountPath: /usr/local/share/ca-certificates/ca/
- readOnly: true
- - name: master-cert
- mountPath: /usr/local/share/ca-certificates/master/
- readOnly: true
- - name: volume-cert
- mountPath: /usr/local/share/ca-certificates/volume/
- readOnly: true
- - name: filer-cert
- mountPath: /usr/local/share/ca-certificates/filer/
- readOnly: true
- - name: client-cert
- mountPath: /usr/local/share/ca-certificates/client/
- readOnly: true
- {{- end }}
- {{ tpl .Values.allInOne.extraVolumeMounts . | nindent 12 }}
- ports:
- - containerPort: {{ .Values.master.port }}
- name: swfs-mas
- - containerPort: {{ .Values.master.grpcPort }}
- name: swfs-mas-grpc
- - containerPort: {{ .Values.volume.port }}
- name: swfs-vol
- - containerPort: {{ .Values.volume.grpcPort }}
- name: swfs-vol-grpc
- - containerPort: {{ .Values.filer.port }}
- name: swfs-fil
- - containerPort: {{ .Values.filer.grpcPort }}
- name: swfs-fil-grpc
- {{- if .Values.allInOne.s3.enabled }}
- - containerPort: {{ .Values.s3.port }}
- name: swfs-s3
- {{- if .Values.s3.httpsPort }}
- - containerPort: {{ .Values.s3.httpsPort }}
- name: swfs-s3-tls
- {{- end }}
- {{- end }}
- {{- if .Values.allInOne.sftp.enabled }}
- - containerPort: {{ .Values.sftp.port }}
- name: swfs-sftp
- {{- end }}
- {{- if .Values.allInOne.metricsPort }}
- - containerPort: {{ .Values.allInOne.metricsPort }}
- name: server-metrics
- {{- end }}
- {{- if .Values.allInOne.readinessProbe.enabled }}
- readinessProbe:
- httpGet:
- path: {{ .Values.allInOne.readinessProbe.httpGet.path }}
- port: {{ .Values.master.port }}
- scheme: {{ .Values.allInOne.readinessProbe.scheme }}
- initialDelaySeconds: {{ .Values.allInOne.readinessProbe.initialDelaySeconds }}
- periodSeconds: {{ .Values.allInOne.readinessProbe.periodSeconds }}
- successThreshold: {{ .Values.allInOne.readinessProbe.successThreshold }}
- failureThreshold: {{ .Values.allInOne.readinessProbe.failureThreshold }}
- timeoutSeconds: {{ .Values.allInOne.readinessProbe.timeoutSeconds }}
- {{- end }}
- {{- if .Values.allInOne.livenessProbe.enabled }}
- livenessProbe:
- httpGet:
- path: {{ .Values.allInOne.livenessProbe.httpGet.path }}
- port: {{ .Values.master.port }}
- scheme: {{ .Values.allInOne.livenessProbe.scheme }}
- initialDelaySeconds: {{ .Values.allInOne.livenessProbe.initialDelaySeconds }}
- periodSeconds: {{ .Values.allInOne.livenessProbe.periodSeconds }}
- successThreshold: {{ .Values.allInOne.livenessProbe.successThreshold }}
- failureThreshold: {{ .Values.allInOne.livenessProbe.failureThreshold }}
- timeoutSeconds: {{ .Values.allInOne.livenessProbe.timeoutSeconds }}
- {{- end }}
- {{- with .Values.allInOne.resources }}
- resources:
- {{- toYaml . | nindent 12 }}
- {{- end }}
- {{- if .Values.allInOne.containerSecurityContext.enabled }}
- securityContext:
- {{- omit .Values.allInOne.containerSecurityContext "enabled" | toYaml | nindent 12 }}
- {{- end }}
- {{- if .Values.allInOne.sidecars }}
- {{- include "common.tplvalues.render" (dict "value" .Values.allInOne.sidecars "context" $) | nindent 8 }}
- {{- end }}
- volumes:
- - name: data
- {{- if eq .Values.allInOne.data.type "hostPath" }}
- hostPath:
- path: {{ .Values.allInOne.data.hostPathPrefix }}/seaweedfs-all-in-one-data/
- type: DirectoryOrCreate
- {{- else if eq .Values.allInOne.data.type "persistentVolumeClaim" }}
- persistentVolumeClaim:
- claimName: {{ .Values.allInOne.data.claimName }}
- {{- else if eq .Values.allInOne.data.type "emptyDir" }}
- emptyDir: {}
- {{- end }}
- {{- if and .Values.allInOne.s3.enabled (or .Values.s3.enableAuth .Values.filer.s3.enableAuth) }}
- - name: config-s3-users
- secret:
- defaultMode: 420
- secretName: {{ default (printf "%s-s3-secret" (include "seaweedfs.name" .)) (or .Values.s3.existingConfigSecret .Values.filer.s3.existingConfigSecret) }}
- {{- end }}
- {{- if .Values.allInOne.sftp.enabled }}
- - name: config-ssh
- secret:
- defaultMode: 420
- secretName: {{ default (printf "%s-sftp-ssh-secret" (include "seaweedfs.name" .)) .Values.sftp.existingSshConfigSecret }}
- - name: config-users
- secret:
- defaultMode: 420
- secretName: {{ default (printf "%s-sftp-secret" (include "seaweedfs.name" .)) .Values.sftp.existingConfigSecret }}
- {{- end }}
- {{- if .Values.filer.notificationConfig }}
- - name: notification-config
- configMap:
- name: {{ template "seaweedfs.name" . }}-notification-config
- {{- end }}
- - name: master-config
- configMap:
- name: {{ template "seaweedfs.name" . }}-master-config
- {{- if .Values.global.enableSecurity }}
- - name: security-config
- configMap:
- name: {{ template "seaweedfs.name" . }}-security-config
- - name: ca-cert
- secret:
- secretName: {{ template "seaweedfs.name" . }}-ca-cert
- - name: master-cert
- secret:
- secretName: {{ template "seaweedfs.name" . }}-master-cert
- - name: volume-cert
- secret:
- secretName: {{ template "seaweedfs.name" . }}-volume-cert
- - name: filer-cert
- secret:
- secretName: {{ template "seaweedfs.name" . }}-filer-cert
- - name: client-cert
- secret:
- secretName: {{ template "seaweedfs.name" . }}-client-cert
- {{- end }}
- {{ tpl .Values.allInOne.extraVolumes . | nindent 8 }}
- {{- if .Values.allInOne.nodeSelector }}
- nodeSelector:
- {{ tpl .Values.allInOne.nodeSelector . | nindent 8 }}
- {{- end }}
- {{- end }}
|