app_versions.json 168 KB

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