app_versions.json 159 KB

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