From 868900c84f87cd8a657c818adde44a179d865e44 Mon Sep 17 00:00:00 2001 From: Waqar Ahmed Date: Tue, 8 Dec 2020 03:37:18 +0500 Subject: [PATCH] Add test values yaml file --- test/plex/2.1.0/questions.yaml | 4 +- test/plex/2.1.0/test_values.yaml | 72 ++++++++++++++++++++++++++++++++ test/plex/2.1.0/values.yaml | 2 +- 3 files changed, 74 insertions(+), 4 deletions(-) create mode 100644 test/plex/2.1.0/test_values.yaml diff --git a/test/plex/2.1.0/questions.yaml b/test/plex/2.1.0/questions.yaml index 52e778e8522..042dbdfcbdb 100644 --- a/test/plex/2.1.0/questions.yaml +++ b/test/plex/2.1.0/questions.yaml @@ -152,9 +152,8 @@ questions: default: false show_subquestions_if: true subquestions: - - variable: transcodeHostpath + - variable: transcodeHostPath label: "Specify HostPath for Transcode" - group: "Storage" schema: type: hostpath required: true @@ -230,7 +229,6 @@ questions: subquestions: - variable: configHostPath label: "Specify HostPath for Config" - group: "Storage" schema: type: hostpath required: true diff --git a/test/plex/2.1.0/test_values.yaml b/test/plex/2.1.0/test_values.yaml new file mode 100644 index 00000000000..e87d30077c8 --- /dev/null +++ b/test/plex/2.1.0/test_values.yaml @@ -0,0 +1,72 @@ +# Default values +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +# The Image to use for PLEX + +image: + repository: plexinc/pms-docker + tag: 1.20.2.3402-0fec14d92 + pullPolicy: IfNotPresent + +##### START --> Official PLEX container environment variables +# Override this with the plex claim token from plex.tv/claim +claimToken: "" + +# Set the timezone of the plex server +timezone: "Etc/UTC" + +# add your pod network subnet to the `List of IP addresses and networks that are allowed without auth` +# This will override the manual settings, so only use this if you will not need to change it manually. +# This list will be automatically converted to a command seperated string when passed to the container. +# You would specify this when using helm CLI with --set allowedNetworks="{127.0.0.1,10.54.2.0/24}" +# allowedNetworks: +# - 127.0.0.1 +# - 10.54.2.0/24 + +# Instruct the Plex Media Server Container to Change the Configuration Directory Ownership +# Default is true, you would only need to set this if you want to disable it. +# changeConfigDirOwnership: true + +# advertiseIp This variable defines the additional IPs on which the server may be be found. +# For example: http://10.1.1.23:32400. +# This adds to the list where the server advertises that it can be found. +# See https://hub.docker.com/r/plexinc/pms-docker/ for details +# advertiseIp: "http://10.1.1.23:32400" + +# Set The user id of the plex user created inside the container. +# See https://hub.docker.com/r/plexinc/pms-docker/ for details +# plexUid: 1000 + +# Set The group id of the plex group created inside the container +# See https://hub.docker.com/r/plexinc/pms-docker/ for details +# plexGid: 1000 + +##### END --> Official PLEX container environment variables + +# You can add as many Additional ENV variables here +# The following is the same as --set extraEnv.TMPDIR="/transcode" +# extraEnv: +# TMPDIR: /transcode + +# upgrade strategy type (e.g. Recreate or RollingUpdate) +strategyType: Recreate + +plexServiceTCP: + port: 32400 + +hostNetwork: false + +transcodeHostPathEnabled: false +dataHostPathEnabled: false +configHostPathEnabled: false + +proxy: + # This allows to set a proxy environment variable, which PMS uses to fetch the token and assets like movie cover + enabled: 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" + +gpuConfiguration: {} +emptyDirVolumes: true diff --git a/test/plex/2.1.0/values.yaml b/test/plex/2.1.0/values.yaml index 53379d62a92..f1a1754a549 100644 --- a/test/plex/2.1.0/values.yaml +++ b/test/plex/2.1.0/values.yaml @@ -14,7 +14,7 @@ image: claimToken: "" # Set the timezone of the plex server -timezone: "UTC" +timezone: "Etc/UTC" # add your pod network subnet to the `List of IP addresses and networks that are allowed without auth` # This will override the manual settings, so only use this if you will not need to change it manually.