test_values.yaml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # Default values
  2. # This is a YAML-formatted file.
  3. # Declare variables to be passed into your templates.
  4. # The Image to use for PLEX
  5. image:
  6. repository: plexinc/pms-docker
  7. tag: 1.20.2.3402-0fec14d92
  8. pullPolicy: IfNotPresent
  9. ##### START --> Official PLEX container environment variables
  10. # Override this with the plex claim token from plex.tv/claim
  11. claimToken: ""
  12. # Set the timezone of the plex server
  13. timezone: "Etc/UTC"
  14. # add your pod network subnet to the `List of IP addresses and networks that are allowed without auth`
  15. # This will override the manual settings, so only use this if you will not need to change it manually.
  16. # This list will be automatically converted to a command seperated string when passed to the container.
  17. # You would specify this when using helm CLI with --set allowedNetworks="{127.0.0.1,10.54.2.0/24}"
  18. # allowedNetworks:
  19. # - 127.0.0.1
  20. # - 10.54.2.0/24
  21. # Instruct the Plex Media Server Container to Change the Configuration Directory Ownership
  22. # Default is true, you would only need to set this if you want to disable it.
  23. # changeConfigDirOwnership: true
  24. # advertiseIp This variable defines the additional IPs on which the server may be be found.
  25. # For example: http://10.1.1.23:32400.
  26. # This adds to the list where the server advertises that it can be found.
  27. # See https://hub.docker.com/r/plexinc/pms-docker/ for details
  28. # advertiseIp: "http://10.1.1.23:32400"
  29. # Set The user id of the plex user created inside the container.
  30. # See https://hub.docker.com/r/plexinc/pms-docker/ for details
  31. # plexUid: 1000
  32. # Set The group id of the plex group created inside the container
  33. # See https://hub.docker.com/r/plexinc/pms-docker/ for details
  34. # plexGid: 1000
  35. ##### END --> Official PLEX container environment variables
  36. # You can add as many Additional ENV variables here
  37. # The following is the same as --set extraEnv.TMPDIR="/transcode"
  38. # extraEnv:
  39. # TMPDIR: /transcode
  40. # upgrade strategy type (e.g. Recreate or RollingUpdate)
  41. strategyType: Recreate
  42. plexServiceTCP:
  43. port: 32400
  44. hostNetwork: false
  45. transcodeHostPathEnabled: false
  46. dataHostPathEnabled: false
  47. configHostPathEnabled: false
  48. gpuConfiguration: {}
  49. emptyDirVolumes: true