app_versions.json 174 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565
  1. {
  2. "2.0.1": {
  3. "healthy": true,
  4. "supported": false,
  5. "healthy_error": null,
  6. "location": "/__w/charts/charts/charts/plex/2.0.1",
  7. "last_update": "2024-02-06 10:03:00",
  8. "required_features": [
  9. "normalize/acl",
  10. "definitions/gpuConfiguration",
  11. "definitions/timezone",
  12. "normalize/ixVolume"
  13. ],
  14. "human_version": "1.32.8.7639_2.0.1",
  15. "version": "2.0.1",
  16. "chart_metadata": {
  17. "name": "plex",
  18. "description": "Plex is a media server that allows you to stream your media to any Plex client.",
  19. "annotations": {
  20. "title": "Plex"
  21. },
  22. "type": "application",
  23. "version": "2.0.1",
  24. "apiVersion": "v2",
  25. "appVersion": "1.32.8.7639",
  26. "kubeVersion": ">=1.16.0-0",
  27. "maintainers": [
  28. {
  29. "name": "truenas",
  30. "url": "https://www.truenas.com/",
  31. "email": "dev@ixsystems.com"
  32. }
  33. ],
  34. "dependencies": [
  35. {
  36. "name": "common",
  37. "repository": "file://../../../common",
  38. "version": "1.2.9"
  39. }
  40. ],
  41. "home": "https://plex.tv/",
  42. "icon": "https://media.sys.truenas.net/apps/plex/icons/icon.png",
  43. "sources": [
  44. "https://plex.tv/",
  45. "https://github.com/truenas/charts/tree/master/charts/plex",
  46. "https://hub.docker.com/r/plexinc/pms-docker/"
  47. ],
  48. "keywords": [
  49. "plex"
  50. ]
  51. },
  52. "app_metadata": {
  53. "runAsContext": [
  54. {
  55. "userName": "root",
  56. "groupName": "root",
  57. "gid": 0,
  58. "uid": 0,
  59. "description": "Plex runs as root user."
  60. }
  61. ],
  62. "capabilities": [
  63. {
  64. "name": "CHOWN",
  65. "description": "Plex is able to chown files."
  66. },
  67. {
  68. "name": "FOWNER",
  69. "description": "Plex is able to bypass permission checks for it's sub-processes."
  70. },
  71. {
  72. "name": "DAC_OVERRIDE",
  73. "description": "Plex is able to bypass permission checks."
  74. },
  75. {
  76. "name": "SETGID",
  77. "description": "Plex is able to set group ID for it's sub-processes."
  78. },
  79. {
  80. "name": "SETUID",
  81. "description": "Plex is able to set user ID for it's sub-processes."
  82. },
  83. {
  84. "name": "KILL",
  85. "description": "Plex is able to kill processes."
  86. }
  87. ],
  88. "hostMounts": []
  89. },
  90. "schema": {
  91. "groups": [
  92. {
  93. "name": "Plex Configuration",
  94. "description": "Configure Plex"
  95. },
  96. {
  97. "name": "User and Group Configuration",
  98. "description": "Configure User and Group for Plex"
  99. },
  100. {
  101. "name": "Advanced Pod Configuration",
  102. "description": "Configure Advanced Pod Options for Plex"
  103. },
  104. {
  105. "name": "Network Configuration",
  106. "description": "Configure Network for Plex"
  107. },
  108. {
  109. "name": "Storage Configuration",
  110. "description": "Configure Storage for Plex"
  111. },
  112. {
  113. "name": "Resources Configuration",
  114. "description": "Configure Resources for Plex"
  115. }
  116. ],
  117. "portals": {
  118. "web_portal": {
  119. "protocols": [
  120. "$kubernetes-resource_configmap_portal_protocol"
  121. ],
  122. "host": [
  123. "$kubernetes-resource_configmap_portal_host"
  124. ],
  125. "ports": [
  126. "$kubernetes-resource_configmap_portal_port"
  127. ],
  128. "path": "$kubernetes-resource_configmap_portal_path"
  129. }
  130. },
  131. "questions": [
  132. {
  133. "variable": "TZ",
  134. "group": "Plex Configuration",
  135. "label": "Timezone",
  136. "schema": {
  137. "type": "string",
  138. "default": "America/Los_Angeles",
  139. "required": true,
  140. "$ref": [
  141. "definitions/timezone"
  142. ],
  143. "enum": [
  144. {
  145. "value": "Asia/Damascus",
  146. "description": "'Asia/Damascus' timezone"
  147. },
  148. {
  149. "value": "Asia/Saigon",
  150. "description": "'Asia/Saigon' timezone"
  151. }
  152. ]
  153. }
  154. },
  155. {
  156. "variable": "plexConfig",
  157. "label": "",
  158. "group": "Plex Configuration",
  159. "schema": {
  160. "type": "dict",
  161. "attrs": [
  162. {
  163. "variable": "claimToken",
  164. "label": "Claim Token",
  165. "description": "The claim token for the server to obtain a real server token.\nIf not provided, server is will not be automatically logged in.\nIf server is already logged in, this parameter is ignored.\nYou can obtain a claim token to login your server to your plex account\nby visiting https://www.plex.tv/claim.\n",
  166. "schema": {
  167. "type": "string",
  168. "default": "",
  169. "private": true
  170. }
  171. },
  172. {
  173. "variable": "imageSelector",
  174. "label": "Image",
  175. "description": "The image to use for Plex.\n",
  176. "schema": {
  177. "type": "string",
  178. "default": "image",
  179. "required": true,
  180. "enum": [
  181. {
  182. "value": "image",
  183. "description": "Plex Official Image"
  184. },
  185. {
  186. "value": "plexPassImage",
  187. "description": "Plex Pass Image"
  188. }
  189. ]
  190. }
  191. },
  192. {
  193. "variable": "additionalEnvs",
  194. "label": "Additional Environment Variables",
  195. "description": "Configure additional environment variables for Plex.",
  196. "schema": {
  197. "type": "list",
  198. "default": [],
  199. "items": [
  200. {
  201. "variable": "env",
  202. "label": "Environment Variable",
  203. "schema": {
  204. "type": "dict",
  205. "attrs": [
  206. {
  207. "variable": "name",
  208. "label": "Name",
  209. "schema": {
  210. "type": "string",
  211. "required": true
  212. }
  213. },
  214. {
  215. "variable": "value",
  216. "label": "Value",
  217. "schema": {
  218. "type": "string",
  219. "required": true
  220. }
  221. }
  222. ]
  223. }
  224. }
  225. ]
  226. }
  227. }
  228. ]
  229. }
  230. },
  231. {
  232. "variable": "plexID",
  233. "label": "",
  234. "group": "User and Group Configuration",
  235. "schema": {
  236. "type": "dict",
  237. "attrs": [
  238. {
  239. "variable": "user",
  240. "label": "User ID",
  241. "description": "The user id that Plex files will be owned by.",
  242. "schema": {
  243. "type": "int",
  244. "min": 568,
  245. "default": 568,
  246. "required": true
  247. }
  248. },
  249. {
  250. "variable": "group",
  251. "label": "Group ID",
  252. "description": "The group id that Plex files will be owned by.",
  253. "schema": {
  254. "type": "int",
  255. "min": 568,
  256. "default": 568,
  257. "required": true
  258. }
  259. }
  260. ]
  261. }
  262. },
  263. {
  264. "variable": "podOptions",
  265. "label": "",
  266. "group": "Advanced Pod Configuration",
  267. "schema": {
  268. "type": "dict",
  269. "attrs": [
  270. {
  271. "variable": "dnsConfig",
  272. "label": "Advanced DNS Configuration",
  273. "schema": {
  274. "type": "dict",
  275. "attrs": [
  276. {
  277. "variable": "options",
  278. "label": "DNS Options",
  279. "schema": {
  280. "type": "list",
  281. "items": [
  282. {
  283. "variable": "optionsEntry",
  284. "label": "DNS Option Entry",
  285. "schema": {
  286. "type": "dict",
  287. "attrs": [
  288. {
  289. "variable": "name",
  290. "label": "Option Name",
  291. "schema": {
  292. "type": "string",
  293. "required": true
  294. }
  295. },
  296. {
  297. "variable": "value",
  298. "label": "Option Value",
  299. "schema": {
  300. "type": "string",
  301. "required": true
  302. }
  303. }
  304. ]
  305. }
  306. }
  307. ]
  308. }
  309. }
  310. ]
  311. }
  312. }
  313. ]
  314. }
  315. },
  316. {
  317. "variable": "plexNetwork",
  318. "label": "",
  319. "group": "Network Configuration",
  320. "schema": {
  321. "type": "dict",
  322. "attrs": [
  323. {
  324. "variable": "webPort",
  325. "label": "WebUI Port",
  326. "description": "The port for Plex WebUI",
  327. "schema": {
  328. "type": "int",
  329. "default": 32400,
  330. "min": 9000,
  331. "max": 65535,
  332. "required": true
  333. }
  334. },
  335. {
  336. "variable": "hostNetwork",
  337. "label": "Host Network",
  338. "description": "Bind to the host network. It's recommended to keep this disabled.\n",
  339. "schema": {
  340. "type": "boolean",
  341. "default": false
  342. }
  343. }
  344. ]
  345. }
  346. },
  347. {
  348. "variable": "plexStorage",
  349. "label": "",
  350. "group": "Storage Configuration",
  351. "schema": {
  352. "type": "dict",
  353. "attrs": [
  354. {
  355. "variable": "data",
  356. "label": "Plex Data Storage",
  357. "description": "The path to store Plex Data.",
  358. "schema": {
  359. "type": "dict",
  360. "attrs": [
  361. {
  362. "variable": "type",
  363. "label": "Type",
  364. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  365. "schema": {
  366. "type": "string",
  367. "required": true,
  368. "immutable": true,
  369. "default": "ixVolume",
  370. "enum": [
  371. {
  372. "value": "hostPath",
  373. "description": "Host Path (Path that already exists on the system)"
  374. },
  375. {
  376. "value": "ixVolume",
  377. "description": "ixVolume (Dataset created automatically by the system)"
  378. }
  379. ]
  380. }
  381. },
  382. {
  383. "variable": "ixVolumeConfig",
  384. "label": "ixVolume Configuration",
  385. "description": "The configuration for the ixVolume dataset.",
  386. "schema": {
  387. "type": "dict",
  388. "show_if": [
  389. [
  390. "type",
  391. "=",
  392. "ixVolume"
  393. ]
  394. ],
  395. "$ref": [
  396. "normalize/ixVolume"
  397. ],
  398. "attrs": [
  399. {
  400. "variable": "aclEnable",
  401. "label": "Enable ACL",
  402. "description": "Enable ACL for the dataset.",
  403. "schema": {
  404. "type": "boolean",
  405. "default": false
  406. }
  407. },
  408. {
  409. "variable": "datasetName",
  410. "label": "Dataset Name",
  411. "description": "The name of the dataset to use for storage.",
  412. "schema": {
  413. "type": "string",
  414. "required": true,
  415. "immutable": true,
  416. "hidden": true,
  417. "default": "data"
  418. }
  419. },
  420. {
  421. "variable": "aclEntries",
  422. "label": "ACL Configuration",
  423. "schema": {
  424. "type": "dict",
  425. "show_if": [
  426. [
  427. "aclEnable",
  428. "=",
  429. true
  430. ]
  431. ],
  432. "attrs": [
  433. {
  434. "variable": "path",
  435. "label": "Path",
  436. "description": "Path to perform ACL",
  437. "schema": {
  438. "type": "string",
  439. "hidden": true
  440. }
  441. },
  442. {
  443. "variable": "entries",
  444. "label": "ACL Entries",
  445. "description": "ACL Entries",
  446. "schema": {
  447. "type": "list",
  448. "items": [
  449. {
  450. "variable": "aclEntry",
  451. "label": "ACL Entry",
  452. "schema": {
  453. "type": "dict",
  454. "attrs": [
  455. {
  456. "variable": "id_type",
  457. "label": "ID Type",
  458. "schema": {
  459. "type": "string",
  460. "enum": [
  461. {
  462. "value": "USER",
  463. "description": "Entry is for a USER"
  464. },
  465. {
  466. "value": "GROUP",
  467. "description": "Entry is for a GROUP"
  468. }
  469. ],
  470. "default": "USER"
  471. }
  472. },
  473. {
  474. "variable": "id",
  475. "label": "ID",
  476. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  477. "schema": {
  478. "type": "int",
  479. "required": true,
  480. "min": 0
  481. }
  482. },
  483. {
  484. "variable": "access",
  485. "label": "Access",
  486. "schema": {
  487. "type": "string",
  488. "enum": [
  489. {
  490. "value": "READ",
  491. "description": "Read Access"
  492. },
  493. {
  494. "value": "MODIFY",
  495. "description": "Modify Access"
  496. },
  497. {
  498. "value": "FULL_CONTROL",
  499. "description": "FULL_CONTROL Access"
  500. }
  501. ]
  502. }
  503. }
  504. ]
  505. }
  506. }
  507. ]
  508. }
  509. }
  510. ]
  511. }
  512. }
  513. ]
  514. }
  515. },
  516. {
  517. "variable": "hostPathConfig",
  518. "label": "Host Path Configuration",
  519. "schema": {
  520. "type": "dict",
  521. "show_if": [
  522. [
  523. "type",
  524. "=",
  525. "hostPath"
  526. ]
  527. ],
  528. "attrs": [
  529. {
  530. "variable": "aclEnable",
  531. "label": "Enable ACL",
  532. "description": "Enable ACL for the dataset.",
  533. "schema": {
  534. "type": "boolean",
  535. "default": false
  536. }
  537. },
  538. {
  539. "variable": "acl",
  540. "label": "ACL Configuration",
  541. "schema": {
  542. "type": "dict",
  543. "show_if": [
  544. [
  545. "aclEnable",
  546. "=",
  547. true
  548. ]
  549. ],
  550. "attrs": [
  551. {
  552. "variable": "path",
  553. "label": "Host Path",
  554. "description": "Host Path to perform ACL",
  555. "schema": {
  556. "type": "hostpath",
  557. "required": true,
  558. "empty": false
  559. }
  560. },
  561. {
  562. "variable": "entries",
  563. "label": "ACL Entries",
  564. "description": "ACL Entries",
  565. "schema": {
  566. "type": "list",
  567. "items": [
  568. {
  569. "variable": "aclEntry",
  570. "label": "ACL Entry",
  571. "schema": {
  572. "type": "dict",
  573. "attrs": [
  574. {
  575. "variable": "id_type",
  576. "label": "ID Type",
  577. "schema": {
  578. "type": "string",
  579. "enum": [
  580. {
  581. "value": "USER",
  582. "description": "Entry is for a USER"
  583. },
  584. {
  585. "value": "GROUP",
  586. "description": "Entry is for a GROUP"
  587. }
  588. ],
  589. "default": "USER"
  590. }
  591. },
  592. {
  593. "variable": "id",
  594. "label": "ID",
  595. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  596. "schema": {
  597. "type": "int",
  598. "required": true,
  599. "min": 0
  600. }
  601. },
  602. {
  603. "variable": "access",
  604. "label": "Access",
  605. "schema": {
  606. "type": "string",
  607. "enum": [
  608. {
  609. "value": "READ",
  610. "description": "Read Access"
  611. },
  612. {
  613. "value": "MODIFY",
  614. "description": "Modify Access"
  615. },
  616. {
  617. "value": "FULL_CONTROL",
  618. "description": "FULL_CONTROL Access"
  619. }
  620. ]
  621. }
  622. }
  623. ]
  624. }
  625. }
  626. ]
  627. }
  628. },
  629. {
  630. "variable": "options",
  631. "label": "ACL Options",
  632. "schema": {
  633. "type": "dict",
  634. "attrs": [
  635. {
  636. "variable": "force",
  637. "label": "Force Flag",
  638. "description": "Enabling `Force` applies ACL even if the path has existing data",
  639. "schema": {
  640. "type": "boolean",
  641. "default": false
  642. }
  643. }
  644. ]
  645. }
  646. }
  647. ],
  648. "$ref": [
  649. "normalize/acl"
  650. ]
  651. }
  652. },
  653. {
  654. "variable": "hostPath",
  655. "label": "Host Path",
  656. "description": "The host path to use for storage.",
  657. "schema": {
  658. "type": "hostpath",
  659. "show_if": [
  660. [
  661. "aclEnable",
  662. "=",
  663. false
  664. ]
  665. ],
  666. "required": true
  667. }
  668. }
  669. ]
  670. }
  671. }
  672. ]
  673. }
  674. },
  675. {
  676. "variable": "config",
  677. "label": "Plex Configuration Storage",
  678. "description": "The path to store Plex Configuration.",
  679. "schema": {
  680. "type": "dict",
  681. "attrs": [
  682. {
  683. "variable": "type",
  684. "label": "Type",
  685. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  686. "schema": {
  687. "type": "string",
  688. "required": true,
  689. "immutable": true,
  690. "default": "ixVolume",
  691. "enum": [
  692. {
  693. "value": "hostPath",
  694. "description": "Host Path (Path that already exists on the system)"
  695. },
  696. {
  697. "value": "ixVolume",
  698. "description": "ixVolume (Dataset created automatically by the system)"
  699. }
  700. ]
  701. }
  702. },
  703. {
  704. "variable": "ixVolumeConfig",
  705. "label": "ixVolume Configuration",
  706. "description": "The configuration for the ixVolume dataset.",
  707. "schema": {
  708. "type": "dict",
  709. "show_if": [
  710. [
  711. "type",
  712. "=",
  713. "ixVolume"
  714. ]
  715. ],
  716. "$ref": [
  717. "normalize/ixVolume"
  718. ],
  719. "attrs": [
  720. {
  721. "variable": "aclEnable",
  722. "label": "Enable ACL",
  723. "description": "Enable ACL for the dataset.",
  724. "schema": {
  725. "type": "boolean",
  726. "default": false
  727. }
  728. },
  729. {
  730. "variable": "datasetName",
  731. "label": "Dataset Name",
  732. "description": "The name of the dataset to use for storage.",
  733. "schema": {
  734. "type": "string",
  735. "required": true,
  736. "immutable": true,
  737. "hidden": true,
  738. "default": "config"
  739. }
  740. },
  741. {
  742. "variable": "aclEntries",
  743. "label": "ACL Configuration",
  744. "schema": {
  745. "type": "dict",
  746. "show_if": [
  747. [
  748. "aclEnable",
  749. "=",
  750. true
  751. ]
  752. ],
  753. "attrs": [
  754. {
  755. "variable": "path",
  756. "label": "Path",
  757. "description": "Path to perform ACL",
  758. "schema": {
  759. "type": "string",
  760. "hidden": true
  761. }
  762. },
  763. {
  764. "variable": "entries",
  765. "label": "ACL Entries",
  766. "description": "ACL Entries",
  767. "schema": {
  768. "type": "list",
  769. "items": [
  770. {
  771. "variable": "aclEntry",
  772. "label": "ACL Entry",
  773. "schema": {
  774. "type": "dict",
  775. "attrs": [
  776. {
  777. "variable": "id_type",
  778. "label": "ID Type",
  779. "schema": {
  780. "type": "string",
  781. "enum": [
  782. {
  783. "value": "USER",
  784. "description": "Entry is for a USER"
  785. },
  786. {
  787. "value": "GROUP",
  788. "description": "Entry is for a GROUP"
  789. }
  790. ],
  791. "default": "USER"
  792. }
  793. },
  794. {
  795. "variable": "id",
  796. "label": "ID",
  797. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  798. "schema": {
  799. "type": "int",
  800. "required": true,
  801. "min": 0
  802. }
  803. },
  804. {
  805. "variable": "access",
  806. "label": "Access",
  807. "schema": {
  808. "type": "string",
  809. "enum": [
  810. {
  811. "value": "READ",
  812. "description": "Read Access"
  813. },
  814. {
  815. "value": "MODIFY",
  816. "description": "Modify Access"
  817. },
  818. {
  819. "value": "FULL_CONTROL",
  820. "description": "FULL_CONTROL Access"
  821. }
  822. ]
  823. }
  824. }
  825. ]
  826. }
  827. }
  828. ]
  829. }
  830. }
  831. ]
  832. }
  833. }
  834. ]
  835. }
  836. },
  837. {
  838. "variable": "hostPathConfig",
  839. "label": "Host Path Configuration",
  840. "schema": {
  841. "type": "dict",
  842. "show_if": [
  843. [
  844. "type",
  845. "=",
  846. "hostPath"
  847. ]
  848. ],
  849. "attrs": [
  850. {
  851. "variable": "aclEnable",
  852. "label": "Enable ACL",
  853. "description": "Enable ACL for the dataset.",
  854. "schema": {
  855. "type": "boolean",
  856. "default": false
  857. }
  858. },
  859. {
  860. "variable": "acl",
  861. "label": "ACL Configuration",
  862. "schema": {
  863. "type": "dict",
  864. "show_if": [
  865. [
  866. "aclEnable",
  867. "=",
  868. true
  869. ]
  870. ],
  871. "attrs": [
  872. {
  873. "variable": "path",
  874. "label": "Host Path",
  875. "description": "Host Path to perform ACL",
  876. "schema": {
  877. "type": "hostpath",
  878. "required": true,
  879. "empty": false
  880. }
  881. },
  882. {
  883. "variable": "entries",
  884. "label": "ACL Entries",
  885. "description": "ACL Entries",
  886. "schema": {
  887. "type": "list",
  888. "items": [
  889. {
  890. "variable": "aclEntry",
  891. "label": "ACL Entry",
  892. "schema": {
  893. "type": "dict",
  894. "attrs": [
  895. {
  896. "variable": "id_type",
  897. "label": "ID Type",
  898. "schema": {
  899. "type": "string",
  900. "enum": [
  901. {
  902. "value": "USER",
  903. "description": "Entry is for a USER"
  904. },
  905. {
  906. "value": "GROUP",
  907. "description": "Entry is for a GROUP"
  908. }
  909. ],
  910. "default": "USER"
  911. }
  912. },
  913. {
  914. "variable": "id",
  915. "label": "ID",
  916. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  917. "schema": {
  918. "type": "int",
  919. "required": true,
  920. "min": 0
  921. }
  922. },
  923. {
  924. "variable": "access",
  925. "label": "Access",
  926. "schema": {
  927. "type": "string",
  928. "enum": [
  929. {
  930. "value": "READ",
  931. "description": "Read Access"
  932. },
  933. {
  934. "value": "MODIFY",
  935. "description": "Modify Access"
  936. },
  937. {
  938. "value": "FULL_CONTROL",
  939. "description": "FULL_CONTROL Access"
  940. }
  941. ]
  942. }
  943. }
  944. ]
  945. }
  946. }
  947. ]
  948. }
  949. },
  950. {
  951. "variable": "options",
  952. "label": "ACL Options",
  953. "schema": {
  954. "type": "dict",
  955. "attrs": [
  956. {
  957. "variable": "force",
  958. "label": "Force Flag",
  959. "description": "Enabling `Force` applies ACL even if the path has existing data",
  960. "schema": {
  961. "type": "boolean",
  962. "default": false
  963. }
  964. }
  965. ]
  966. }
  967. }
  968. ],
  969. "$ref": [
  970. "normalize/acl"
  971. ]
  972. }
  973. },
  974. {
  975. "variable": "hostPath",
  976. "label": "Host Path",
  977. "description": "The host path to use for storage.",
  978. "schema": {
  979. "type": "hostpath",
  980. "show_if": [
  981. [
  982. "aclEnable",
  983. "=",
  984. false
  985. ]
  986. ],
  987. "required": true
  988. }
  989. }
  990. ]
  991. }
  992. }
  993. ]
  994. }
  995. },
  996. {
  997. "variable": "transcode",
  998. "label": "Plex Transcode Storage",
  999. "description": "The path to store Plex Transcode.",
  1000. "schema": {
  1001. "type": "dict",
  1002. "attrs": [
  1003. {
  1004. "variable": "type",
  1005. "label": "Type",
  1006. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.</br>\nemptyDir: Is a temporary directory that will be created on the disk or in memory.\n",
  1007. "schema": {
  1008. "type": "string",
  1009. "required": true,
  1010. "immutable": true,
  1011. "default": "ixVolume",
  1012. "enum": [
  1013. {
  1014. "value": "hostPath",
  1015. "description": "Host Path (Path that already exists on the system)"
  1016. },
  1017. {
  1018. "value": "ixVolume",
  1019. "description": "ixVolume (Dataset created automatically by the system)"
  1020. },
  1021. {
  1022. "value": "emptyDir",
  1023. "description": "emptyDir (Temporary directory created on the disk or in memory)"
  1024. }
  1025. ]
  1026. }
  1027. },
  1028. {
  1029. "variable": "ixVolumeConfig",
  1030. "label": "ixVolume Configuration",
  1031. "description": "The configuration for the ixVolume dataset.",
  1032. "schema": {
  1033. "type": "dict",
  1034. "show_if": [
  1035. [
  1036. "type",
  1037. "=",
  1038. "ixVolume"
  1039. ]
  1040. ],
  1041. "$ref": [
  1042. "normalize/ixVolume"
  1043. ],
  1044. "attrs": [
  1045. {
  1046. "variable": "aclEnable",
  1047. "label": "Enable ACL",
  1048. "description": "Enable ACL for the dataset.",
  1049. "schema": {
  1050. "type": "boolean",
  1051. "default": false
  1052. }
  1053. },
  1054. {
  1055. "variable": "datasetName",
  1056. "label": "Dataset Name",
  1057. "description": "The name of the dataset to use for storage.",
  1058. "schema": {
  1059. "type": "string",
  1060. "required": true,
  1061. "immutable": true,
  1062. "hidden": true,
  1063. "default": "transcode"
  1064. }
  1065. },
  1066. {
  1067. "variable": "aclEntries",
  1068. "label": "ACL Configuration",
  1069. "schema": {
  1070. "type": "dict",
  1071. "show_if": [
  1072. [
  1073. "aclEnable",
  1074. "=",
  1075. true
  1076. ]
  1077. ],
  1078. "attrs": [
  1079. {
  1080. "variable": "path",
  1081. "label": "Path",
  1082. "description": "Path to perform ACL",
  1083. "schema": {
  1084. "type": "string",
  1085. "hidden": true
  1086. }
  1087. },
  1088. {
  1089. "variable": "entries",
  1090. "label": "ACL Entries",
  1091. "description": "ACL Entries",
  1092. "schema": {
  1093. "type": "list",
  1094. "items": [
  1095. {
  1096. "variable": "aclEntry",
  1097. "label": "ACL Entry",
  1098. "schema": {
  1099. "type": "dict",
  1100. "attrs": [
  1101. {
  1102. "variable": "id_type",
  1103. "label": "ID Type",
  1104. "schema": {
  1105. "type": "string",
  1106. "enum": [
  1107. {
  1108. "value": "USER",
  1109. "description": "Entry is for a USER"
  1110. },
  1111. {
  1112. "value": "GROUP",
  1113. "description": "Entry is for a GROUP"
  1114. }
  1115. ],
  1116. "default": "USER"
  1117. }
  1118. },
  1119. {
  1120. "variable": "id",
  1121. "label": "ID",
  1122. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  1123. "schema": {
  1124. "type": "int",
  1125. "required": true,
  1126. "min": 0
  1127. }
  1128. },
  1129. {
  1130. "variable": "access",
  1131. "label": "Access",
  1132. "schema": {
  1133. "type": "string",
  1134. "enum": [
  1135. {
  1136. "value": "READ",
  1137. "description": "Read Access"
  1138. },
  1139. {
  1140. "value": "MODIFY",
  1141. "description": "Modify Access"
  1142. },
  1143. {
  1144. "value": "FULL_CONTROL",
  1145. "description": "FULL_CONTROL Access"
  1146. }
  1147. ]
  1148. }
  1149. }
  1150. ]
  1151. }
  1152. }
  1153. ]
  1154. }
  1155. }
  1156. ]
  1157. }
  1158. }
  1159. ]
  1160. }
  1161. },
  1162. {
  1163. "variable": "emptyDirConfig",
  1164. "label": "emptyDir Configuration",
  1165. "schema": {
  1166. "type": "dict",
  1167. "show_if": [
  1168. [
  1169. "type",
  1170. "=",
  1171. "emptyDir"
  1172. ]
  1173. ],
  1174. "attrs": [
  1175. {
  1176. "variable": "medium",
  1177. "label": "emptyDir Medium",
  1178. "description": "Disk: Creates a temporary directory on the disk.</br>\nMemory: Creates a temporary directory in memory.\n",
  1179. "schema": {
  1180. "type": "string",
  1181. "default": "",
  1182. "enum": [
  1183. {
  1184. "value": "",
  1185. "description": "Disk (Temporary directory created on the disk)"
  1186. },
  1187. {
  1188. "value": "Memory",
  1189. "description": "Memory (Temporary directory created in memory)"
  1190. }
  1191. ]
  1192. }
  1193. },
  1194. {
  1195. "variable": "size",
  1196. "label": "emptyDir Size Limit (in Gi)",
  1197. "description": "The maximum size (in Gi) of the temporary directory.</br>\nFor example: 2\n",
  1198. "schema": {
  1199. "type": "int",
  1200. "null": true,
  1201. "default": 2
  1202. }
  1203. }
  1204. ]
  1205. }
  1206. },
  1207. {
  1208. "variable": "hostPathConfig",
  1209. "label": "Host Path Configuration",
  1210. "schema": {
  1211. "type": "dict",
  1212. "show_if": [
  1213. [
  1214. "type",
  1215. "=",
  1216. "hostPath"
  1217. ]
  1218. ],
  1219. "attrs": [
  1220. {
  1221. "variable": "aclEnable",
  1222. "label": "Enable ACL",
  1223. "description": "Enable ACL for the dataset.",
  1224. "schema": {
  1225. "type": "boolean",
  1226. "default": false
  1227. }
  1228. },
  1229. {
  1230. "variable": "acl",
  1231. "label": "ACL Configuration",
  1232. "schema": {
  1233. "type": "dict",
  1234. "show_if": [
  1235. [
  1236. "aclEnable",
  1237. "=",
  1238. true
  1239. ]
  1240. ],
  1241. "attrs": [
  1242. {
  1243. "variable": "path",
  1244. "label": "Host Path",
  1245. "description": "Host Path to perform ACL",
  1246. "schema": {
  1247. "type": "hostpath",
  1248. "required": true,
  1249. "empty": false
  1250. }
  1251. },
  1252. {
  1253. "variable": "entries",
  1254. "label": "ACL Entries",
  1255. "description": "ACL Entries",
  1256. "schema": {
  1257. "type": "list",
  1258. "items": [
  1259. {
  1260. "variable": "aclEntry",
  1261. "label": "ACL Entry",
  1262. "schema": {
  1263. "type": "dict",
  1264. "attrs": [
  1265. {
  1266. "variable": "id_type",
  1267. "label": "ID Type",
  1268. "schema": {
  1269. "type": "string",
  1270. "enum": [
  1271. {
  1272. "value": "USER",
  1273. "description": "Entry is for a USER"
  1274. },
  1275. {
  1276. "value": "GROUP",
  1277. "description": "Entry is for a GROUP"
  1278. }
  1279. ],
  1280. "default": "USER"
  1281. }
  1282. },
  1283. {
  1284. "variable": "id",
  1285. "label": "ID",
  1286. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  1287. "schema": {
  1288. "type": "int",
  1289. "required": true,
  1290. "min": 0
  1291. }
  1292. },
  1293. {
  1294. "variable": "access",
  1295. "label": "Access",
  1296. "schema": {
  1297. "type": "string",
  1298. "enum": [
  1299. {
  1300. "value": "READ",
  1301. "description": "Read Access"
  1302. },
  1303. {
  1304. "value": "MODIFY",
  1305. "description": "Modify Access"
  1306. },
  1307. {
  1308. "value": "FULL_CONTROL",
  1309. "description": "FULL_CONTROL Access"
  1310. }
  1311. ]
  1312. }
  1313. }
  1314. ]
  1315. }
  1316. }
  1317. ]
  1318. }
  1319. },
  1320. {
  1321. "variable": "options",
  1322. "label": "ACL Options",
  1323. "schema": {
  1324. "type": "dict",
  1325. "attrs": [
  1326. {
  1327. "variable": "force",
  1328. "label": "Force Flag",
  1329. "description": "Enabling `Force` applies ACL even if the path has existing data",
  1330. "schema": {
  1331. "type": "boolean",
  1332. "default": false
  1333. }
  1334. }
  1335. ]
  1336. }
  1337. }
  1338. ],
  1339. "$ref": [
  1340. "normalize/acl"
  1341. ]
  1342. }
  1343. },
  1344. {
  1345. "variable": "hostPath",
  1346. "label": "Host Path",
  1347. "description": "The host path to use for storage.",
  1348. "schema": {
  1349. "type": "hostpath",
  1350. "show_if": [
  1351. [
  1352. "aclEnable",
  1353. "=",
  1354. false
  1355. ]
  1356. ],
  1357. "required": true
  1358. }
  1359. }
  1360. ]
  1361. }
  1362. }
  1363. ]
  1364. }
  1365. },
  1366. {
  1367. "variable": "additionalStorages",
  1368. "label": "Additional Storage",
  1369. "description": "Additional storage for Plex.",
  1370. "schema": {
  1371. "type": "list",
  1372. "default": [],
  1373. "items": [
  1374. {
  1375. "variable": "storageEntry",
  1376. "label": "Storage Entry",
  1377. "schema": {
  1378. "type": "dict",
  1379. "attrs": [
  1380. {
  1381. "variable": "type",
  1382. "label": "Type",
  1383. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.</br>\nSMB Share: Is a SMB share that is mounted to a persistent volume claim.\n",
  1384. "schema": {
  1385. "type": "string",
  1386. "required": true,
  1387. "default": "ixVolume",
  1388. "immutable": true,
  1389. "enum": [
  1390. {
  1391. "value": "hostPath",
  1392. "description": "Host Path (Path that already exists on the system)"
  1393. },
  1394. {
  1395. "value": "ixVolume",
  1396. "description": "ixVolume (Dataset created automatically by the system)"
  1397. },
  1398. {
  1399. "value": "smb-pv-pvc",
  1400. "description": "SMB Share (Mounts a persistent volume claim to a SMB share)"
  1401. }
  1402. ]
  1403. }
  1404. },
  1405. {
  1406. "variable": "readOnly",
  1407. "label": "Read Only",
  1408. "description": "Mount the volume as read only.",
  1409. "schema": {
  1410. "type": "boolean",
  1411. "default": false
  1412. }
  1413. },
  1414. {
  1415. "variable": "mountPath",
  1416. "label": "Mount Path",
  1417. "description": "The path inside the container to mount the storage.",
  1418. "schema": {
  1419. "type": "path",
  1420. "required": true
  1421. }
  1422. },
  1423. {
  1424. "variable": "hostPathConfig",
  1425. "label": "Host Path Configuration",
  1426. "schema": {
  1427. "type": "dict",
  1428. "show_if": [
  1429. [
  1430. "type",
  1431. "=",
  1432. "hostPath"
  1433. ]
  1434. ],
  1435. "attrs": [
  1436. {
  1437. "variable": "aclEnable",
  1438. "label": "Enable ACL",
  1439. "description": "Enable ACL for the dataset.",
  1440. "schema": {
  1441. "type": "boolean",
  1442. "default": false
  1443. }
  1444. },
  1445. {
  1446. "variable": "acl",
  1447. "label": "ACL Configuration",
  1448. "schema": {
  1449. "type": "dict",
  1450. "show_if": [
  1451. [
  1452. "aclEnable",
  1453. "=",
  1454. true
  1455. ]
  1456. ],
  1457. "attrs": [
  1458. {
  1459. "variable": "path",
  1460. "label": "Host Path",
  1461. "description": "Host Path to perform ACL",
  1462. "schema": {
  1463. "type": "hostpath",
  1464. "required": true,
  1465. "empty": false
  1466. }
  1467. },
  1468. {
  1469. "variable": "entries",
  1470. "label": "ACL Entries",
  1471. "description": "ACL Entries",
  1472. "schema": {
  1473. "type": "list",
  1474. "items": [
  1475. {
  1476. "variable": "aclEntry",
  1477. "label": "ACL Entry",
  1478. "schema": {
  1479. "type": "dict",
  1480. "attrs": [
  1481. {
  1482. "variable": "id_type",
  1483. "label": "ID Type",
  1484. "schema": {
  1485. "type": "string",
  1486. "enum": [
  1487. {
  1488. "value": "USER",
  1489. "description": "Entry is for a USER"
  1490. },
  1491. {
  1492. "value": "GROUP",
  1493. "description": "Entry is for a GROUP"
  1494. }
  1495. ],
  1496. "default": "USER"
  1497. }
  1498. },
  1499. {
  1500. "variable": "id",
  1501. "label": "ID",
  1502. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  1503. "schema": {
  1504. "type": "int",
  1505. "required": true,
  1506. "min": 0
  1507. }
  1508. },
  1509. {
  1510. "variable": "access",
  1511. "label": "Access",
  1512. "schema": {
  1513. "type": "string",
  1514. "enum": [
  1515. {
  1516. "value": "READ",
  1517. "description": "Read Access"
  1518. },
  1519. {
  1520. "value": "MODIFY",
  1521. "description": "Modify Access"
  1522. },
  1523. {
  1524. "value": "FULL_CONTROL",
  1525. "description": "FULL_CONTROL Access"
  1526. }
  1527. ]
  1528. }
  1529. }
  1530. ]
  1531. }
  1532. }
  1533. ]
  1534. }
  1535. },
  1536. {
  1537. "variable": "options",
  1538. "label": "ACL Options",
  1539. "schema": {
  1540. "type": "dict",
  1541. "attrs": [
  1542. {
  1543. "variable": "force",
  1544. "label": "Force Flag",
  1545. "description": "Enabling `Force` applies ACL even if the path has existing data",
  1546. "schema": {
  1547. "type": "boolean",
  1548. "default": false
  1549. }
  1550. }
  1551. ]
  1552. }
  1553. }
  1554. ],
  1555. "$ref": [
  1556. "normalize/acl"
  1557. ]
  1558. }
  1559. },
  1560. {
  1561. "variable": "hostPath",
  1562. "label": "Host Path",
  1563. "description": "The host path to use for storage.",
  1564. "schema": {
  1565. "type": "hostpath",
  1566. "show_if": [
  1567. [
  1568. "aclEnable",
  1569. "=",
  1570. false
  1571. ]
  1572. ],
  1573. "required": true
  1574. }
  1575. }
  1576. ]
  1577. }
  1578. },
  1579. {
  1580. "variable": "ixVolumeConfig",
  1581. "label": "ixVolume Configuration",
  1582. "description": "The configuration for the ixVolume dataset.",
  1583. "schema": {
  1584. "type": "dict",
  1585. "show_if": [
  1586. [
  1587. "type",
  1588. "=",
  1589. "ixVolume"
  1590. ]
  1591. ],
  1592. "$ref": [
  1593. "normalize/ixVolume"
  1594. ],
  1595. "attrs": [
  1596. {
  1597. "variable": "aclEnable",
  1598. "label": "Enable ACL",
  1599. "description": "Enable ACL for the dataset.",
  1600. "schema": {
  1601. "type": "boolean",
  1602. "default": false
  1603. }
  1604. },
  1605. {
  1606. "variable": "datasetName",
  1607. "label": "Dataset Name",
  1608. "description": "The name of the dataset to use for storage.",
  1609. "schema": {
  1610. "type": "string",
  1611. "required": true,
  1612. "immutable": true,
  1613. "default": "storage_entry"
  1614. }
  1615. },
  1616. {
  1617. "variable": "aclEntries",
  1618. "label": "ACL Configuration",
  1619. "schema": {
  1620. "type": "dict",
  1621. "show_if": [
  1622. [
  1623. "aclEnable",
  1624. "=",
  1625. true
  1626. ]
  1627. ],
  1628. "attrs": [
  1629. {
  1630. "variable": "path",
  1631. "label": "Path",
  1632. "description": "Path to perform ACL",
  1633. "schema": {
  1634. "type": "string",
  1635. "hidden": true
  1636. }
  1637. },
  1638. {
  1639. "variable": "entries",
  1640. "label": "ACL Entries",
  1641. "description": "ACL Entries",
  1642. "schema": {
  1643. "type": "list",
  1644. "items": [
  1645. {
  1646. "variable": "aclEntry",
  1647. "label": "ACL Entry",
  1648. "schema": {
  1649. "type": "dict",
  1650. "attrs": [
  1651. {
  1652. "variable": "id_type",
  1653. "label": "ID Type",
  1654. "schema": {
  1655. "type": "string",
  1656. "enum": [
  1657. {
  1658. "value": "USER",
  1659. "description": "Entry is for a USER"
  1660. },
  1661. {
  1662. "value": "GROUP",
  1663. "description": "Entry is for a GROUP"
  1664. }
  1665. ],
  1666. "default": "USER"
  1667. }
  1668. },
  1669. {
  1670. "variable": "id",
  1671. "label": "ID",
  1672. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  1673. "schema": {
  1674. "type": "int",
  1675. "required": true,
  1676. "min": 0
  1677. }
  1678. },
  1679. {
  1680. "variable": "access",
  1681. "label": "Access",
  1682. "schema": {
  1683. "type": "string",
  1684. "enum": [
  1685. {
  1686. "value": "READ",
  1687. "description": "Read Access"
  1688. },
  1689. {
  1690. "value": "MODIFY",
  1691. "description": "Modify Access"
  1692. },
  1693. {
  1694. "value": "FULL_CONTROL",
  1695. "description": "FULL_CONTROL Access"
  1696. }
  1697. ]
  1698. }
  1699. }
  1700. ]
  1701. }
  1702. }
  1703. ]
  1704. }
  1705. }
  1706. ]
  1707. }
  1708. }
  1709. ]
  1710. }
  1711. },
  1712. {
  1713. "variable": "smbConfig",
  1714. "label": "SMB Share Configuration",
  1715. "description": "The configuration for the SMB Share.",
  1716. "schema": {
  1717. "type": "dict",
  1718. "show_if": [
  1719. [
  1720. "type",
  1721. "=",
  1722. "smb-pv-pvc"
  1723. ]
  1724. ],
  1725. "attrs": [
  1726. {
  1727. "variable": "server",
  1728. "label": "Server",
  1729. "description": "The server for the SMB share.",
  1730. "schema": {
  1731. "type": "string",
  1732. "required": true
  1733. }
  1734. },
  1735. {
  1736. "variable": "share",
  1737. "label": "Share",
  1738. "description": "The share name for the SMB share.",
  1739. "schema": {
  1740. "type": "string",
  1741. "required": true
  1742. }
  1743. },
  1744. {
  1745. "variable": "domain",
  1746. "label": "Domain (Optional)",
  1747. "description": "The domain for the SMB share.",
  1748. "schema": {
  1749. "type": "string"
  1750. }
  1751. },
  1752. {
  1753. "variable": "username",
  1754. "label": "Username",
  1755. "description": "The username for the SMB share.",
  1756. "schema": {
  1757. "type": "string",
  1758. "required": true
  1759. }
  1760. },
  1761. {
  1762. "variable": "password",
  1763. "label": "Password",
  1764. "description": "The password for the SMB share.",
  1765. "schema": {
  1766. "type": "string",
  1767. "required": true,
  1768. "private": true
  1769. }
  1770. },
  1771. {
  1772. "variable": "size",
  1773. "label": "Size (in Gi)",
  1774. "description": "The size of the volume quota.",
  1775. "schema": {
  1776. "type": "int",
  1777. "required": true,
  1778. "min": 1,
  1779. "default": 1
  1780. }
  1781. }
  1782. ]
  1783. }
  1784. }
  1785. ]
  1786. }
  1787. }
  1788. ]
  1789. }
  1790. }
  1791. ]
  1792. }
  1793. },
  1794. {
  1795. "variable": "resources",
  1796. "label": "Resources Configuration",
  1797. "group": "Resources Configuration",
  1798. "schema": {
  1799. "type": "dict",
  1800. "attrs": [
  1801. {
  1802. "variable": "limits",
  1803. "label": "Limits",
  1804. "schema": {
  1805. "type": "dict",
  1806. "attrs": [
  1807. {
  1808. "variable": "cpu",
  1809. "label": "CPU",
  1810. "description": "CPU limit for Plex.",
  1811. "schema": {
  1812. "type": "string",
  1813. "max_length": 6,
  1814. "valid_chars": "^(0\\.[1-9]|[1-9][0-9]*)(\\.[0-9]|m?)$",
  1815. "valid_chars_error": "Valid CPU limit formats are</br>\n- Plain Integer - eg. 1</br>\n- Float - eg. 0.5</br>\n- Milicpu - eg. 500m\n",
  1816. "default": "4000m",
  1817. "required": true
  1818. }
  1819. },
  1820. {
  1821. "variable": "memory",
  1822. "label": "Memory",
  1823. "description": "Memory limit for Plex.",
  1824. "schema": {
  1825. "type": "string",
  1826. "max_length": 12,
  1827. "valid_chars": "^[1-9][0-9]*([EPTGMK]i?|e[0-9]+)?$",
  1828. "valid_chars_error": "Valid Memory limit formats are</br>\n- Suffixed with E/P/T/G/M/K - eg. 1G</br>\n- Suffixed with Ei/Pi/Ti/Gi/Mi/Ki - eg. 1Gi</br>\n- Plain Integer in bytes - eg. 1024</br>\n- Exponent - eg. 134e6\n",
  1829. "default": "8Gi",
  1830. "required": true
  1831. }
  1832. }
  1833. ]
  1834. }
  1835. }
  1836. ]
  1837. }
  1838. },
  1839. {
  1840. "variable": "plexGPU",
  1841. "group": "Resources Configuration",
  1842. "label": "GPU Configuration",
  1843. "schema": {
  1844. "type": "dict",
  1845. "$ref": [
  1846. "definitions/gpuConfiguration"
  1847. ],
  1848. "attrs": []
  1849. }
  1850. }
  1851. ]
  1852. },
  1853. "app_readme": "<h1>Plex</h1>\n<p><a href=\"https://plex.tv\">Plex</a> is a media server that allows you to stream your media to any Plex client.</p>",
  1854. "detailed_readme": "<h1>Plex</h1>\n<p><a href=\"https://plex.tv\">Plex</a> is a media server that allows you to stream your media to any Plex client.</p>",
  1855. "changelog": null
  1856. },
  1857. "1.7.60": {
  1858. "healthy": true,
  1859. "supported": true,
  1860. "healthy_error": null,
  1861. "location": "/__w/charts/charts/charts/plex/1.7.60",
  1862. "last_update": "2024-02-06 10:03:00",
  1863. "required_features": [
  1864. "validations/lockedHostPath",
  1865. "normalize/ixVolume",
  1866. "definitions/timezone",
  1867. "definitions/gpuConfiguration"
  1868. ],
  1869. "human_version": "1.32.8.7639_1.7.60",
  1870. "version": "1.7.60",
  1871. "chart_metadata": {
  1872. "name": "plex",
  1873. "description": "Plex Media Server",
  1874. "annotations": {
  1875. "title": "Plex"
  1876. },
  1877. "type": "application",
  1878. "version": "1.7.60",
  1879. "apiVersion": "v2",
  1880. "appVersion": "1.32.8.7639",
  1881. "kubeVersion": ">=1.16.0-0",
  1882. "maintainers": [
  1883. {
  1884. "name": "truenas",
  1885. "url": "https://www.truenas.com/",
  1886. "email": "dev@ixsystems.com"
  1887. }
  1888. ],
  1889. "dependencies": [
  1890. {
  1891. "name": "common",
  1892. "repository": "file://../../../common/2304.0.1",
  1893. "version": "2304.0.1"
  1894. }
  1895. ],
  1896. "home": "https://plex.tv/",
  1897. "icon": "https://media.sys.truenas.net/apps/plex/icons/icon.png",
  1898. "sources": [
  1899. "https://hub.docker.com/r/plexinc/pms-docker/",
  1900. "https://github.com/k8s-at-home/charts/tree/master/charts/plex"
  1901. ],
  1902. "keywords": [
  1903. "plex"
  1904. ]
  1905. },
  1906. "app_metadata": {
  1907. "runAsContext": [
  1908. {
  1909. "userName": "root",
  1910. "groupName": "root",
  1911. "gid": 0,
  1912. "uid": 0,
  1913. "description": "Plex runs as root user."
  1914. }
  1915. ],
  1916. "capabilities": [
  1917. {
  1918. "name": "CHOWN",
  1919. "description": "Plex is able to chown files."
  1920. },
  1921. {
  1922. "name": "FOWNER",
  1923. "description": "Plex is able to bypass permission checks for it's sub-processes."
  1924. },
  1925. {
  1926. "name": "SYS_CHROOT",
  1927. "description": "Plex is able to use chroot."
  1928. },
  1929. {
  1930. "name": "MKNOD",
  1931. "description": "Plex is able to create device nodes."
  1932. },
  1933. {
  1934. "name": "DAC_OVERRIDE",
  1935. "description": "Plex is able to bypass permission checks."
  1936. },
  1937. {
  1938. "name": "FSETID",
  1939. "description": "Plex is able to set file capabilities."
  1940. },
  1941. {
  1942. "name": "KILL",
  1943. "description": "Plex is able to kill processes."
  1944. },
  1945. {
  1946. "name": "SETGID",
  1947. "description": "Plex is able to set group ID for it's sub-processes."
  1948. },
  1949. {
  1950. "name": "SETUID",
  1951. "description": "Plex is able to set user ID for it's sub-processes."
  1952. },
  1953. {
  1954. "name": "SETPCAP",
  1955. "description": "Plex is able to set process capabilities."
  1956. },
  1957. {
  1958. "name": "NET_BIND_SERVICE",
  1959. "description": "Plex is able to bind to privileged ports."
  1960. },
  1961. {
  1962. "name": "SETFCAP",
  1963. "description": "Plex is able to set file capabilities."
  1964. },
  1965. {
  1966. "name": "NET_RAW",
  1967. "description": "Plex is able to use raw sockets."
  1968. },
  1969. {
  1970. "name": "AUDIT_WRITE",
  1971. "description": "Plex is able to write to audit log."
  1972. }
  1973. ],
  1974. "hostMounts": []
  1975. },
  1976. "schema": {
  1977. "groups": [
  1978. {
  1979. "name": "Plex Configuration",
  1980. "description": "Configure plex deployment"
  1981. },
  1982. {
  1983. "name": "Networking",
  1984. "description": "Configure networking for container"
  1985. },
  1986. {
  1987. "name": "Storage",
  1988. "description": "Persist and share data that is separate from the lifecycle of the container"
  1989. },
  1990. {
  1991. "name": "Workload Details",
  1992. "description": "Configure how workload should be deployed"
  1993. },
  1994. {
  1995. "name": "Scaling/Upgrade Policy",
  1996. "description": "Configure how pods are replaced when configuration is upgraded"
  1997. },
  1998. {
  1999. "name": "Restart Policy",
  2000. "description": "Configure when pod should be restarted in case of failure"
  2001. },
  2002. {
  2003. "name": "Resource Reservation",
  2004. "description": "Specify resources to be allocated to workload"
  2005. },
  2006. {
  2007. "name": "Advanced DNS Settings",
  2008. "description": "Configure DNS settings"
  2009. },
  2010. {
  2011. "name": "Resource Limits",
  2012. "description": "Set CPU/memory limits for Kubernetes Pod"
  2013. }
  2014. ],
  2015. "portals": {
  2016. "web_portal": {
  2017. "protocols": [
  2018. "http"
  2019. ],
  2020. "host": [
  2021. "$node_ip"
  2022. ],
  2023. "ports": [
  2024. "$variable-plexServiceTCP.port"
  2025. ],
  2026. "path": "/web"
  2027. }
  2028. },
  2029. "questions": [
  2030. {
  2031. "variable": "enablePlexPass",
  2032. "label": "Use PlexPass",
  2033. "group": "Plex Configuration",
  2034. "schema": {
  2035. "type": "boolean",
  2036. "default": false
  2037. }
  2038. },
  2039. {
  2040. "variable": "dnsConfig",
  2041. "label": "DNS Configuration",
  2042. "group": "Advanced DNS Settings",
  2043. "schema": {
  2044. "type": "dict",
  2045. "attrs": [
  2046. {
  2047. "variable": "options",
  2048. "label": "DNS Options",
  2049. "schema": {
  2050. "type": "list",
  2051. "items": [
  2052. {
  2053. "variable": "optionsEntry",
  2054. "label": "Option Entry Configuration",
  2055. "schema": {
  2056. "type": "dict",
  2057. "attrs": [
  2058. {
  2059. "variable": "name",
  2060. "label": "Option Name",
  2061. "schema": {
  2062. "type": "string",
  2063. "required": true
  2064. }
  2065. },
  2066. {
  2067. "variable": "value",
  2068. "label": "Option Value",
  2069. "schema": {
  2070. "type": "string",
  2071. "required": true
  2072. }
  2073. }
  2074. ]
  2075. }
  2076. }
  2077. ]
  2078. }
  2079. }
  2080. ]
  2081. }
  2082. },
  2083. {
  2084. "variable": "claimToken",
  2085. "label": "Plex Claim Token",
  2086. "group": "Plex Configuration",
  2087. "description": "The claim token for the server to obtain a real server token. If not provided, server is will not be automatically logged in. If server is already logged in, this parameter is ignored. You can obtain a claim token to login your server to your plex account by visiting https://www.plex.tv/claim.",
  2088. "schema": {
  2089. "type": "string",
  2090. "default": ""
  2091. }
  2092. },
  2093. {
  2094. "variable": "hostNetwork",
  2095. "label": "Configure Host Network",
  2096. "group": "Networking",
  2097. "schema": {
  2098. "type": "boolean",
  2099. "default": false
  2100. }
  2101. },
  2102. {
  2103. "variable": "environmentVariables",
  2104. "label": "Environment Variables for Plex",
  2105. "group": "Plex Configuration",
  2106. "schema": {
  2107. "type": "list",
  2108. "default": [],
  2109. "items": [
  2110. {
  2111. "variable": "environmentVariable",
  2112. "label": "Environment Variable",
  2113. "schema": {
  2114. "type": "dict",
  2115. "attrs": [
  2116. {
  2117. "variable": "name",
  2118. "label": "Name",
  2119. "schema": {
  2120. "type": "string"
  2121. }
  2122. },
  2123. {
  2124. "variable": "value",
  2125. "label": "Value",
  2126. "schema": {
  2127. "type": "string"
  2128. }
  2129. }
  2130. ]
  2131. }
  2132. }
  2133. ]
  2134. }
  2135. },
  2136. {
  2137. "variable": "timezone",
  2138. "label": "Plex container timezone",
  2139. "group": "Plex Configuration",
  2140. "schema": {
  2141. "type": "string",
  2142. "default": "America/Los_Angeles",
  2143. "$ref": [
  2144. "definitions/timezone"
  2145. ],
  2146. "enum": [
  2147. {
  2148. "value": "Asia/Damascus",
  2149. "description": "'Asia/Damascus' timezone"
  2150. },
  2151. {
  2152. "value": "Asia/Saigon",
  2153. "description": "'Asia/Saigon' timezone"
  2154. }
  2155. ]
  2156. }
  2157. },
  2158. {
  2159. "variable": "updateStrategy",
  2160. "description": "Upgrade Policy",
  2161. "label": "Update Strategy",
  2162. "group": "Scaling/Upgrade Policy",
  2163. "schema": {
  2164. "type": "string",
  2165. "default": "Recreate",
  2166. "enum": [
  2167. {
  2168. "value": "RollingUpdate",
  2169. "description": "Create new pods and then kill old ones"
  2170. },
  2171. {
  2172. "value": "Recreate",
  2173. "description": "Kill existing pods before creating new ones"
  2174. }
  2175. ]
  2176. }
  2177. },
  2178. {
  2179. "variable": "plexServiceTCP",
  2180. "label": "Configure Plex TCP Service",
  2181. "group": "Networking",
  2182. "schema": {
  2183. "type": "dict",
  2184. "attrs": [
  2185. {
  2186. "variable": "port",
  2187. "label": "Port to expose for Plex UI",
  2188. "schema": {
  2189. "type": "int",
  2190. "min": 9000,
  2191. "max": 65535,
  2192. "default": 32400
  2193. }
  2194. }
  2195. ]
  2196. }
  2197. },
  2198. {
  2199. "variable": "gpuConfiguration",
  2200. "label": "GPU Configuration",
  2201. "group": "Resource Reservation",
  2202. "schema": {
  2203. "type": "dict",
  2204. "$ref": [
  2205. "definitions/gpuConfiguration"
  2206. ],
  2207. "attrs": []
  2208. }
  2209. },
  2210. {
  2211. "variable": "appVolumeMounts",
  2212. "label": "Plex Storage",
  2213. "group": "Storage",
  2214. "schema": {
  2215. "type": "dict",
  2216. "attrs": [
  2217. {
  2218. "variable": "transcode",
  2219. "label": "Transcode Volume",
  2220. "schema": {
  2221. "type": "dict",
  2222. "attrs": [
  2223. {
  2224. "variable": "datasetName",
  2225. "label": "Plex Transcode Volume Name",
  2226. "schema": {
  2227. "type": "string",
  2228. "$ref": [
  2229. "normalize/ixVolume"
  2230. ],
  2231. "show_if": [
  2232. [
  2233. "hostPathEnabled",
  2234. "=",
  2235. false
  2236. ]
  2237. ],
  2238. "default": "ix-plex_transcode",
  2239. "hidden": true,
  2240. "editable": false
  2241. }
  2242. },
  2243. {
  2244. "variable": "mountPath",
  2245. "label": "Plex Transcode Mount Path",
  2246. "description": "Path where the volume will be mounted inside the pod",
  2247. "schema": {
  2248. "type": "path",
  2249. "hidden": true,
  2250. "editable": false,
  2251. "default": "/transcode"
  2252. }
  2253. },
  2254. {
  2255. "variable": "hostPathEnabled",
  2256. "label": "Enable Host Path for Plex Transcode Volume",
  2257. "schema": {
  2258. "type": "boolean",
  2259. "default": false,
  2260. "show_subquestions_if": true,
  2261. "subquestions": [
  2262. {
  2263. "variable": "hostPath",
  2264. "label": "Host Path for Plex Transcode Volume",
  2265. "schema": {
  2266. "type": "hostpath",
  2267. "required": true,
  2268. "$ref": [
  2269. "validations/lockedHostPath"
  2270. ]
  2271. }
  2272. }
  2273. ]
  2274. }
  2275. }
  2276. ]
  2277. }
  2278. },
  2279. {
  2280. "variable": "data",
  2281. "label": "Data Volume",
  2282. "schema": {
  2283. "type": "dict",
  2284. "attrs": [
  2285. {
  2286. "variable": "datasetName",
  2287. "label": "Plex Data Volume Name",
  2288. "schema": {
  2289. "type": "string",
  2290. "$ref": [
  2291. "normalize/ixVolume"
  2292. ],
  2293. "show_if": [
  2294. [
  2295. "hostPathEnabled",
  2296. "=",
  2297. false
  2298. ]
  2299. ],
  2300. "default": "ix-plex_data",
  2301. "editable": false,
  2302. "hidden": true
  2303. }
  2304. },
  2305. {
  2306. "variable": "mountPath",
  2307. "label": "Plex Data Mount Path",
  2308. "description": "Path where the volume will be mounted inside the pod",
  2309. "schema": {
  2310. "type": "path",
  2311. "hidden": true,
  2312. "editable": false,
  2313. "default": "/data"
  2314. }
  2315. },
  2316. {
  2317. "variable": "hostPathEnabled",
  2318. "label": "Enable Host Path for Plex Data Volume",
  2319. "schema": {
  2320. "type": "boolean",
  2321. "default": false,
  2322. "show_subquestions_if": true,
  2323. "subquestions": [
  2324. {
  2325. "variable": "hostPath",
  2326. "label": "Host Path for Plex Data Volume",
  2327. "schema": {
  2328. "type": "hostpath",
  2329. "required": true,
  2330. "$ref": [
  2331. "validations/lockedHostPath"
  2332. ]
  2333. }
  2334. }
  2335. ]
  2336. }
  2337. }
  2338. ]
  2339. }
  2340. },
  2341. {
  2342. "variable": "config",
  2343. "label": "Config Volume",
  2344. "schema": {
  2345. "type": "dict",
  2346. "attrs": [
  2347. {
  2348. "variable": "datasetName",
  2349. "label": "Plex Config Volume Name",
  2350. "schema": {
  2351. "type": "string",
  2352. "$ref": [
  2353. "normalize/ixVolume"
  2354. ],
  2355. "show_if": [
  2356. [
  2357. "hostPathEnabled",
  2358. "=",
  2359. false
  2360. ]
  2361. ],
  2362. "default": "ix-plex_config",
  2363. "editable": false,
  2364. "hidden": true
  2365. }
  2366. },
  2367. {
  2368. "variable": "mountPath",
  2369. "label": "Plex Config Mount Path",
  2370. "description": "Path where the volume will be mounted inside the pod",
  2371. "schema": {
  2372. "type": "path",
  2373. "editable": false,
  2374. "hidden": true,
  2375. "default": "/config"
  2376. }
  2377. },
  2378. {
  2379. "variable": "hostPathEnabled",
  2380. "label": "Enable Host Path for Plex Config Volume",
  2381. "schema": {
  2382. "type": "boolean",
  2383. "default": false,
  2384. "show_subquestions_if": true,
  2385. "subquestions": [
  2386. {
  2387. "variable": "hostPath",
  2388. "label": "Host Path for Plex Config Volume",
  2389. "schema": {
  2390. "type": "hostpath",
  2391. "required": true,
  2392. "$ref": [
  2393. "validations/lockedHostPath"
  2394. ]
  2395. }
  2396. }
  2397. ]
  2398. }
  2399. }
  2400. ]
  2401. }
  2402. },
  2403. {
  2404. "variable": "shared",
  2405. "label": "Shared Volume",
  2406. "schema": {
  2407. "type": "dict",
  2408. "hidden": true,
  2409. "attrs": [
  2410. {
  2411. "variable": "emptyDir",
  2412. "label": "Temporary Volume",
  2413. "schema": {
  2414. "type": "boolean",
  2415. "default": true,
  2416. "editable": false
  2417. }
  2418. },
  2419. {
  2420. "variable": "mountPath",
  2421. "label": "Plex Shared Mount Path",
  2422. "description": "Path where the volume will be mounted inside the pod",
  2423. "schema": {
  2424. "type": "path",
  2425. "editable": false,
  2426. "default": "/shared"
  2427. }
  2428. }
  2429. ]
  2430. }
  2431. },
  2432. {
  2433. "variable": "shared-logs",
  2434. "label": "Shared Logs Volume",
  2435. "schema": {
  2436. "type": "dict",
  2437. "hidden": true,
  2438. "attrs": [
  2439. {
  2440. "variable": "emptyDir",
  2441. "label": "Temporary Volume",
  2442. "schema": {
  2443. "type": "boolean",
  2444. "default": true,
  2445. "editable": false
  2446. }
  2447. },
  2448. {
  2449. "variable": "mountPath",
  2450. "label": "Plex Shared Logs Mount Path",
  2451. "description": "Path where the volume will be mounted inside the pod",
  2452. "schema": {
  2453. "type": "path",
  2454. "editable": false,
  2455. "default": "/config/Library/Application Support/Plex Media Server/Logs"
  2456. }
  2457. }
  2458. ]
  2459. }
  2460. }
  2461. ]
  2462. }
  2463. },
  2464. {
  2465. "variable": "extraAppVolumeMounts",
  2466. "label": "Plex Extra Host Path Volumes",
  2467. "group": "Storage",
  2468. "schema": {
  2469. "type": "list",
  2470. "items": [
  2471. {
  2472. "variable": "extraAppVolume",
  2473. "label": "Plex Host Path Volume",
  2474. "description": "Add an extra host path volume for plex application",
  2475. "schema": {
  2476. "type": "dict",
  2477. "attrs": [
  2478. {
  2479. "variable": "mountPath",
  2480. "label": "Mount Path in Pod",
  2481. "description": "Path where the volume will be mounted inside the pod",
  2482. "schema": {
  2483. "type": "path",
  2484. "required": true
  2485. }
  2486. },
  2487. {
  2488. "variable": "hostPath",
  2489. "label": "Host Path",
  2490. "description": "Host path",
  2491. "schema": {
  2492. "type": "hostpath",
  2493. "required": true,
  2494. "$ref": [
  2495. "validations/lockedHostPath"
  2496. ]
  2497. }
  2498. },
  2499. {
  2500. "variable": "readOnly",
  2501. "label": "Read Only",
  2502. "description": "Mount hostpath in read-only mode",
  2503. "schema": {
  2504. "type": "boolean",
  2505. "default": false
  2506. }
  2507. }
  2508. ]
  2509. }
  2510. }
  2511. ]
  2512. }
  2513. },
  2514. {
  2515. "variable": "enableResourceLimits",
  2516. "label": "Enable Pod resource limits",
  2517. "group": "Resource Limits",
  2518. "schema": {
  2519. "type": "boolean",
  2520. "default": false
  2521. }
  2522. },
  2523. {
  2524. "variable": "cpuLimit",
  2525. "label": "CPU Limit",
  2526. "description": "CPU resource limit allow plain integer values with suffix m(milli) e.g 1000m, 100.",
  2527. "group": "Resource Limits",
  2528. "schema": {
  2529. "type": "string",
  2530. "show_if": [
  2531. [
  2532. "enableResourceLimits",
  2533. "=",
  2534. true
  2535. ]
  2536. ],
  2537. "valid_chars": "^\\d+(?:\\.\\d+(?!.*m$)|m?$)",
  2538. "default": "4000m"
  2539. }
  2540. },
  2541. {
  2542. "variable": "memLimit",
  2543. "label": "Memory Limit",
  2544. "group": "Resource Limits",
  2545. "description": "Memory limits is specified by number of bytes. Followed by quantity suffix like E,P,T,G,M,k and Ei,Pi,Ti,Mi,Gi,Ki can also be used. e.g 129e6, 129M, 128974848000m, 123Mi",
  2546. "schema": {
  2547. "type": "string",
  2548. "show_if": [
  2549. [
  2550. "enableResourceLimits",
  2551. "=",
  2552. true
  2553. ]
  2554. ],
  2555. "valid_chars": "^([+-]?[0-9.]+)([eEinumkKMGTP]*[-+]?[0-9]*)$",
  2556. "default": "8Gi"
  2557. }
  2558. }
  2559. ]
  2560. },
  2561. "app_readme": "<h1>Plex</h1>\n<p>Plex chart is a chart designed to deploy plex in a TrueNAS SCALE kubernetes cluster.</p>",
  2562. "detailed_readme": "<h1>Plex Media Server helm chart</h1>\n<h2>Configuration</h2>\n<p>Please refer to questions.yaml for a detailed overview on supported configurable items.</p>",
  2563. "changelog": null
  2564. }
  2565. }