app_versions.json 189 KB

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