123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- #
- # 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: Deployment
- metadata:
- name: {{ include "dolphinscheduler.fullname" . }}-api
- labels:
- {{- include "dolphinscheduler.api.labels" . | nindent 4 }}
- spec:
- replicas: {{ .Values.api.replicas }}
- selector:
- matchLabels:
- {{- include "dolphinscheduler.api.labels" . | nindent 6 }}
- strategy:
- type: {{ .Values.api.strategy.type | quote }}
- rollingUpdate:
- maxSurge: {{ .Values.api.strategy.rollingUpdate.maxSurge | quote }}
- maxUnavailable: {{ .Values.api.strategy.rollingUpdate.maxUnavailable | quote }}
- template:
- metadata:
- labels:
- {{- include "dolphinscheduler.api.labels" . | nindent 8 }}
- {{- if .Values.api.annotations }}
- annotations:
- {{- toYaml .Values.api.annotations | nindent 8 }}
- {{- end }}
- spec:
- {{- if .Values.api.affinity }}
- affinity:
- {{- toYaml .Values.api.affinity | nindent 8 }}
- {{- end }}
- {{- if .Values.api.nodeSelector }}
- nodeSelector:
- {{- toYaml .Values.api.nodeSelector | nindent 8 }}
- {{- end }}
- {{- if .Values.api.tolerations }}
- tolerations:
- {{- toYaml .Values.api.tolerations | nindent 8 }}
- {{- end }}
- {{- if .Values.image.pullSecret }}
- imagePullSecrets:
- - name: {{ .Values.image.pullSecret }}
- {{- end }}
- containers:
- - name: {{ include "dolphinscheduler.fullname" . }}-api
- image: {{ include "dolphinscheduler.image.fullname.api" . }}
- imagePullPolicy: {{ .Values.image.pullPolicy }}
- ports:
- - containerPort: 12345
- name: "api-port"
- - containerPort: 25333
- name: "python-api-port"
- env:
- - name: TZ
- value: {{ .Values.timezone }}
- - name: SPRING_JACKSON_TIME_ZONE
- value: {{ .Values.timezone }}
- {{- include "dolphinscheduler.database.env_vars" . | nindent 12 }}
- {{- include "dolphinscheduler.registry.env_vars" . | nindent 12 }}
- {{- include "dolphinscheduler.fs_s3a.env_vars" . | nindent 12 }}
- {{ range $key, $value := .Values.api.env }}
- - name: {{ $key }}
- value: {{ $value | quote }}
- {{ end }}
- envFrom:
- - configMapRef:
- name: {{ include "dolphinscheduler.fullname" . }}-common
- {{- if .Values.api.resources }}
- resources:
- {{- toYaml .Values.api.resources | nindent 12 }}
- {{- end }}
- {{- if .Values.api.livenessProbe.enabled }}
- livenessProbe:
- exec:
- command: ["curl", "-s", "http://localhost:12345/dolphinscheduler/actuator/health/liveness"]
- initialDelaySeconds: {{ .Values.api.livenessProbe.initialDelaySeconds }}
- periodSeconds: {{ .Values.api.livenessProbe.periodSeconds }}
- timeoutSeconds: {{ .Values.api.livenessProbe.timeoutSeconds }}
- successThreshold: {{ .Values.api.livenessProbe.successThreshold }}
- failureThreshold: {{ .Values.api.livenessProbe.failureThreshold }}
- {{- end }}
- {{- if .Values.api.readinessProbe.enabled }}
- readinessProbe:
- exec:
- command: ["curl", "-s", "http://localhost:12345/dolphinscheduler/actuator/health/readiness"]
- initialDelaySeconds: {{ .Values.api.readinessProbe.initialDelaySeconds }}
- periodSeconds: {{ .Values.api.readinessProbe.periodSeconds }}
- timeoutSeconds: {{ .Values.api.readinessProbe.timeoutSeconds }}
- successThreshold: {{ .Values.api.readinessProbe.successThreshold }}
- failureThreshold: {{ .Values.api.readinessProbe.failureThreshold }}
- {{- end }}
- volumeMounts:
- - mountPath: "/opt/dolphinscheduler/logs"
- name: {{ include "dolphinscheduler.fullname" . }}-api
- - name: config-volume
- mountPath: /opt/dolphinscheduler/conf/common.properties
- subPath: common_properties
- {{- include "dolphinscheduler.sharedStorage.volumeMount" . | nindent 12 }}
- {{- include "dolphinscheduler.fsFileResource.volumeMount" . | nindent 12 }}
- volumes:
- - name: {{ include "dolphinscheduler.fullname" . }}-api
- {{- if .Values.api.persistentVolumeClaim.enabled }}
- persistentVolumeClaim:
- claimName: {{ include "dolphinscheduler.fullname" . }}-api
- {{- else }}
- emptyDir: {}
- {{- end }}
- - name: config-volume
- configMap:
- name: {{ include "dolphinscheduler.fullname" . }}-configs
- {{- include "dolphinscheduler.sharedStorage.volume" . | nindent 8 }}
- {{- include "dolphinscheduler.fsFileResource.volume" . | nindent 8 }}
|