2020-06-29 11:58:48 +00:00
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
name: {{ include "mastodon.fullname" . }}-streaming
|
|
|
|
labels:
|
|
|
|
{{- include "mastodon.labels" . | nindent 4 }}
|
|
|
|
spec:
|
|
|
|
{{- if not .Values.autoscaling.enabled }}
|
|
|
|
replicas: {{ .Values.replicaCount }}
|
|
|
|
{{- end }}
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
{{- include "mastodon.selectorLabels" . | nindent 6 }}
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
{{- with .Values.podAnnotations }}
|
|
|
|
annotations:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
labels:
|
|
|
|
{{- include "mastodon.selectorLabels" . | nindent 8 }}
|
|
|
|
spec:
|
|
|
|
{{- with .Values.imagePullSecrets }}
|
|
|
|
imagePullSecrets:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
serviceAccountName: {{ include "mastodon.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 }}
|
|
|
|
command:
|
|
|
|
- node
|
|
|
|
- ./streaming
|
|
|
|
envFrom:
|
|
|
|
- configMapRef:
|
|
|
|
name: {{ include "mastodon.fullname" . }}-env
|
|
|
|
env:
|
|
|
|
- name: "DB_PASS"
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
2022-08-10 15:12:58 +00:00
|
|
|
name: {{ template "mastodon.postgresql.secretName" . }}
|
2022-10-29 23:30:16 +00:00
|
|
|
key: postgres-password
|
2020-06-29 11:58:48 +00:00
|
|
|
- name: "REDIS_PASSWORD"
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
2022-08-10 15:12:58 +00:00
|
|
|
name: {{ template "mastodon.redis.secretName" . }}
|
2020-06-29 11:58:48 +00:00
|
|
|
key: redis-password
|
|
|
|
- name: "PORT"
|
2021-02-15 07:00:54 +00:00
|
|
|
value: {{ .Values.mastodon.streaming.port | quote }}
|
2020-06-29 11:58:48 +00:00
|
|
|
ports:
|
|
|
|
- name: streaming
|
2021-02-15 07:00:54 +00:00
|
|
|
containerPort: {{ .Values.mastodon.streaming.port }}
|
2020-06-29 11:58:48 +00:00
|
|
|
protocol: TCP
|
|
|
|
livenessProbe:
|
|
|
|
httpGet:
|
|
|
|
path: /api/v1/streaming/health
|
|
|
|
port: streaming
|
|
|
|
readinessProbe:
|
|
|
|
httpGet:
|
|
|
|
path: /api/v1/streaming/health
|
|
|
|
port: streaming
|
|
|
|
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 }}
|