app_versions.json 162 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097
  1. {
  2. "1.0.3": {
  3. "healthy": true,
  4. "supported": false,
  5. "healthy_error": null,
  6. "location": "/__w/charts/charts/community/handbrake/1.0.3",
  7. "last_update": "2025-03-05 14:27:33",
  8. "required_features": [
  9. "normalize/ixVolume",
  10. "definitions/timezone",
  11. "definitions/gpuConfiguration",
  12. "normalize/acl"
  13. ],
  14. "human_version": "23.12.2_1.0.3",
  15. "version": "1.0.3",
  16. "chart_metadata": {
  17. "name": "handbrake",
  18. "description": "HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs.",
  19. "annotations": {
  20. "title": "HandBrake"
  21. },
  22. "type": "application",
  23. "version": "1.0.3",
  24. "apiVersion": "v2",
  25. "appVersion": "23.12.2",
  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://github.com/jlesage/docker-handbrake",
  42. "icon": "https://media.sys.truenas.net/apps/handbrake/icons/icon.png",
  43. "sources": [
  44. "https://github.com/jlesage/docker-handbrake",
  45. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/handbrake",
  46. "https://hub.docker.com/r/jlesage/handbrake"
  47. ],
  48. "keywords": [
  49. "media",
  50. "video",
  51. "transcoder"
  52. ]
  53. },
  54. "app_metadata": {
  55. "runAsContext": [
  56. {
  57. "userName": "root",
  58. "groupName": "root",
  59. "gid": 0,
  60. "uid": 0,
  61. "description": "Handbrake runs as root user."
  62. }
  63. ],
  64. "capabilities": [
  65. {
  66. "name": "CHOWN",
  67. "description": "Handbrake is able to change file ownership."
  68. },
  69. {
  70. "name": "DAC_OVERRIDE",
  71. "description": "Handbrake is able to bypass file read, write, and execute permission checks."
  72. },
  73. {
  74. "name": "FOWNER",
  75. "description": "Handbrake is able to bypass permission checks on operations that normally require the file system UID of the process to match the UID of the file."
  76. },
  77. {
  78. "name": "SETUID",
  79. "description": "Handbrake is able to set the setuid attribute on a file."
  80. },
  81. {
  82. "name": "SETGID",
  83. "description": "Handbrake is able to set the setgid attribute on a file."
  84. },
  85. {
  86. "name": "NET_BIND_SERVICE",
  87. "description": "Handbrake is able to bind a socket to internet domain privileged ports (port numbers less than 1024)."
  88. },
  89. {
  90. "name": "KILL",
  91. "description": "Handbrake is able to kill processes."
  92. }
  93. ],
  94. "hostMounts": []
  95. },
  96. "schema": {
  97. "groups": [
  98. {
  99. "name": "Handbrake Configuration",
  100. "description": "Configure Handbrake"
  101. },
  102. {
  103. "name": "User and Group Configuration",
  104. "description": "Configure User and Group for Handbrake"
  105. },
  106. {
  107. "name": "Network Configuration",
  108. "description": "Configure Network for Handbrake"
  109. },
  110. {
  111. "name": "Storage Configuration",
  112. "description": "Configure Storage for Handbrake"
  113. },
  114. {
  115. "name": "Resources Configuration",
  116. "description": "Configure Resources for Handbrake"
  117. }
  118. ],
  119. "portals": {
  120. "web_portal": {
  121. "protocols": [
  122. "$kubernetes-resource_configmap_portal_protocol"
  123. ],
  124. "host": [
  125. "$kubernetes-resource_configmap_portal_host"
  126. ],
  127. "ports": [
  128. "$kubernetes-resource_configmap_portal_port"
  129. ],
  130. "path": "$kubernetes-resource_configmap_portal_path"
  131. }
  132. },
  133. "questions": [
  134. {
  135. "variable": "TZ",
  136. "group": "Handbrake Configuration",
  137. "label": "Timezone",
  138. "schema": {
  139. "type": "string",
  140. "default": "America/Los_Angeles",
  141. "required": true,
  142. "$ref": [
  143. "definitions/timezone"
  144. ],
  145. "enum": [
  146. {
  147. "value": "Asia/Damascus",
  148. "description": "'Asia/Damascus' timezone"
  149. },
  150. {
  151. "value": "Asia/Saigon",
  152. "description": "'Asia/Saigon' timezone"
  153. }
  154. ]
  155. }
  156. },
  157. {
  158. "variable": "handbrakeConfig",
  159. "label": "",
  160. "group": "Handbrake Configuration",
  161. "schema": {
  162. "type": "dict",
  163. "attrs": [
  164. {
  165. "variable": "darkMode",
  166. "label": "Dark Mode",
  167. "description": "Enable dark mode for Handbrake.",
  168. "schema": {
  169. "type": "boolean",
  170. "default": false
  171. }
  172. },
  173. {
  174. "variable": "vncPassword",
  175. "label": "VNC Password",
  176. "description": "The password for the VNC UI.",
  177. "schema": {
  178. "type": "string",
  179. "default": "",
  180. "private": true
  181. }
  182. },
  183. {
  184. "variable": "secureConnection",
  185. "label": "Secure Connection",
  186. "description": "Enable secure connection for Handbrake.",
  187. "schema": {
  188. "type": "boolean",
  189. "default": false
  190. }
  191. },
  192. {
  193. "variable": "additionalEnvs",
  194. "label": "Additional Environment Variables",
  195. "description": "Configure additional environment variables for Handbrake.",
  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": "handbrakeID",
  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 Handbrake 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 Handbrake 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": "handbrakeNetwork",
  265. "label": "",
  266. "group": "Network Configuration",
  267. "schema": {
  268. "type": "dict",
  269. "attrs": [
  270. {
  271. "variable": "webPort",
  272. "label": "Web Port",
  273. "description": "The port for the Handbrake Web UI.",
  274. "schema": {
  275. "type": "int",
  276. "default": 31010,
  277. "min": 9000,
  278. "max": 65535,
  279. "required": true
  280. }
  281. },
  282. {
  283. "variable": "vncPort",
  284. "label": "VNC Port",
  285. "description": "The port for the Handbrake VNC UI.",
  286. "schema": {
  287. "type": "int",
  288. "default": 31011,
  289. "min": 9000,
  290. "max": 65535,
  291. "required": true
  292. }
  293. },
  294. {
  295. "variable": "hostNetwork",
  296. "label": "Host Network",
  297. "description": "Bind to the host network. It's recommended to keep this disabled.</br>\n",
  298. "schema": {
  299. "type": "boolean",
  300. "default": false
  301. }
  302. }
  303. ]
  304. }
  305. },
  306. {
  307. "variable": "handbrakeStorage",
  308. "label": "",
  309. "group": "Storage Configuration",
  310. "schema": {
  311. "type": "dict",
  312. "attrs": [
  313. {
  314. "variable": "config",
  315. "label": "Handbrake Config Storage",
  316. "description": "The path to store Handbrake Configuration.",
  317. "schema": {
  318. "type": "dict",
  319. "attrs": [
  320. {
  321. "variable": "type",
  322. "label": "Type",
  323. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  324. "schema": {
  325. "type": "string",
  326. "required": true,
  327. "immutable": true,
  328. "default": "ixVolume",
  329. "enum": [
  330. {
  331. "value": "hostPath",
  332. "description": "Host Path (Path that already exists on the system)"
  333. },
  334. {
  335. "value": "ixVolume",
  336. "description": "ixVolume (Dataset created automatically by the system)"
  337. }
  338. ]
  339. }
  340. },
  341. {
  342. "variable": "ixVolumeConfig",
  343. "label": "ixVolume Configuration",
  344. "description": "The configuration for the ixVolume dataset.",
  345. "schema": {
  346. "type": "dict",
  347. "show_if": [
  348. [
  349. "type",
  350. "=",
  351. "ixVolume"
  352. ]
  353. ],
  354. "$ref": [
  355. "normalize/ixVolume"
  356. ],
  357. "attrs": [
  358. {
  359. "variable": "aclEnable",
  360. "label": "Enable ACL",
  361. "description": "Enable ACL for the dataset.",
  362. "schema": {
  363. "type": "boolean",
  364. "default": false
  365. }
  366. },
  367. {
  368. "variable": "datasetName",
  369. "label": "Dataset Name",
  370. "description": "The name of the dataset to use for storage.",
  371. "schema": {
  372. "type": "string",
  373. "required": true,
  374. "immutable": true,
  375. "hidden": true,
  376. "default": "config"
  377. }
  378. },
  379. {
  380. "variable": "aclEntries",
  381. "label": "ACL Configuration",
  382. "schema": {
  383. "type": "dict",
  384. "show_if": [
  385. [
  386. "aclEnable",
  387. "=",
  388. true
  389. ]
  390. ],
  391. "attrs": [
  392. {
  393. "variable": "path",
  394. "label": "Path",
  395. "description": "Path to perform ACL",
  396. "schema": {
  397. "type": "string",
  398. "hidden": true
  399. }
  400. },
  401. {
  402. "variable": "entries",
  403. "label": "ACL Entries",
  404. "description": "ACL Entries",
  405. "schema": {
  406. "type": "list",
  407. "items": [
  408. {
  409. "variable": "aclEntry",
  410. "label": "ACL Entry",
  411. "schema": {
  412. "type": "dict",
  413. "attrs": [
  414. {
  415. "variable": "id_type",
  416. "label": "ID Type",
  417. "schema": {
  418. "type": "string",
  419. "enum": [
  420. {
  421. "value": "USER",
  422. "description": "Entry is for a USER"
  423. },
  424. {
  425. "value": "GROUP",
  426. "description": "Entry is for a GROUP"
  427. }
  428. ],
  429. "default": "USER"
  430. }
  431. },
  432. {
  433. "variable": "id",
  434. "label": "ID",
  435. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  436. "schema": {
  437. "type": "int",
  438. "required": true,
  439. "min": 0
  440. }
  441. },
  442. {
  443. "variable": "access",
  444. "label": "Access",
  445. "schema": {
  446. "type": "string",
  447. "enum": [
  448. {
  449. "value": "READ",
  450. "description": "Read Access"
  451. },
  452. {
  453. "value": "MODIFY",
  454. "description": "Modify Access"
  455. },
  456. {
  457. "value": "FULL_CONTROL",
  458. "description": "FULL_CONTROL Access"
  459. }
  460. ]
  461. }
  462. }
  463. ]
  464. }
  465. }
  466. ]
  467. }
  468. }
  469. ]
  470. }
  471. }
  472. ]
  473. }
  474. },
  475. {
  476. "variable": "hostPathConfig",
  477. "label": "Host Path Configuration",
  478. "schema": {
  479. "type": "dict",
  480. "show_if": [
  481. [
  482. "type",
  483. "=",
  484. "hostPath"
  485. ]
  486. ],
  487. "attrs": [
  488. {
  489. "variable": "aclEnable",
  490. "label": "Enable ACL",
  491. "description": "Enable ACL for the dataset.",
  492. "schema": {
  493. "type": "boolean",
  494. "default": false
  495. }
  496. },
  497. {
  498. "variable": "acl",
  499. "label": "ACL Configuration",
  500. "schema": {
  501. "type": "dict",
  502. "show_if": [
  503. [
  504. "aclEnable",
  505. "=",
  506. true
  507. ]
  508. ],
  509. "attrs": [
  510. {
  511. "variable": "path",
  512. "label": "Host Path",
  513. "description": "Host Path to perform ACL",
  514. "schema": {
  515. "type": "hostpath",
  516. "required": true,
  517. "empty": false
  518. }
  519. },
  520. {
  521. "variable": "entries",
  522. "label": "ACL Entries",
  523. "description": "ACL Entries",
  524. "schema": {
  525. "type": "list",
  526. "items": [
  527. {
  528. "variable": "aclEntry",
  529. "label": "ACL Entry",
  530. "schema": {
  531. "type": "dict",
  532. "attrs": [
  533. {
  534. "variable": "id_type",
  535. "label": "ID Type",
  536. "schema": {
  537. "type": "string",
  538. "enum": [
  539. {
  540. "value": "USER",
  541. "description": "Entry is for a USER"
  542. },
  543. {
  544. "value": "GROUP",
  545. "description": "Entry is for a GROUP"
  546. }
  547. ],
  548. "default": "USER"
  549. }
  550. },
  551. {
  552. "variable": "id",
  553. "label": "ID",
  554. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  555. "schema": {
  556. "type": "int",
  557. "required": true,
  558. "min": 0
  559. }
  560. },
  561. {
  562. "variable": "access",
  563. "label": "Access",
  564. "schema": {
  565. "type": "string",
  566. "enum": [
  567. {
  568. "value": "READ",
  569. "description": "Read Access"
  570. },
  571. {
  572. "value": "MODIFY",
  573. "description": "Modify Access"
  574. },
  575. {
  576. "value": "FULL_CONTROL",
  577. "description": "FULL_CONTROL Access"
  578. }
  579. ]
  580. }
  581. }
  582. ]
  583. }
  584. }
  585. ]
  586. }
  587. },
  588. {
  589. "variable": "options",
  590. "label": "ACL Options",
  591. "schema": {
  592. "type": "dict",
  593. "attrs": [
  594. {
  595. "variable": "force",
  596. "label": "Force Flag",
  597. "description": "Enabling `Force` applies ACL even if the path has existing data",
  598. "schema": {
  599. "type": "boolean",
  600. "default": false
  601. }
  602. }
  603. ]
  604. }
  605. }
  606. ],
  607. "$ref": [
  608. "normalize/acl"
  609. ]
  610. }
  611. },
  612. {
  613. "variable": "hostPath",
  614. "label": "Host Path",
  615. "description": "The host path to use for storage.",
  616. "schema": {
  617. "type": "hostpath",
  618. "show_if": [
  619. [
  620. "aclEnable",
  621. "=",
  622. false
  623. ]
  624. ],
  625. "required": true
  626. }
  627. }
  628. ]
  629. }
  630. }
  631. ]
  632. }
  633. },
  634. {
  635. "variable": "storage",
  636. "label": "Handbrake Download Storage",
  637. "description": "The path to store Handbrake Storage.",
  638. "schema": {
  639. "type": "dict",
  640. "attrs": [
  641. {
  642. "variable": "type",
  643. "label": "Type",
  644. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  645. "schema": {
  646. "type": "string",
  647. "required": true,
  648. "immutable": true,
  649. "default": "ixVolume",
  650. "enum": [
  651. {
  652. "value": "hostPath",
  653. "description": "Host Path (Path that already exists on the system)"
  654. },
  655. {
  656. "value": "ixVolume",
  657. "description": "ixVolume (Dataset created automatically by the system)"
  658. }
  659. ]
  660. }
  661. },
  662. {
  663. "variable": "readOnly",
  664. "label": "Read Only",
  665. "description": "Mount the volume as read only.",
  666. "schema": {
  667. "type": "boolean",
  668. "default": false
  669. }
  670. },
  671. {
  672. "variable": "ixVolumeConfig",
  673. "label": "ixVolume Configuration",
  674. "description": "The configuration for the ixVolume dataset.",
  675. "schema": {
  676. "type": "dict",
  677. "show_if": [
  678. [
  679. "type",
  680. "=",
  681. "ixVolume"
  682. ]
  683. ],
  684. "$ref": [
  685. "normalize/ixVolume"
  686. ],
  687. "attrs": [
  688. {
  689. "variable": "aclEnable",
  690. "label": "Enable ACL",
  691. "description": "Enable ACL for the dataset.",
  692. "schema": {
  693. "type": "boolean",
  694. "default": false
  695. }
  696. },
  697. {
  698. "variable": "datasetName",
  699. "label": "Dataset Name",
  700. "description": "The name of the dataset to use for storage.",
  701. "schema": {
  702. "type": "string",
  703. "required": true,
  704. "immutable": true,
  705. "hidden": true,
  706. "default": "storage"
  707. }
  708. },
  709. {
  710. "variable": "aclEntries",
  711. "label": "ACL Configuration",
  712. "schema": {
  713. "type": "dict",
  714. "show_if": [
  715. [
  716. "aclEnable",
  717. "=",
  718. true
  719. ]
  720. ],
  721. "attrs": [
  722. {
  723. "variable": "path",
  724. "label": "Path",
  725. "description": "Path to perform ACL",
  726. "schema": {
  727. "type": "string",
  728. "hidden": true
  729. }
  730. },
  731. {
  732. "variable": "entries",
  733. "label": "ACL Entries",
  734. "description": "ACL Entries",
  735. "schema": {
  736. "type": "list",
  737. "items": [
  738. {
  739. "variable": "aclEntry",
  740. "label": "ACL Entry",
  741. "schema": {
  742. "type": "dict",
  743. "attrs": [
  744. {
  745. "variable": "id_type",
  746. "label": "ID Type",
  747. "schema": {
  748. "type": "string",
  749. "enum": [
  750. {
  751. "value": "USER",
  752. "description": "Entry is for a USER"
  753. },
  754. {
  755. "value": "GROUP",
  756. "description": "Entry is for a GROUP"
  757. }
  758. ],
  759. "default": "USER"
  760. }
  761. },
  762. {
  763. "variable": "id",
  764. "label": "ID",
  765. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  766. "schema": {
  767. "type": "int",
  768. "required": true,
  769. "min": 0
  770. }
  771. },
  772. {
  773. "variable": "access",
  774. "label": "Access",
  775. "schema": {
  776. "type": "string",
  777. "enum": [
  778. {
  779. "value": "READ",
  780. "description": "Read Access"
  781. },
  782. {
  783. "value": "MODIFY",
  784. "description": "Modify Access"
  785. },
  786. {
  787. "value": "FULL_CONTROL",
  788. "description": "FULL_CONTROL Access"
  789. }
  790. ]
  791. }
  792. }
  793. ]
  794. }
  795. }
  796. ]
  797. }
  798. }
  799. ]
  800. }
  801. }
  802. ]
  803. }
  804. },
  805. {
  806. "variable": "hostPathConfig",
  807. "label": "Host Path Configuration",
  808. "schema": {
  809. "type": "dict",
  810. "show_if": [
  811. [
  812. "type",
  813. "=",
  814. "hostPath"
  815. ]
  816. ],
  817. "attrs": [
  818. {
  819. "variable": "aclEnable",
  820. "label": "Enable ACL",
  821. "description": "Enable ACL for the dataset.",
  822. "schema": {
  823. "type": "boolean",
  824. "default": false
  825. }
  826. },
  827. {
  828. "variable": "acl",
  829. "label": "ACL Configuration",
  830. "schema": {
  831. "type": "dict",
  832. "show_if": [
  833. [
  834. "aclEnable",
  835. "=",
  836. true
  837. ]
  838. ],
  839. "attrs": [
  840. {
  841. "variable": "path",
  842. "label": "Host Path",
  843. "description": "Host Path to perform ACL",
  844. "schema": {
  845. "type": "hostpath",
  846. "required": true,
  847. "empty": false
  848. }
  849. },
  850. {
  851. "variable": "entries",
  852. "label": "ACL Entries",
  853. "description": "ACL Entries",
  854. "schema": {
  855. "type": "list",
  856. "items": [
  857. {
  858. "variable": "aclEntry",
  859. "label": "ACL Entry",
  860. "schema": {
  861. "type": "dict",
  862. "attrs": [
  863. {
  864. "variable": "id_type",
  865. "label": "ID Type",
  866. "schema": {
  867. "type": "string",
  868. "enum": [
  869. {
  870. "value": "USER",
  871. "description": "Entry is for a USER"
  872. },
  873. {
  874. "value": "GROUP",
  875. "description": "Entry is for a GROUP"
  876. }
  877. ],
  878. "default": "USER"
  879. }
  880. },
  881. {
  882. "variable": "id",
  883. "label": "ID",
  884. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  885. "schema": {
  886. "type": "int",
  887. "required": true,
  888. "min": 0
  889. }
  890. },
  891. {
  892. "variable": "access",
  893. "label": "Access",
  894. "schema": {
  895. "type": "string",
  896. "enum": [
  897. {
  898. "value": "READ",
  899. "description": "Read Access"
  900. },
  901. {
  902. "value": "MODIFY",
  903. "description": "Modify Access"
  904. },
  905. {
  906. "value": "FULL_CONTROL",
  907. "description": "FULL_CONTROL Access"
  908. }
  909. ]
  910. }
  911. }
  912. ]
  913. }
  914. }
  915. ]
  916. }
  917. },
  918. {
  919. "variable": "options",
  920. "label": "ACL Options",
  921. "schema": {
  922. "type": "dict",
  923. "attrs": [
  924. {
  925. "variable": "force",
  926. "label": "Force Flag",
  927. "description": "Enabling `Force` applies ACL even if the path has existing data",
  928. "schema": {
  929. "type": "boolean",
  930. "default": false
  931. }
  932. }
  933. ]
  934. }
  935. }
  936. ],
  937. "$ref": [
  938. "normalize/acl"
  939. ]
  940. }
  941. },
  942. {
  943. "variable": "hostPath",
  944. "label": "Host Path",
  945. "description": "The host path to use for storage.",
  946. "schema": {
  947. "type": "hostpath",
  948. "show_if": [
  949. [
  950. "aclEnable",
  951. "=",
  952. false
  953. ]
  954. ],
  955. "required": true
  956. }
  957. }
  958. ]
  959. }
  960. }
  961. ]
  962. }
  963. },
  964. {
  965. "variable": "output",
  966. "label": "Handbrake Output Storage",
  967. "description": "The path to store Handbrake Output.",
  968. "schema": {
  969. "type": "dict",
  970. "attrs": [
  971. {
  972. "variable": "type",
  973. "label": "Type",
  974. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  975. "schema": {
  976. "type": "string",
  977. "required": true,
  978. "immutable": true,
  979. "default": "ixVolume",
  980. "enum": [
  981. {
  982. "value": "hostPath",
  983. "description": "Host Path (Path that already exists on the system)"
  984. },
  985. {
  986. "value": "ixVolume",
  987. "description": "ixVolume (Dataset created automatically by the system)"
  988. }
  989. ]
  990. }
  991. },
  992. {
  993. "variable": "ixVolumeConfig",
  994. "label": "ixVolume Configuration",
  995. "description": "The configuration for the ixVolume dataset.",
  996. "schema": {
  997. "type": "dict",
  998. "show_if": [
  999. [
  1000. "type",
  1001. "=",
  1002. "ixVolume"
  1003. ]
  1004. ],
  1005. "$ref": [
  1006. "normalize/ixVolume"
  1007. ],
  1008. "attrs": [
  1009. {
  1010. "variable": "aclEnable",
  1011. "label": "Enable ACL",
  1012. "description": "Enable ACL for the dataset.",
  1013. "schema": {
  1014. "type": "boolean",
  1015. "default": false
  1016. }
  1017. },
  1018. {
  1019. "variable": "datasetName",
  1020. "label": "Dataset Name",
  1021. "description": "The name of the dataset to use for storage.",
  1022. "schema": {
  1023. "type": "string",
  1024. "required": true,
  1025. "immutable": true,
  1026. "hidden": true,
  1027. "default": "output"
  1028. }
  1029. },
  1030. {
  1031. "variable": "aclEntries",
  1032. "label": "ACL Configuration",
  1033. "schema": {
  1034. "type": "dict",
  1035. "show_if": [
  1036. [
  1037. "aclEnable",
  1038. "=",
  1039. true
  1040. ]
  1041. ],
  1042. "attrs": [
  1043. {
  1044. "variable": "path",
  1045. "label": "Path",
  1046. "description": "Path to perform ACL",
  1047. "schema": {
  1048. "type": "string",
  1049. "hidden": true
  1050. }
  1051. },
  1052. {
  1053. "variable": "entries",
  1054. "label": "ACL Entries",
  1055. "description": "ACL Entries",
  1056. "schema": {
  1057. "type": "list",
  1058. "items": [
  1059. {
  1060. "variable": "aclEntry",
  1061. "label": "ACL Entry",
  1062. "schema": {
  1063. "type": "dict",
  1064. "attrs": [
  1065. {
  1066. "variable": "id_type",
  1067. "label": "ID Type",
  1068. "schema": {
  1069. "type": "string",
  1070. "enum": [
  1071. {
  1072. "value": "USER",
  1073. "description": "Entry is for a USER"
  1074. },
  1075. {
  1076. "value": "GROUP",
  1077. "description": "Entry is for a GROUP"
  1078. }
  1079. ],
  1080. "default": "USER"
  1081. }
  1082. },
  1083. {
  1084. "variable": "id",
  1085. "label": "ID",
  1086. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  1087. "schema": {
  1088. "type": "int",
  1089. "required": true,
  1090. "min": 0
  1091. }
  1092. },
  1093. {
  1094. "variable": "access",
  1095. "label": "Access",
  1096. "schema": {
  1097. "type": "string",
  1098. "enum": [
  1099. {
  1100. "value": "READ",
  1101. "description": "Read Access"
  1102. },
  1103. {
  1104. "value": "MODIFY",
  1105. "description": "Modify Access"
  1106. },
  1107. {
  1108. "value": "FULL_CONTROL",
  1109. "description": "FULL_CONTROL Access"
  1110. }
  1111. ]
  1112. }
  1113. }
  1114. ]
  1115. }
  1116. }
  1117. ]
  1118. }
  1119. }
  1120. ]
  1121. }
  1122. }
  1123. ]
  1124. }
  1125. },
  1126. {
  1127. "variable": "hostPathConfig",
  1128. "label": "Host Path Configuration",
  1129. "schema": {
  1130. "type": "dict",
  1131. "show_if": [
  1132. [
  1133. "type",
  1134. "=",
  1135. "hostPath"
  1136. ]
  1137. ],
  1138. "attrs": [
  1139. {
  1140. "variable": "aclEnable",
  1141. "label": "Enable ACL",
  1142. "description": "Enable ACL for the dataset.",
  1143. "schema": {
  1144. "type": "boolean",
  1145. "default": false
  1146. }
  1147. },
  1148. {
  1149. "variable": "acl",
  1150. "label": "ACL Configuration",
  1151. "schema": {
  1152. "type": "dict",
  1153. "show_if": [
  1154. [
  1155. "aclEnable",
  1156. "=",
  1157. true
  1158. ]
  1159. ],
  1160. "attrs": [
  1161. {
  1162. "variable": "path",
  1163. "label": "Host Path",
  1164. "description": "Host Path to perform ACL",
  1165. "schema": {
  1166. "type": "hostpath",
  1167. "required": true,
  1168. "empty": false
  1169. }
  1170. },
  1171. {
  1172. "variable": "entries",
  1173. "label": "ACL Entries",
  1174. "description": "ACL Entries",
  1175. "schema": {
  1176. "type": "list",
  1177. "items": [
  1178. {
  1179. "variable": "aclEntry",
  1180. "label": "ACL Entry",
  1181. "schema": {
  1182. "type": "dict",
  1183. "attrs": [
  1184. {
  1185. "variable": "id_type",
  1186. "label": "ID Type",
  1187. "schema": {
  1188. "type": "string",
  1189. "enum": [
  1190. {
  1191. "value": "USER",
  1192. "description": "Entry is for a USER"
  1193. },
  1194. {
  1195. "value": "GROUP",
  1196. "description": "Entry is for a GROUP"
  1197. }
  1198. ],
  1199. "default": "USER"
  1200. }
  1201. },
  1202. {
  1203. "variable": "id",
  1204. "label": "ID",
  1205. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  1206. "schema": {
  1207. "type": "int",
  1208. "required": true,
  1209. "min": 0
  1210. }
  1211. },
  1212. {
  1213. "variable": "access",
  1214. "label": "Access",
  1215. "schema": {
  1216. "type": "string",
  1217. "enum": [
  1218. {
  1219. "value": "READ",
  1220. "description": "Read Access"
  1221. },
  1222. {
  1223. "value": "MODIFY",
  1224. "description": "Modify Access"
  1225. },
  1226. {
  1227. "value": "FULL_CONTROL",
  1228. "description": "FULL_CONTROL Access"
  1229. }
  1230. ]
  1231. }
  1232. }
  1233. ]
  1234. }
  1235. }
  1236. ]
  1237. }
  1238. },
  1239. {
  1240. "variable": "options",
  1241. "label": "ACL Options",
  1242. "schema": {
  1243. "type": "dict",
  1244. "attrs": [
  1245. {
  1246. "variable": "force",
  1247. "label": "Force Flag",
  1248. "description": "Enabling `Force` applies ACL even if the path has existing data",
  1249. "schema": {
  1250. "type": "boolean",
  1251. "default": false
  1252. }
  1253. }
  1254. ]
  1255. }
  1256. }
  1257. ],
  1258. "$ref": [
  1259. "normalize/acl"
  1260. ]
  1261. }
  1262. },
  1263. {
  1264. "variable": "hostPath",
  1265. "label": "Host Path",
  1266. "description": "The host path to use for storage.",
  1267. "schema": {
  1268. "type": "hostpath",
  1269. "show_if": [
  1270. [
  1271. "aclEnable",
  1272. "=",
  1273. false
  1274. ]
  1275. ],
  1276. "required": true
  1277. }
  1278. }
  1279. ]
  1280. }
  1281. }
  1282. ]
  1283. }
  1284. },
  1285. {
  1286. "variable": "watch",
  1287. "label": "Handbrake Watch Storage",
  1288. "description": "The path to store Handbrake Watch.",
  1289. "schema": {
  1290. "type": "dict",
  1291. "attrs": [
  1292. {
  1293. "variable": "type",
  1294. "label": "Type",
  1295. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  1296. "schema": {
  1297. "type": "string",
  1298. "required": true,
  1299. "immutable": true,
  1300. "default": "ixVolume",
  1301. "enum": [
  1302. {
  1303. "value": "hostPath",
  1304. "description": "Host Path (Path that already exists on the system)"
  1305. },
  1306. {
  1307. "value": "ixVolume",
  1308. "description": "ixVolume (Dataset created automatically by the system)"
  1309. }
  1310. ]
  1311. }
  1312. },
  1313. {
  1314. "variable": "ixVolumeConfig",
  1315. "label": "ixVolume Configuration",
  1316. "description": "The configuration for the ixVolume dataset.",
  1317. "schema": {
  1318. "type": "dict",
  1319. "show_if": [
  1320. [
  1321. "type",
  1322. "=",
  1323. "ixVolume"
  1324. ]
  1325. ],
  1326. "$ref": [
  1327. "normalize/ixVolume"
  1328. ],
  1329. "attrs": [
  1330. {
  1331. "variable": "aclEnable",
  1332. "label": "Enable ACL",
  1333. "description": "Enable ACL for the dataset.",
  1334. "schema": {
  1335. "type": "boolean",
  1336. "default": false
  1337. }
  1338. },
  1339. {
  1340. "variable": "datasetName",
  1341. "label": "Dataset Name",
  1342. "description": "The name of the dataset to use for storage.",
  1343. "schema": {
  1344. "type": "string",
  1345. "required": true,
  1346. "immutable": true,
  1347. "hidden": true,
  1348. "default": "watch"
  1349. }
  1350. },
  1351. {
  1352. "variable": "aclEntries",
  1353. "label": "ACL Configuration",
  1354. "schema": {
  1355. "type": "dict",
  1356. "show_if": [
  1357. [
  1358. "aclEnable",
  1359. "=",
  1360. true
  1361. ]
  1362. ],
  1363. "attrs": [
  1364. {
  1365. "variable": "path",
  1366. "label": "Path",
  1367. "description": "Path to perform ACL",
  1368. "schema": {
  1369. "type": "string",
  1370. "hidden": true
  1371. }
  1372. },
  1373. {
  1374. "variable": "entries",
  1375. "label": "ACL Entries",
  1376. "description": "ACL Entries",
  1377. "schema": {
  1378. "type": "list",
  1379. "items": [
  1380. {
  1381. "variable": "aclEntry",
  1382. "label": "ACL Entry",
  1383. "schema": {
  1384. "type": "dict",
  1385. "attrs": [
  1386. {
  1387. "variable": "id_type",
  1388. "label": "ID Type",
  1389. "schema": {
  1390. "type": "string",
  1391. "enum": [
  1392. {
  1393. "value": "USER",
  1394. "description": "Entry is for a USER"
  1395. },
  1396. {
  1397. "value": "GROUP",
  1398. "description": "Entry is for a GROUP"
  1399. }
  1400. ],
  1401. "default": "USER"
  1402. }
  1403. },
  1404. {
  1405. "variable": "id",
  1406. "label": "ID",
  1407. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  1408. "schema": {
  1409. "type": "int",
  1410. "required": true,
  1411. "min": 0
  1412. }
  1413. },
  1414. {
  1415. "variable": "access",
  1416. "label": "Access",
  1417. "schema": {
  1418. "type": "string",
  1419. "enum": [
  1420. {
  1421. "value": "READ",
  1422. "description": "Read Access"
  1423. },
  1424. {
  1425. "value": "MODIFY",
  1426. "description": "Modify Access"
  1427. },
  1428. {
  1429. "value": "FULL_CONTROL",
  1430. "description": "FULL_CONTROL Access"
  1431. }
  1432. ]
  1433. }
  1434. }
  1435. ]
  1436. }
  1437. }
  1438. ]
  1439. }
  1440. }
  1441. ]
  1442. }
  1443. }
  1444. ]
  1445. }
  1446. },
  1447. {
  1448. "variable": "hostPathConfig",
  1449. "label": "Host Path Configuration",
  1450. "schema": {
  1451. "type": "dict",
  1452. "show_if": [
  1453. [
  1454. "type",
  1455. "=",
  1456. "hostPath"
  1457. ]
  1458. ],
  1459. "attrs": [
  1460. {
  1461. "variable": "aclEnable",
  1462. "label": "Enable ACL",
  1463. "description": "Enable ACL for the dataset.",
  1464. "schema": {
  1465. "type": "boolean",
  1466. "default": false
  1467. }
  1468. },
  1469. {
  1470. "variable": "acl",
  1471. "label": "ACL Configuration",
  1472. "schema": {
  1473. "type": "dict",
  1474. "show_if": [
  1475. [
  1476. "aclEnable",
  1477. "=",
  1478. true
  1479. ]
  1480. ],
  1481. "attrs": [
  1482. {
  1483. "variable": "path",
  1484. "label": "Host Path",
  1485. "description": "Host Path to perform ACL",
  1486. "schema": {
  1487. "type": "hostpath",
  1488. "required": true,
  1489. "empty": false
  1490. }
  1491. },
  1492. {
  1493. "variable": "entries",
  1494. "label": "ACL Entries",
  1495. "description": "ACL Entries",
  1496. "schema": {
  1497. "type": "list",
  1498. "items": [
  1499. {
  1500. "variable": "aclEntry",
  1501. "label": "ACL Entry",
  1502. "schema": {
  1503. "type": "dict",
  1504. "attrs": [
  1505. {
  1506. "variable": "id_type",
  1507. "label": "ID Type",
  1508. "schema": {
  1509. "type": "string",
  1510. "enum": [
  1511. {
  1512. "value": "USER",
  1513. "description": "Entry is for a USER"
  1514. },
  1515. {
  1516. "value": "GROUP",
  1517. "description": "Entry is for a GROUP"
  1518. }
  1519. ],
  1520. "default": "USER"
  1521. }
  1522. },
  1523. {
  1524. "variable": "id",
  1525. "label": "ID",
  1526. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  1527. "schema": {
  1528. "type": "int",
  1529. "required": true,
  1530. "min": 0
  1531. }
  1532. },
  1533. {
  1534. "variable": "access",
  1535. "label": "Access",
  1536. "schema": {
  1537. "type": "string",
  1538. "enum": [
  1539. {
  1540. "value": "READ",
  1541. "description": "Read Access"
  1542. },
  1543. {
  1544. "value": "MODIFY",
  1545. "description": "Modify Access"
  1546. },
  1547. {
  1548. "value": "FULL_CONTROL",
  1549. "description": "FULL_CONTROL Access"
  1550. }
  1551. ]
  1552. }
  1553. }
  1554. ]
  1555. }
  1556. }
  1557. ]
  1558. }
  1559. },
  1560. {
  1561. "variable": "options",
  1562. "label": "ACL Options",
  1563. "schema": {
  1564. "type": "dict",
  1565. "attrs": [
  1566. {
  1567. "variable": "force",
  1568. "label": "Force Flag",
  1569. "description": "Enabling `Force` applies ACL even if the path has existing data",
  1570. "schema": {
  1571. "type": "boolean",
  1572. "default": false
  1573. }
  1574. }
  1575. ]
  1576. }
  1577. }
  1578. ],
  1579. "$ref": [
  1580. "normalize/acl"
  1581. ]
  1582. }
  1583. },
  1584. {
  1585. "variable": "hostPath",
  1586. "label": "Host Path",
  1587. "description": "The host path to use for storage.",
  1588. "schema": {
  1589. "type": "hostpath",
  1590. "show_if": [
  1591. [
  1592. "aclEnable",
  1593. "=",
  1594. false
  1595. ]
  1596. ],
  1597. "required": true
  1598. }
  1599. }
  1600. ]
  1601. }
  1602. }
  1603. ]
  1604. }
  1605. },
  1606. {
  1607. "variable": "additionalStorages",
  1608. "label": "Additional Storage",
  1609. "description": "Additional storage for Handbrake.",
  1610. "schema": {
  1611. "type": "list",
  1612. "default": [],
  1613. "items": [
  1614. {
  1615. "variable": "storageEntry",
  1616. "label": "Storage Entry",
  1617. "schema": {
  1618. "type": "dict",
  1619. "attrs": [
  1620. {
  1621. "variable": "type",
  1622. "label": "Type",
  1623. "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",
  1624. "schema": {
  1625. "type": "string",
  1626. "required": true,
  1627. "default": "ixVolume",
  1628. "immutable": true,
  1629. "enum": [
  1630. {
  1631. "value": "hostPath",
  1632. "description": "Host Path (Path that already exists on the system)"
  1633. },
  1634. {
  1635. "value": "ixVolume",
  1636. "description": "ixVolume (Dataset created automatically by the system)"
  1637. },
  1638. {
  1639. "value": "smb-pv-pvc",
  1640. "description": "SMB Share (Mounts a persistent volume claim to a SMB share)"
  1641. }
  1642. ]
  1643. }
  1644. },
  1645. {
  1646. "variable": "readOnly",
  1647. "label": "Read Only",
  1648. "description": "Mount the volume as read only.",
  1649. "schema": {
  1650. "type": "boolean",
  1651. "default": false
  1652. }
  1653. },
  1654. {
  1655. "variable": "mountPath",
  1656. "label": "Mount Path",
  1657. "description": "The path inside the container to mount the storage.",
  1658. "schema": {
  1659. "type": "path",
  1660. "required": true
  1661. }
  1662. },
  1663. {
  1664. "variable": "hostPathConfig",
  1665. "label": "Host Path Configuration",
  1666. "schema": {
  1667. "type": "dict",
  1668. "show_if": [
  1669. [
  1670. "type",
  1671. "=",
  1672. "hostPath"
  1673. ]
  1674. ],
  1675. "attrs": [
  1676. {
  1677. "variable": "aclEnable",
  1678. "label": "Enable ACL",
  1679. "description": "Enable ACL for the dataset.",
  1680. "schema": {
  1681. "type": "boolean",
  1682. "default": false
  1683. }
  1684. },
  1685. {
  1686. "variable": "acl",
  1687. "label": "ACL Configuration",
  1688. "schema": {
  1689. "type": "dict",
  1690. "show_if": [
  1691. [
  1692. "aclEnable",
  1693. "=",
  1694. true
  1695. ]
  1696. ],
  1697. "attrs": [
  1698. {
  1699. "variable": "path",
  1700. "label": "Host Path",
  1701. "description": "Host Path to perform ACL",
  1702. "schema": {
  1703. "type": "hostpath",
  1704. "required": true,
  1705. "empty": false
  1706. }
  1707. },
  1708. {
  1709. "variable": "entries",
  1710. "label": "ACL Entries",
  1711. "description": "ACL Entries",
  1712. "schema": {
  1713. "type": "list",
  1714. "items": [
  1715. {
  1716. "variable": "aclEntry",
  1717. "label": "ACL Entry",
  1718. "schema": {
  1719. "type": "dict",
  1720. "attrs": [
  1721. {
  1722. "variable": "id_type",
  1723. "label": "ID Type",
  1724. "schema": {
  1725. "type": "string",
  1726. "enum": [
  1727. {
  1728. "value": "USER",
  1729. "description": "Entry is for a USER"
  1730. },
  1731. {
  1732. "value": "GROUP",
  1733. "description": "Entry is for a GROUP"
  1734. }
  1735. ],
  1736. "default": "USER"
  1737. }
  1738. },
  1739. {
  1740. "variable": "id",
  1741. "label": "ID",
  1742. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  1743. "schema": {
  1744. "type": "int",
  1745. "required": true,
  1746. "min": 0
  1747. }
  1748. },
  1749. {
  1750. "variable": "access",
  1751. "label": "Access",
  1752. "schema": {
  1753. "type": "string",
  1754. "enum": [
  1755. {
  1756. "value": "READ",
  1757. "description": "Read Access"
  1758. },
  1759. {
  1760. "value": "MODIFY",
  1761. "description": "Modify Access"
  1762. },
  1763. {
  1764. "value": "FULL_CONTROL",
  1765. "description": "FULL_CONTROL Access"
  1766. }
  1767. ]
  1768. }
  1769. }
  1770. ]
  1771. }
  1772. }
  1773. ]
  1774. }
  1775. },
  1776. {
  1777. "variable": "options",
  1778. "label": "ACL Options",
  1779. "schema": {
  1780. "type": "dict",
  1781. "attrs": [
  1782. {
  1783. "variable": "force",
  1784. "label": "Force Flag",
  1785. "description": "Enabling `Force` applies ACL even if the path has existing data",
  1786. "schema": {
  1787. "type": "boolean",
  1788. "default": false
  1789. }
  1790. }
  1791. ]
  1792. }
  1793. }
  1794. ],
  1795. "$ref": [
  1796. "normalize/acl"
  1797. ]
  1798. }
  1799. },
  1800. {
  1801. "variable": "hostPath",
  1802. "label": "Host Path",
  1803. "description": "The host path to use for storage.",
  1804. "schema": {
  1805. "type": "hostpath",
  1806. "show_if": [
  1807. [
  1808. "aclEnable",
  1809. "=",
  1810. false
  1811. ]
  1812. ],
  1813. "required": true
  1814. }
  1815. }
  1816. ]
  1817. }
  1818. },
  1819. {
  1820. "variable": "ixVolumeConfig",
  1821. "label": "ixVolume Configuration",
  1822. "description": "The configuration for the ixVolume dataset.",
  1823. "schema": {
  1824. "type": "dict",
  1825. "show_if": [
  1826. [
  1827. "type",
  1828. "=",
  1829. "ixVolume"
  1830. ]
  1831. ],
  1832. "$ref": [
  1833. "normalize/ixVolume"
  1834. ],
  1835. "attrs": [
  1836. {
  1837. "variable": "aclEnable",
  1838. "label": "Enable ACL",
  1839. "description": "Enable ACL for the dataset.",
  1840. "schema": {
  1841. "type": "boolean",
  1842. "default": false
  1843. }
  1844. },
  1845. {
  1846. "variable": "datasetName",
  1847. "label": "Dataset Name",
  1848. "description": "The name of the dataset to use for storage.",
  1849. "schema": {
  1850. "type": "string",
  1851. "required": true,
  1852. "immutable": true,
  1853. "default": "storage_entry"
  1854. }
  1855. },
  1856. {
  1857. "variable": "aclEntries",
  1858. "label": "ACL Configuration",
  1859. "schema": {
  1860. "type": "dict",
  1861. "show_if": [
  1862. [
  1863. "aclEnable",
  1864. "=",
  1865. true
  1866. ]
  1867. ],
  1868. "attrs": [
  1869. {
  1870. "variable": "path",
  1871. "label": "Path",
  1872. "description": "Path to perform ACL",
  1873. "schema": {
  1874. "type": "string",
  1875. "hidden": true
  1876. }
  1877. },
  1878. {
  1879. "variable": "entries",
  1880. "label": "ACL Entries",
  1881. "description": "ACL Entries",
  1882. "schema": {
  1883. "type": "list",
  1884. "items": [
  1885. {
  1886. "variable": "aclEntry",
  1887. "label": "ACL Entry",
  1888. "schema": {
  1889. "type": "dict",
  1890. "attrs": [
  1891. {
  1892. "variable": "id_type",
  1893. "label": "ID Type",
  1894. "schema": {
  1895. "type": "string",
  1896. "enum": [
  1897. {
  1898. "value": "USER",
  1899. "description": "Entry is for a USER"
  1900. },
  1901. {
  1902. "value": "GROUP",
  1903. "description": "Entry is for a GROUP"
  1904. }
  1905. ],
  1906. "default": "USER"
  1907. }
  1908. },
  1909. {
  1910. "variable": "id",
  1911. "label": "ID",
  1912. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  1913. "schema": {
  1914. "type": "int",
  1915. "required": true,
  1916. "min": 0
  1917. }
  1918. },
  1919. {
  1920. "variable": "access",
  1921. "label": "Access",
  1922. "schema": {
  1923. "type": "string",
  1924. "enum": [
  1925. {
  1926. "value": "READ",
  1927. "description": "Read Access"
  1928. },
  1929. {
  1930. "value": "MODIFY",
  1931. "description": "Modify Access"
  1932. },
  1933. {
  1934. "value": "FULL_CONTROL",
  1935. "description": "FULL_CONTROL Access"
  1936. }
  1937. ]
  1938. }
  1939. }
  1940. ]
  1941. }
  1942. }
  1943. ]
  1944. }
  1945. }
  1946. ]
  1947. }
  1948. }
  1949. ]
  1950. }
  1951. },
  1952. {
  1953. "variable": "smbConfig",
  1954. "label": "SMB Share Configuration",
  1955. "description": "The configuration for the SMB Share.",
  1956. "schema": {
  1957. "type": "dict",
  1958. "show_if": [
  1959. [
  1960. "type",
  1961. "=",
  1962. "smb-pv-pvc"
  1963. ]
  1964. ],
  1965. "attrs": [
  1966. {
  1967. "variable": "server",
  1968. "label": "Server",
  1969. "description": "The server for the SMB share.",
  1970. "schema": {
  1971. "type": "string",
  1972. "required": true
  1973. }
  1974. },
  1975. {
  1976. "variable": "share",
  1977. "label": "Share",
  1978. "description": "The share name for the SMB share.",
  1979. "schema": {
  1980. "type": "string",
  1981. "required": true
  1982. }
  1983. },
  1984. {
  1985. "variable": "domain",
  1986. "label": "Domain (Optional)",
  1987. "description": "The domain for the SMB share.",
  1988. "schema": {
  1989. "type": "string"
  1990. }
  1991. },
  1992. {
  1993. "variable": "username",
  1994. "label": "Username",
  1995. "description": "The username for the SMB share.",
  1996. "schema": {
  1997. "type": "string",
  1998. "required": true
  1999. }
  2000. },
  2001. {
  2002. "variable": "password",
  2003. "label": "Password",
  2004. "description": "The password for the SMB share.",
  2005. "schema": {
  2006. "type": "string",
  2007. "required": true,
  2008. "private": true
  2009. }
  2010. },
  2011. {
  2012. "variable": "size",
  2013. "label": "Size (in Gi)",
  2014. "description": "The size of the volume quota.",
  2015. "schema": {
  2016. "type": "int",
  2017. "required": true,
  2018. "min": 1,
  2019. "default": 1
  2020. }
  2021. }
  2022. ]
  2023. }
  2024. }
  2025. ]
  2026. }
  2027. }
  2028. ]
  2029. }
  2030. }
  2031. ]
  2032. }
  2033. },
  2034. {
  2035. "variable": "resources",
  2036. "group": "Resources Configuration",
  2037. "label": "",
  2038. "schema": {
  2039. "type": "dict",
  2040. "attrs": [
  2041. {
  2042. "variable": "limits",
  2043. "label": "Limits",
  2044. "schema": {
  2045. "type": "dict",
  2046. "attrs": [
  2047. {
  2048. "variable": "cpu",
  2049. "label": "CPU",
  2050. "description": "CPU limit for Handbrake.",
  2051. "schema": {
  2052. "type": "string",
  2053. "max_length": 6,
  2054. "valid_chars": "^(0\\.[1-9]|[1-9][0-9]*)(\\.[0-9]|m?)$",
  2055. "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",
  2056. "default": "4000m",
  2057. "required": true
  2058. }
  2059. },
  2060. {
  2061. "variable": "memory",
  2062. "label": "Memory",
  2063. "description": "Memory limit for Handbrake.",
  2064. "schema": {
  2065. "type": "string",
  2066. "max_length": 12,
  2067. "valid_chars": "^[1-9][0-9]*([EPTGMK]i?|e[0-9]+)?$",
  2068. "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",
  2069. "default": "8Gi",
  2070. "required": true
  2071. }
  2072. }
  2073. ]
  2074. }
  2075. }
  2076. ]
  2077. }
  2078. },
  2079. {
  2080. "variable": "handbrakeGPU",
  2081. "group": "Resources Configuration",
  2082. "label": "GPU Configuration",
  2083. "schema": {
  2084. "type": "dict",
  2085. "$ref": [
  2086. "definitions/gpuConfiguration"
  2087. ],
  2088. "attrs": []
  2089. }
  2090. }
  2091. ]
  2092. },
  2093. "app_readme": "<h1>Handbrake</h1>\n<p><a href=\"https://github.com/jlesage/docker-handbrake\">Handbrake</a> is a tool for converting video from nearly any format to a selection of modern, widely supported codecs.</p>",
  2094. "detailed_readme": "<h1>Handbrake</h1>\n<p><a href=\"https://github.com/jlesage/docker-handbrake\">Handbrake</a> is a tool for converting video from nearly any format to a selection of modern, widely supported codecs.</p>",
  2095. "changelog": null
  2096. }
  2097. }