This commit is contained in:
2025-01-13 00:32:08 +01:00
parent b2d37a9c5a
commit 33caf58f9c
17 changed files with 664 additions and 28 deletions

View File

@ -0,0 +1,134 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "plex.fullname" . }}
labels:
{{- include "plex.labels" . | nindent 4 }}
spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
{{- include "plex.selectorLabels" . | nindent 6 }}
template:
metadata:
labels:
{{- include "plex.selectorLabels" . | nindent 8 }}
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
env:
- name: TZ
value: {{ .Values.env.TZ | quote }}
- name: PUID
value: {{ .Values.securityContext.PUID | quote }}
- name: PGID
value: {{ .Values.securityContext.PGID | quote }}
- name: VERSION
value: {{ .Values.env.VERSION | quote }}
{{- if .Values.env.PLEX_CLAIM }}
- name: PLEX_CLAIM
value: {{ .Values.env.PLEX_CLAIM | quote }}
{{- end }}
ports:
- name: http
containerPort: {{ .Values.service.port }}
protocol: TCP
{{- range .Values.service.additional }}
- name: {{ .name }}
containerPort: {{ .port }}
protocol: {{ .protocol }}
{{- end }}
volumeMounts:
- name: config
mountPath: {{ .Values.persistence.config.mountPath }}
- name: transcode
mountPath: {{ .Values.persistence.transcode.mountPath }}
- name: data
mountPath: {{ .Values.persistence.data.mountPath }}
{{- if .Values.transcoding.hardware.enabled }}
{{- if .Values.transcoding.hardware.intel }}
- name: dev-dri
mountPath: /dev/dri
{{- end }}
{{- if .Values.transcoding.hardware.nvidia }}
- name: nvidia
mountPath: /usr/lib/nvidia
- name: nvidia-dev
mountPath: /dev/nvidia0
{{- end }}
{{- end }}
livenessProbe:
httpGet:
path: /identity
port: http
initialDelaySeconds: 30
periodSeconds: 10
readinessProbe:
httpGet:
path: /identity
port: http
initialDelaySeconds: 30
periodSeconds: 10
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumes:
- name: config
{{- if .Values.persistence.config.enabled }}
persistentVolumeClaim:
claimName: {{ include "plex.fullname" . }}-config
{{- else }}
emptyDir: {}
{{- end }}
- name: transcode
{{- if .Values.persistence.transcode.enabled }}
persistentVolumeClaim:
claimName: {{ include "plex.fullname" . }}-transcode
{{- else }}
emptyDir: {}
{{- end }}
- name: data
{{- if .Values.persistence.data.enabled }}
persistentVolumeClaim:
{{- if .Values.persistence.data.existingClaim }}
claimName: {{ .Values.persistence.data.existingClaim }}
{{- else }}
claimName: {{ include "plex.fullname" . }}-data
{{- end }}
{{- else }}
emptyDir: {}
{{- end }}
{{- if .Values.transcoding.hardware.enabled }}
{{- if .Values.transcoding.hardware.intel }}
- name: dev-dri
hostPath:
path: /dev/dri
{{- end }}
{{- if .Values.transcoding.hardware.nvidia }}
- name: nvidia
hostPath:
path: /usr/lib/nvidia
- name: nvidia-dev
hostPath:
path: /dev/nvidia0
{{- end }}
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}