Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
charts/*/charts
charts/*/Chart.lock
values-dev.yaml
values.yaml
14 changes: 14 additions & 0 deletions charts/plex/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
apiVersion: v2
name: plex
description: Media server
type: application
version: 0.1.0
appVersion: "release-1.41.3.9314-a0bfb8370"
icon: "https://www.plex.tv/wp-content/themes/plex/assets/img/plex-logo.svg"
dependencies:
- name: common
version: 0.3.4
repository: https://bubylou.github.io/Arr-Stack/
maintainers:
- name: bubylou
email: [email protected]
1 change: 1 addition & 0 deletions charts/plex/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# plex
2 changes: 2 additions & 0 deletions charts/plex/ci/test-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ingress:
enabled: true
1 change: 1 addition & 0 deletions charts/plex/templates/NOTES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{{- include "common.notes" . }}
1 change: 1 addition & 0 deletions charts/plex/templates/deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{{- include "common.deployment" . }}
1 change: 1 addition & 0 deletions charts/plex/templates/ingress.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{{- include "common.ingress" . }}
1 change: 1 addition & 0 deletions charts/plex/templates/service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{{- include "common.service" . -}}
98 changes: 98 additions & 0 deletions charts/plex/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
# Default values for plex.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

replicaCount: 1

image:
repository: ghcr.io/hotio/plex
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""

imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

env: []
# - name: TZ
# value: Etc/Utc

podAnnotations: {}
podLabels: {}

podSecurityContext: {}
# fsGroup: 2000

securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000

service:
type: ClusterIP
port: 32400

ingress:
enabled: false
className: ""
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths:
- path: /
pathType: ImplementationSpecific
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local

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

livenessProbe:
httpGet:
path: /health
port: http
readinessProbe:
httpGet:
path: /health
port: http

# Additional volumes on the output Deployment definition.
volumes: []
# - name: plex-config
# persistentVolumeClaim:
# claimName: plex-pvc
# - name: nfs-nas01
# nfs:
# server: nas01.local
# path: /srv/share

# Additional volumeMounts on the output Deployment definition.
volumeMounts: []
# - name: plex-config
# mountPath: "/config"
# - name: nfs-nas01
# mountPath: "/data/tv"
# subPath: TV

nodeSelector: {}

tolerations: []

affinity: {}
Loading