app_versions.json 223 KB

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