From f3e99ffb7064a1827e1e01c2eb53c812e0c74fe5 Mon Sep 17 00:00:00 2001 From: Jeff Billimek Date: Tue, 14 Apr 2020 21:27:48 -0400 Subject: [PATCH] [plex] initial commit of plex chart (#203) * initial commit of plex chart Signed-off-by: Jeff Billimek * remove commented code * fix linting * use safe defaults * no tests dir needed --- charts/plex/.helmignore | 24 ++++ charts/plex/Chart.yaml | 15 +++ charts/plex/OWNERS | 4 + charts/plex/README.md | 48 +++++++ charts/plex/templates/NOTES.txt | 19 +++ charts/plex/templates/_helpers.tpl | 63 +++++++++ charts/plex/templates/deployment.yaml | 184 ++++++++++++++++++++++++++ charts/plex/templates/ingress.yaml | 40 ++++++ charts/plex/templates/service.yaml | 54 ++++++++ charts/plex/templates/volumes.yaml | 57 ++++++++ charts/plex/values.yaml | 156 ++++++++++++++++++++++ 11 files changed, 664 insertions(+) create mode 100644 charts/plex/.helmignore create mode 100644 charts/plex/Chart.yaml create mode 100644 charts/plex/OWNERS create mode 100644 charts/plex/README.md create mode 100644 charts/plex/templates/NOTES.txt create mode 100644 charts/plex/templates/_helpers.tpl create mode 100644 charts/plex/templates/deployment.yaml create mode 100644 charts/plex/templates/ingress.yaml create mode 100644 charts/plex/templates/service.yaml create mode 100644 charts/plex/templates/volumes.yaml create mode 100644 charts/plex/values.yaml diff --git a/charts/plex/.helmignore b/charts/plex/.helmignore new file mode 100644 index 00000000..e559de0a --- /dev/null +++ b/charts/plex/.helmignore @@ -0,0 +1,24 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ +# OWNERS file for Kubernetes +OWNERS diff --git a/charts/plex/Chart.yaml b/charts/plex/Chart.yaml new file mode 100644 index 00000000..f3e6efc6 --- /dev/null +++ b/charts/plex/Chart.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +appVersion: 1.19.1.2645-ccb6eb67e +description: Plex Media Server +name: plex +version: 1.0.0 +keywords: + - plex +home: https://plex.tv/ +icon: https://www.plex.tv/wp-content/uploads/2018/01/pmp-icon-1.png +sources: + - https://github.com/billimek/billimek-charts/tree/master/charts/plex + - https://hub.docker.com/r/plexinc/pms-docker/ +maintainers: + - name: billimek + email: jeff@billimek.com diff --git a/charts/plex/OWNERS b/charts/plex/OWNERS new file mode 100644 index 00000000..51f88652 --- /dev/null +++ b/charts/plex/OWNERS @@ -0,0 +1,4 @@ +approvers: +- billimek +reviewers: +- billimek \ No newline at end of file diff --git a/charts/plex/README.md b/charts/plex/README.md new file mode 100644 index 00000000..cba7fa64 --- /dev/null +++ b/charts/plex/README.md @@ -0,0 +1,48 @@ +# Plex Media Server helm chart + +This is an opinionated helm chart for Plex Media Center based on the [official container image](https://hub.docker.com/r/plexinc/pms-docker/). + +This chart is 'forked' from the excellent [munnerz/kube-plex](https://github.com/munnerz/kube-plex) repo in order to allow for more timely updates and publishing to a helm registry. **NOTE:** This chart is not compatible as an upgrade from the `kube-plex` chart. + +## TL;DR + +```shell +helm repo add billimek https://billimek.com/billimek-charts/ +helm install billimek/plex +``` + +## Installing the Chart + +To install the chart with the release name `my-release`: + +```console +helm install plex billimek/plex +``` + +## Uninstalling the Chart + +To uninstall/delete the `plex` deployment: + +```console +helm delete plex +``` + +The command removes all the Kubernetes components associated with the chart and deletes the release. + +## Configuration + +Read through the [values.yaml](https://github.com/billimek/billimek-charts/blob/master/charts/plex/values.yaml) file. It has several commented out suggested values. + +Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, + +```console +helm install plex \ + --set timezone="America/New York" \ + billimek/plex +``` + +Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example, + +```console +helm install plex -f values.yaml billimek/plex +``` diff --git a/charts/plex/templates/NOTES.txt b/charts/plex/templates/NOTES.txt new file mode 100644 index 00000000..c48a248a --- /dev/null +++ b/charts/plex/templates/NOTES.txt @@ -0,0 +1,19 @@ +1. Get the application URL by running these commands: +{{- if .Values.ingress.enabled }} +{{- range $host := .Values.ingress.hosts }} + http{{ if $.Values.ingress.tls }}s{{ end }}://{{ . }} +{{- end }} +{{- else if contains "NodePort" .Values.service.type }} + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "plex.fullname" . }}) + export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") + echo http://$NODE_IP:$NODE_PORT +{{- else if contains "LoadBalancer" .Values.service.type }} + NOTE: It may take a few minutes for the LoadBalancer IP to be available. + You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "plex.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "plex.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") + echo http://$SERVICE_IP:{{ .Values.service.port }} +{{- else if contains "ClusterIP" .Values.service.type }} + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "plex.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + echo "Visit http://127.0.0.1:8080 to use your application" + kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:80 +{{- end }} diff --git a/charts/plex/templates/_helpers.tpl b/charts/plex/templates/_helpers.tpl new file mode 100644 index 00000000..42591267 --- /dev/null +++ b/charts/plex/templates/_helpers.tpl @@ -0,0 +1,63 @@ +{{/* vim: set filetype=mustache: */}} +{{/* +Expand the name of the chart. +*/}} +{{- define "plex.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "plex.fullname" -}} +{{- if .Values.fullnameOverride -}} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} +{{- else -}} +{{- $name := default .Chart.Name .Values.nameOverride -}} +{{- if contains $name .Release.Name -}} +{{- .Release.Name | trunc 63 | trimSuffix "-" -}} +{{- else -}} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} +{{- end -}} +{{- end -}} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "plex.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{/* +Common labels +*/}} +{{- define "plex.labels" -}} +helm.sh/chart: {{ include "plex.chart" . }} +{{ include "plex.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end -}} + +{{/* +Selector labels +*/}} +{{- define "plex.selectorLabels" -}} +app.kubernetes.io/name: {{ include "plex.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end -}} + +{{/* +Create the name of the service account to use +*/}} +{{- define "plex.serviceAccountName" -}} +{{- if .Values.serviceAccount.create -}} + {{ default (include "plex.fullname" .) .Values.serviceAccount.name }} +{{- else -}} + {{ default "default" .Values.serviceAccount.name }} +{{- end -}} +{{- end -}} diff --git a/charts/plex/templates/deployment.yaml b/charts/plex/templates/deployment.yaml new file mode 100644 index 00000000..2d182707 --- /dev/null +++ b/charts/plex/templates/deployment.yaml @@ -0,0 +1,184 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "plex.fullname" . }} + labels: + {{- include "plex.labels" . | nindent 4 }} + {{- if .Values.deploymentAnnotations }} + annotations: + {{- range $key, $value := .Values.deploymentAnnotations }} + {{ $key }}: {{ $value | quote }} + {{- end }} + {{- end }} +spec: + replicas: 1 + revisionHistoryLimit: 3 + strategy: + type: {{ .Values.strategyType }} + selector: + matchLabels: + {{- include "plex.selectorLabels" . | nindent 6 }} + template: + metadata: + labels: + {{- include "plex.selectorLabels" . | nindent 8 }} + {{- if .Values.podAnnotations }} + annotations: + {{- range $key, $value := .Values.podAnnotations }} + {{ $key }}: {{ $value | quote }} + {{- end }} + {{- end }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + securityContext: + {{- toYaml .Values.podSecurityContext | nindent 8 }} + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + ports: + - name: pms + containerPort: 32400 + - name: http + containerPort: 32400 + - name: https + containerPort: 32443 + env: + - name: TZ + value: "{{ .Values.timezone }}" + # TODO: move this to a secret? + - name: PLEX_CLAIM + value: "{{ .Values.claimToken }}" + # plex env vars + - name: PMS_INTERNAL_ADDRESS + value: http://{{ template "plex.fullname" . }}:32400 + - name: PMS_IMAGE + value: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" + - name: KUBE_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + - name: TRANSCODE_PVC + {{- if .Values.persistence.transcode.claimName }} + value: "{{ .Values.persistence.transcode.claimName }}" + {{- else }} + value: "{{ template "plex.fullname" . }}-transcode" + {{- end }} + - name: DATA_PVC + {{- if .Values.persistence.data.claimName }} + value: "{{ .Values.persistence.data.claimName }}" + {{- else }} + value: "{{ template "plex.fullname" . }}-data" + {{- end }} + - name: CONFIG_PVC + {{- if .Values.persistence.config.claimName }} + value: "{{ .Values.persistence.config.claimName }}" + {{- else }} + value: "{{ template "plex.fullname" . }}-config" + {{- end }} + {{- if .Values.proxy.enable }} + {{- if .Values.proxy.http }} + - name: "HTTP_PROXY" + value: "{{.Values.proxy.http}}" + {{- end }} + {{- if .Values.proxy.https }} + - name: "HTTPS_PROXY" + value: "{{.Values.proxy.https}}" + {{- end }} + {{- if .Values.proxy.noproxy }} + - name: "NO_PROXY" + value: "{{.Values.proxy.noproxy}}" + {{- end }} + {{- end }} + readinessProbe: + httpGet: + path: /identity + port: 32400 + initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.readiness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }} + livenessProbe: + httpGet: + path: /identity + port: 32400 + initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.liveness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }} + volumeMounts: + - name: data + mountPath: /data + {{- if .Values.persistence.data.subPath }} + subPath: {{ .Values.persistence.data.subPath }} + {{ end }} + - name: config + mountPath: /config + {{- if .Values.persistence.config.subPath }} + subPath: {{ .Values.persistence.config.subPath }} + {{ end }} + - name: transcode + mountPath: /transcode + {{- if .Values.persistence.transcode.subPath }} + subPath: {{ .Values.persistence.transcode.subPath }} + {{ end }} + {{- range .Values.persistence.extraData }} + - mountPath: "/data-{{ .name }}" + name: "extradata-{{ .name }}" + {{- end }} + - name: shared + mountPath: /shared + resources: + {{- toYaml .Values.resources | nindent 12 }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + volumes: + - name: data + persistentVolumeClaim: +{{- if .Values.persistence.data.claimName }} + claimName: "{{ .Values.persistence.data.claimName }}" +{{- else }} + claimName: "{{ template "plex.fullname" . }}-data" +{{- end }} + - name: config + persistentVolumeClaim: +{{- if .Values.persistence.config.claimName }} + claimName: "{{ .Values.persistence.config.claimName }}" +{{- else }} + claimName: "{{ template "plex.fullname" . }}-config" +{{- end }} + - name: transcode +{{- if .Values.persistence.transcode.enabled }} + persistentVolumeClaim: +{{- if .Values.persistence.transcode.claimName }} + claimName: "{{ .Values.persistence.transcode.claimName }}" +{{- else }} + claimName: "{{ template "plex.fullname" . }}-transcode" +{{- end }} +{{- else }} + emptyDir: {} +{{- end }} +{{- range .Values.persistence.extraData }} + - name: "extradata-{{ .name }}" + persistentVolumeClaim: +{{- if .claimName }} + claimName: "{{ .claimName }}" +{{- else }} + claimName: "extradata-{{ .name }}" +{{- end }} +{{- end }} + - name: shared + emptyDir: {} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/charts/plex/templates/ingress.yaml b/charts/plex/templates/ingress.yaml new file mode 100644 index 00000000..02fba3e8 --- /dev/null +++ b/charts/plex/templates/ingress.yaml @@ -0,0 +1,40 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "plex.fullname" . -}} +{{- $svcPort := .Values.service.port -}} +{{- $ingressPath := .Values.ingress.path -}} +{{- if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}} +apiVersion: networking.k8s.io/v1beta1 +{{- else -}} +apiVersion: extensions/v1beta1 +{{- end }} +kind: Ingress +metadata: + name: {{ $fullName }} + labels: + {{- include "plex.labels" . | nindent 4 }} + {{- with .Values.ingress.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: +{{- if .Values.ingress.tls }} + tls: + {{- range .Values.ingress.tls }} + - hosts: + {{- range .hosts }} + - {{ . | quote }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} +{{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ . | quote }} + http: + paths: + - path: {{ $ingressPath }} + backend: + serviceName: {{ $fullName }} + servicePort: {{ $svcPort }} + {{- end }} +{{- end }} diff --git a/charts/plex/templates/service.yaml b/charts/plex/templates/service.yaml new file mode 100644 index 00000000..563a9c7e --- /dev/null +++ b/charts/plex/templates/service.yaml @@ -0,0 +1,54 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "plex.fullname" . }} + labels: + {{- include "plex.labels" . | nindent 4 }} +{{- if .Values.service.labels }} +{{ toYaml .Values.service.labels | indent 4 }} +{{- end }} +{{- with .Values.service.annotations }} + annotations: +{{ toYaml . | indent 4 }} +{{- end }} +spec: +{{- if (or (eq .Values.service.type "ClusterIP") (empty .Values.service.type)) }} + type: ClusterIP + {{- if .Values.service.clusterIP }} + clusterIP: {{ .Values.service.clusterIP }} + {{end}} +{{- else if eq .Values.service.type "LoadBalancer" }} + type: {{ .Values.service.type }} + {{- if .Values.service.loadBalancerIP }} + loadBalancerIP: {{ .Values.service.loadBalancerIP }} + {{- end }} + {{- if .Values.service.loadBalancerSourceRanges }} + loadBalancerSourceRanges: +{{ toYaml .Values.service.loadBalancerSourceRanges | indent 4 }} + {{- end -}} +{{- else }} + type: {{ .Values.service.type }} +{{- end }} +{{- if .Values.service.externalIPs }} + externalIPs: +{{ toYaml .Values.service.externalIPs | indent 4 }} +{{- end }} + {{- if .Values.service.externalTrafficPolicy }} + externalTrafficPolicy: {{ .Values.service.externalTrafficPolicy }} + {{- end }} + ports: + - name: pms + port: {{ .Values.service.port }} + protocol: TCP + targetPort: pms +{{ if (and (eq .Values.service.type "NodePort") (not (empty .Values.service.nodePort))) }} + nodePort: {{.Values.service.nodePort}} +{{ end }} + - name: http + port: 80 + targetPort: pms + - name: https + port: 443 + targetPort: 32443 + selector: + {{- include "plex.selectorLabels" . | nindent 4 }} diff --git a/charts/plex/templates/volumes.yaml b/charts/plex/templates/volumes.yaml new file mode 100644 index 00000000..dcde4cd2 --- /dev/null +++ b/charts/plex/templates/volumes.yaml @@ -0,0 +1,57 @@ +{{- if and (not .Values.persistence.transcode.claimName) .Values.persistence.transcode.enabled }} +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: {{ template "plex.fullname" . }}-transcode + labels: + {{- include "plex.labels" . | nindent 4 }} + component: transcode +spec: + accessModes: + - {{ .Values.persistence.config.accessMode | quote }} + resources: + requests: + storage: {{ .Values.persistence.transcode.size | quote }} +{{- if .Values.persistence.transcode.storageClass }} + storageClassName: {{ .Values.persistence.transcode.storageClass | quote }} +{{- end }} +--- +{{- end }} +{{- if not .Values.persistence.config.claimName }} +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: {{ template "plex.fullname" . }}-config + labels: + {{- include "plex.labels" . | nindent 4 }} + component: config +spec: + accessModes: + - {{ .Values.persistence.config.accessMode | quote }} + resources: + requests: + storage: {{ .Values.persistence.config.size | quote }} +{{- if .Values.persistence.config.storageClass }} + storageClassName: {{ .Values.persistence.config.storageClass | quote }} +{{- end }} +--- +{{- end }} +{{- if not .Values.persistence.data.claimName }} +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: {{ template "plex.fullname" . }}-data + labels: + {{- include "plex.labels" . | nindent 4 }} + component: data +spec: + accessModes: + - {{ .Values.persistence.data.accessMode | quote }} + resources: + requests: + storage: {{ .Values.persistence.data.size | quote }} +{{- if .Values.persistence.data.storageClass }} + storageClassName: {{ .Values.persistence.data.storageClass | quote }} +{{- end }} +--- +{{- end }} diff --git a/charts/plex/values.yaml b/charts/plex/values.yaml new file mode 100644 index 00000000..cc80ca8a --- /dev/null +++ b/charts/plex/values.yaml @@ -0,0 +1,156 @@ +image: + repository: plexinc/pms-docker + tag: 1.19.1.2645-ccb6eb67e + pullPolicy: IfNotPresent + +# Override this with the plex claim token from plex.tv/claim +claimToken: "" + +# Set the timezone of the plex server +timezone: "UTC" + +# upgrade strategy type (e.g. Recreate or RollingUpdate) +strategyType: Recreate + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +service: + type: ClusterIP + port: 32400 + ## Specify the nodePort value for the LoadBalancer and NodePort service types. + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + ## + # nodePort: + ## Provide any additional annotations which may be required. This can be used to + ## set the LoadBalancer service type to internal only. + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer + ## + annotations: {} + labels: {} + ## Use loadBalancerIP to request a specific static IP, + ## otherwise leave blank + ## + loadBalancerIP: + # loadBalancerSourceRanges: [] + ## Set the externalTrafficPolicy in the Service to either Cluster or Local + # externalTrafficPolicy: Cluster + +ingress: + enabled: false + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + path: / + hosts: + - chart-example.local + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + +persistence: + transcode: + # Optionally specify claimName to manually override the PVC to be used for + # the transcode directory. If claimName is specified, storageClass and size + # are ignored. + ## claimName: "plex-transcode-pvc" + # Optionally specify a storage class to be used for the transcode directory. + # If not specified and claimName is not specified, the default storage + # class will be used. + storageClass: "" + # subPath: some-subpath + # The requested size of the volume to be used when creating a + # PersistentVolumeClaim. + size: 20Gi + # Access mode for this volume + accessMode: ReadWriteOnce + data: + # Optionally specify claimName to manually override the PVC to be used for + # the data directory. If claimName is specified, storageClass and size are + # ignored. + ## claimName: "plex-data-pvc" + # Optionally specify a storage class to be used for the data directory. + # If not specified and claimName is not specified, the default storage + # class will be used. + storageClass: "" + # subPath: some-subpath + # The requested size of the volume to be used when creating a + # PersistentVolumeClaim. + size: 40Gi + # Access mode for this volume + accessMode: ReadWriteOnce + extraData: [] + # Optionally specifify additional Data mounts. These will be mounted as + # /data-${name}. This should be in the same format as the above 'data', + # with the additional field 'name' + # - claimName: "special-tv" + # name: 'foo' + + config: + # Optionally specify claimName to manually override the PVC to be used for + # the config directory. If claimName is specified, storageClass and size + # are ignored. + ## claimName: "plex-config-pvc" + # Optionally specify a storage class to be used for the config directory. + # If not specified and claimName is not specified, the default storage + # class will be used. + # subPath: some-subpath + storageClass: "" + # The requested size of the volume to be used when creating a + # PersistentVolumeClaim. + size: 20Gi + # Access mode for this volume + accessMode: ReadWriteOnce + +# Probes configuration +probes: + liveness: + initialDelaySeconds: 15 + failureThreshold: 5 + timeoutSeconds: 5 + readiness: + initialDelaySeconds: 15 + failureThreshold: 5 + timeoutSeconds: 5 + +resources: {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +nodeSelector: {} + +tolerations: [] + +affinity: {} + +podAnnotations: {} + +deploymentAnnotations: {} + +proxy: + # This allows to set a proxy environment variable, which PMS uses to fetch the token and assets like movie cover + enable: false + # http: "http://proxy:8080" + # https: "https://proxy:8080" + # noproxy: "localhost,127.0.0.1,10.96.0.0/12,10.244.0.0/12"