{{- if .Values.app.enabled -}} apiVersion: apps/v1 kind: Deployment metadata: name: {{ include "gitdata.fullname" . }}-app namespace: {{ include "gitdata.namespace" . }} labels: app.kubernetes.io/name: {{ include "gitdata.fullname" . }}-app app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/version: {{ .Chart.AppVersion }} spec: replicas: {{ .Values.app.replicaCount }} selector: matchLabels: app.kubernetes.io/name: {{ include "gitdata.fullname" . }}-app app.kubernetes.io/instance: {{ .Release.Name }} template: metadata: labels: app.kubernetes.io/name: {{ include "gitdata.fullname" . }}-app app.kubernetes.io/instance: {{ .Release.Name }} spec: terminationGracePeriodSeconds: 30 containers: - name: app image: "{{ .Values.image.registry }}/{{ .Values.app.image.repository }}:{{ .Values.app.image.tag }}" imagePullPolicy: {{ .Values.app.image.pullPolicy | default .Values.image.pullPolicy }} ports: - name: http containerPort: {{ .Values.app.service.port }} protocol: TCP env: - name: APP_DATABASE_URL valueFrom: configMapKeyRef: name: {{ include "gitdata.fullname" . }}-config key: APP_DATABASE_URL optional: true - name: APP_REDIS_URL valueFrom: configMapKeyRef: name: {{ include "gitdata.fullname" . }}-config key: APP_REDIS_URL optional: true - name: NATS_URL valueFrom: configMapKeyRef: name: {{ include "gitdata.fullname" . }}-config key: NATS_URL optional: true - name: HOOK_POOL_REDIS_LIST_PREFIX valueFrom: configMapKeyRef: name: {{ include "gitdata.fullname" . }}-config key: HOOK_POOL_REDIS_LIST_PREFIX optional: true - name: HOOK_POOL_REDIS_LOG_CHANNEL valueFrom: configMapKeyRef: name: {{ include "gitdata.fullname" . }}-config key: HOOK_POOL_REDIS_LOG_CHANNEL optional: true - name: APP_QDRANT_URL valueFrom: configMapKeyRef: name: {{ include "gitdata.fullname" . }}-config key: APP_QDRANT_URL optional: true - name: APP_QDRANT_API_KEY valueFrom: configMapKeyRef: name: {{ include "gitdata.fullname" . }}-config key: APP_QDRANT_API_KEY optional: true - name: APP_AVATAR_PATH valueFrom: configMapKeyRef: name: {{ include "gitdata.fullname" . }}-config key: APP_AVATAR_PATH optional: true {{- range .Values.app.env }} - name: {{ .name }} value: {{ .value | quote }} {{- end }} livenessProbe: httpGet: path: {{ .Values.app.livenessProbe.path }} port: {{ .Values.app.livenessProbe.port }} initialDelaySeconds: {{ .Values.app.livenessProbe.initialDelaySeconds }} periodSeconds: {{ .Values.app.livenessProbe.periodSeconds }} readinessProbe: httpGet: path: {{ .Values.app.readinessProbe.path }} port: {{ .Values.app.readinessProbe.port }} initialDelaySeconds: {{ .Values.app.readinessProbe.initialDelaySeconds }} periodSeconds: {{ .Values.app.readinessProbe.periodSeconds }} {{- if .Values.app.startupProbe }} startupProbe: httpGet: path: {{ .Values.app.startupProbe.path }} port: {{ .Values.app.startupProbe.port }} initialDelaySeconds: {{ .Values.app.startupProbe.initialDelaySeconds | default 0 }} periodSeconds: {{ .Values.app.startupProbe.periodSeconds }} failureThreshold: {{ .Values.app.startupProbe.failureThreshold }} {{- end }} resources: {{- toYaml .Values.app.resources | nindent 10 }} {{- if .Values.storage.enabled }} volumeMounts: - name: shared-data mountPath: /data {{- end }} {{- if .Values.storage.enabled }} volumes: - name: shared-data persistentVolumeClaim: claimName: {{ include "gitdata.fullname" . }}-shared-data {{- end }} {{- with .Values.app.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.app.affinity }} affinity: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.app.tolerations }} tolerations: {{- toYaml . | nindent 8 }} {{- end }} --- apiVersion: v1 kind: Service metadata: name: {{ include "gitdata.fullname" . }}-app namespace: {{ include "gitdata.namespace" . }} labels: app.kubernetes.io/name: {{ include "gitdata.fullname" . }}-app app.kubernetes.io/instance: {{ .Release.Name }} spec: type: {{ .Values.app.service.type }} ports: - port: {{ .Values.app.service.port }} targetPort: http protocol: TCP name: http selector: app.kubernetes.io/name: {{ include "gitdata.fullname" . }}-app app.kubernetes.io/instance: {{ .Release.Name }} {{- end }}