88 lines
2.5 KiB
YAML
88 lines
2.5 KiB
YAML
apiVersion: apps/v1
|
|
kind: StatefulSet
|
|
metadata:
|
|
name: {{ include "radarr.fullname" . }}
|
|
labels:
|
|
{{- include "radarr.labels" . | nindent 4 }}
|
|
spec:
|
|
replicas: {{ .Values.replicaCount }}
|
|
serviceName: {{ include "radarr.fullname" . }}
|
|
selector:
|
|
matchLabels:
|
|
{{- include "radarr.selectorLabels" . | nindent 6 }}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
{{- include "radarr.selectorLabels" . | nindent 8 }}
|
|
spec:
|
|
{{- with .Values.imagePullSecrets }}
|
|
imagePullSecrets:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
serviceAccountName: {{ include "radarr.serviceAccountName" . }}
|
|
securityContext:
|
|
{{- toYaml .Values.podSecurityContext | nindent 8 }}
|
|
containers:
|
|
- args:
|
|
- exportarr
|
|
- radarr
|
|
name: radarr-metrics
|
|
image: ghcr.io/onedr0p/exportarr:latest
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- name: radarr-metrics
|
|
containerPort: 9707
|
|
protocol: TCP
|
|
env:
|
|
- name: PORT
|
|
value: "9707"
|
|
- name: URL
|
|
value: "http://127.0.0.1:7878"
|
|
- name: {{ .Chart.Name }}
|
|
securityContext:
|
|
{{- toYaml .Values.securityContext | nindent 12 }}
|
|
image: "{{ .Values.image.repository }}:{{ .Chart.AppVersion }}"
|
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
command:
|
|
ports:
|
|
- name: radarr
|
|
containerPort: 7878
|
|
protocol: TCP
|
|
livenessProbe:
|
|
tcpSocket:
|
|
port: 7878
|
|
readinessProbe:
|
|
tcpSocket:
|
|
port: 7878
|
|
resources:
|
|
{{- toYaml .Values.resources | nindent 12 }}
|
|
volumeMounts:
|
|
- name: radarr-config
|
|
mountPath: /config
|
|
- name: radarr-media
|
|
mountPath: /movies
|
|
subPath: movies
|
|
volumes:
|
|
{{- if and .Values.config.persistence.enabled .Values.config.persistence.existingClaim }}
|
|
- name: radarr-config
|
|
persistentVolumeClaim:
|
|
{{- with .Values.config.persistence.existingClaim }}
|
|
claimName: {{ tpl . $ }}
|
|
{{- end }}
|
|
{{- end }}
|
|
- name: radarr-media
|
|
persistentVolumeClaim:
|
|
claimName: {{ .Values.mediaPvc }}
|
|
{{- with .Values.nodeSelector }}
|
|
nodeSelector:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.affinity }}
|
|
affinity:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.tolerations }}
|
|
tolerations:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|