113 lines
3.6 KiB
YAML
113 lines
3.6 KiB
YAML
{{- if .Values.static.enabled -}}
|
|
{{- $fullName := include "gitdata.fullname" . -}}
|
|
{{- $ns := include "gitdata.namespace" . -}}
|
|
{{- $svc := .Values.static -}}
|
|
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: {{ $fullName }}-static
|
|
namespace: {{ $ns }}
|
|
labels:
|
|
app.kubernetes.io/name: {{ $fullName }}-static
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
app.kubernetes.io/version: {{ .Chart.AppVersion }}
|
|
spec:
|
|
replicas: {{ $svc.replicaCount }}
|
|
selector:
|
|
matchLabels:
|
|
app.kubernetes.io/name: {{ $fullName }}-static
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app.kubernetes.io/name: {{ $fullName }}-static
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
spec:
|
|
containers:
|
|
- name: static
|
|
image: "{{ $.Values.image.registry }}/{{ $svc.image.repository }}:{{ $svc.image.tag }}"
|
|
imagePullPolicy: {{ $svc.image.pullPolicy | default $.Values.image.pullPolicy }}
|
|
ports:
|
|
- name: http
|
|
containerPort: {{ $svc.service.port }}
|
|
protocol: TCP
|
|
env:
|
|
- name: STATIC_ROOT
|
|
value: /data
|
|
- name: STATIC_BIND
|
|
value: {{ printf "0.0.0.0:%s" (print $svc.service.port) }}
|
|
- name: STATIC_CORS
|
|
value: {{ $svc.cors | default "true" | quote }}
|
|
{{- if $svc.logLevel }}
|
|
- name: STATIC_LOG_LEVEL
|
|
value: {{ $svc.logLevel }}
|
|
{{- end }}
|
|
{{- range $svc.env }}
|
|
- name: {{ .name }}
|
|
value: {{ .value | quote }}
|
|
{{- end }}
|
|
resources:
|
|
{{- toYaml $svc.resources | nindent 10 }}
|
|
{{- if $svc.livenessProbe }}
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /health
|
|
port: {{ $svc.service.port }}
|
|
initialDelaySeconds: {{ $svc.livenessProbe.initialDelaySeconds }}
|
|
periodSeconds: {{ $svc.livenessProbe.periodSeconds }}
|
|
timeoutSeconds: {{ $svc.livenessProbe.timeoutSeconds }}
|
|
failureThreshold: {{ $svc.livenessProbe.failureThreshold }}
|
|
{{- end }}
|
|
{{- if $svc.readinessProbe }}
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /health
|
|
port: {{ $svc.service.port }}
|
|
initialDelaySeconds: {{ $svc.readinessProbe.initialDelaySeconds }}
|
|
periodSeconds: {{ $svc.readinessProbe.periodSeconds }}
|
|
timeoutSeconds: {{ $svc.readinessProbe.timeoutSeconds }}
|
|
failureThreshold: {{ $svc.readinessProbe.failureThreshold }}
|
|
{{- end }}
|
|
volumeMounts:
|
|
- name: shared-data
|
|
mountPath: /data
|
|
volumes:
|
|
- name: shared-data
|
|
persistentVolumeClaim:
|
|
claimName: {{ $fullName }}-shared-data
|
|
{{- with $svc.nodeSelector }}
|
|
nodeSelector:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with $svc.affinity }}
|
|
affinity:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with $svc.tolerations }}
|
|
tolerations:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ $fullName }}-static
|
|
namespace: {{ $ns }}
|
|
labels:
|
|
app.kubernetes.io/name: {{ $fullName }}-static
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
spec:
|
|
type: {{ $svc.service.type }}
|
|
ports:
|
|
- name: http
|
|
port: {{ $svc.service.port }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
selector:
|
|
app.kubernetes.io/name: {{ $fullName }}-static
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
{{- end }}
|