mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-11 00:41:23 +00:00
71 lines
2.6 KiB
YAML
71 lines
2.6 KiB
YAML
|
{{- if .Values.web.enabled -}}
|
||
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: {{ include "temporal.componentname" (list . "web") }}
|
||
|
labels:
|
||
|
app.kubernetes.io/name: {{ include "temporal.name" . }}
|
||
|
helm.sh/chart: {{ include "temporal.chart" . }}
|
||
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||
|
app.kubernetes.io/version: {{ .Chart.AppVersion | replace "+" "_" }}
|
||
|
app.kubernetes.io/component: web
|
||
|
app.kubernetes.io/part-of: {{ .Chart.Name }}
|
||
|
spec:
|
||
|
replicas: {{ .Values.web.replicaCount }}
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app.kubernetes.io/name: {{ include "temporal.name" . }}
|
||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||
|
app.kubernetes.io/component: web
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app.kubernetes.io/name: {{ include "temporal.name" . }}
|
||
|
helm.sh/chart: {{ include "temporal.chart" . }}
|
||
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||
|
app.kubernetes.io/version: {{ .Chart.AppVersion | replace "+" "_" }}
|
||
|
app.kubernetes.io/component: web
|
||
|
app.kubernetes.io/part-of: {{ .Chart.Name }}
|
||
|
{{- with .Values.web.podAnnotations }}
|
||
|
annotations:
|
||
|
{{- toYaml . | nindent 8 }}
|
||
|
{{- end }}
|
||
|
spec:
|
||
|
{{ include "temporal.serviceAccount" . }}
|
||
|
volumes:
|
||
|
- name: {{ .Chart.Name }}-web-config
|
||
|
configMap:
|
||
|
name: {{ include "temporal.componentname" (list . "web") }}-config
|
||
|
containers:
|
||
|
- name: {{ .Chart.Name }}-web
|
||
|
image: "{{ .Values.web.image.repository }}:{{ .Values.web.image.tag }}"
|
||
|
imagePullPolicy: {{ .Values.web.image.pullPolicy }}
|
||
|
env:
|
||
|
- name: TEMPORAL_GRPC_ENDPOINT
|
||
|
value: "{{ include "temporal.fullname" . }}-frontend.{{ .Release.Namespace }}.svc:{{ .Values.server.frontend.service.port }}"
|
||
|
volumeMounts:
|
||
|
- name: {{ .Chart.Name }}-web-config
|
||
|
mountPath: /usr/app/server/config.yml
|
||
|
subPath: config.yml
|
||
|
ports:
|
||
|
- name: http
|
||
|
containerPort: 8088
|
||
|
protocol: TCP
|
||
|
resources:
|
||
|
{{- toYaml .Values.web.resources | nindent 12 }}
|
||
|
{{- with .Values.web.nodeSelector }}
|
||
|
nodeSelector:
|
||
|
{{- toYaml . | nindent 8 }}
|
||
|
{{- end }}
|
||
|
{{- with .Values.web.affinity }}
|
||
|
affinity:
|
||
|
{{- toYaml . | nindent 8 }}
|
||
|
{{- end }}
|
||
|
{{- with .Values.web.tolerations }}
|
||
|
tolerations:
|
||
|
{{- toYaml . | nindent 8 }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|