app_versions.json 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690
  1. {
  2. "1.1.3": {
  3. "healthy": true,
  4. "supported": true,
  5. "healthy_error": null,
  6. "location": "/__w/charts/charts/community/listmonk/1.1.3",
  7. "last_update": "2023-11-14 10:11:57",
  8. "required_features": [
  9. "normalize/ixVolume"
  10. ],
  11. "human_version": "v2.5.1_1.1.3",
  12. "version": "1.1.3",
  13. "chart_metadata": {
  14. "name": "listmonk",
  15. "description": "Listmonk is a self-hosted newsletter and mailing list manager.",
  16. "annotations": {
  17. "title": "Listmonk"
  18. },
  19. "type": "application",
  20. "version": "1.1.3",
  21. "apiVersion": "v2",
  22. "appVersion": "v2.5.1",
  23. "kubeVersion": ">=1.16.0-0",
  24. "maintainers": [
  25. {
  26. "name": "truenas",
  27. "url": "https://www.truenas.com/",
  28. "email": "dev@ixsystems.com"
  29. }
  30. ],
  31. "dependencies": [
  32. {
  33. "name": "common",
  34. "repository": "file://../../../common",
  35. "version": "1.2.2"
  36. }
  37. ],
  38. "home": "https://listmonk.app/",
  39. "icon": "https://media.sys.truenas.net/apps/listmonk/icons/icon.svg",
  40. "sources": [
  41. "https://hub.docker.com/r/listmonk/listmonk",
  42. "https://github.com/knadh/listmonk",
  43. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/listmonk"
  44. ],
  45. "keywords": [
  46. "mailing-list",
  47. "newsletter"
  48. ]
  49. },
  50. "app_metadata": {
  51. "runAsContext": [
  52. {
  53. "userName": "listmonk",
  54. "groupName": "listmonk",
  55. "gid": 568,
  56. "uid": 568,
  57. "description": "Listmonk can run as any non-root user."
  58. }
  59. ],
  60. "capabilities": [],
  61. "hostMounts": []
  62. },
  63. "schema": {
  64. "groups": [
  65. {
  66. "name": "Listmonk Configuration",
  67. "description": "Configure Listmonk"
  68. },
  69. {
  70. "name": "User and Group Configuration",
  71. "description": "Configure User and Group for Listmonk"
  72. },
  73. {
  74. "name": "Network Configuration",
  75. "description": "Configure Network for Listmonk"
  76. },
  77. {
  78. "name": "Storage Configuration",
  79. "description": "Configure Storage for Listmonk"
  80. },
  81. {
  82. "name": "Resources Configuration",
  83. "description": "Configure Resources for Listmonk"
  84. }
  85. ],
  86. "portals": {
  87. "web_portal": {
  88. "protocols": [
  89. "$kubernetes-resource_configmap_portal_protocol"
  90. ],
  91. "host": [
  92. "$kubernetes-resource_configmap_portal_host"
  93. ],
  94. "ports": [
  95. "$kubernetes-resource_configmap_portal_port"
  96. ],
  97. "path": "$kubernetes-resource_configmap_portal_path"
  98. }
  99. },
  100. "questions": [
  101. {
  102. "variable": "listmonkConfig",
  103. "label": "",
  104. "group": "Listmonk Configuration",
  105. "schema": {
  106. "type": "dict",
  107. "attrs": [
  108. {
  109. "variable": "adminUsername",
  110. "label": "Admin Username (Optional)",
  111. "description": "The username for the Listmonk admin user.</br>\nLeave empty to disable authentication.\n",
  112. "schema": {
  113. "type": "string",
  114. "default": ""
  115. }
  116. },
  117. {
  118. "variable": "adminPassword",
  119. "label": "Admin Password",
  120. "description": "The password for the Listmonk admin user.",
  121. "schema": {
  122. "type": "string",
  123. "default": "",
  124. "show_if": [
  125. [
  126. "adminUsername",
  127. "!=",
  128. ""
  129. ]
  130. ],
  131. "required": true
  132. }
  133. },
  134. {
  135. "variable": "additionalEnvs",
  136. "label": "Additional Environment Variables",
  137. "description": "Configure additional environment variables for Listmonk.",
  138. "schema": {
  139. "type": "list",
  140. "default": [],
  141. "items": [
  142. {
  143. "variable": "env",
  144. "label": "Environment Variable",
  145. "schema": {
  146. "type": "dict",
  147. "attrs": [
  148. {
  149. "variable": "name",
  150. "label": "Name",
  151. "schema": {
  152. "type": "string",
  153. "required": true
  154. }
  155. },
  156. {
  157. "variable": "value",
  158. "label": "Value",
  159. "schema": {
  160. "type": "string",
  161. "required": true
  162. }
  163. }
  164. ]
  165. }
  166. }
  167. ]
  168. }
  169. }
  170. ]
  171. }
  172. },
  173. {
  174. "variable": "listmonkRunAs",
  175. "label": "",
  176. "group": "User and Group Configuration",
  177. "schema": {
  178. "type": "dict",
  179. "attrs": [
  180. {
  181. "variable": "user",
  182. "label": "User ID",
  183. "description": "The user id that Listmonk will run as.",
  184. "schema": {
  185. "type": "int",
  186. "min": 2,
  187. "default": 568,
  188. "required": true
  189. }
  190. },
  191. {
  192. "variable": "group",
  193. "label": "Group ID",
  194. "description": "The group id that Listmonk will run as.",
  195. "schema": {
  196. "type": "int",
  197. "min": 2,
  198. "default": 568,
  199. "required": true
  200. }
  201. }
  202. ]
  203. }
  204. },
  205. {
  206. "variable": "listmonkNetwork",
  207. "label": "",
  208. "group": "Network Configuration",
  209. "schema": {
  210. "type": "dict",
  211. "attrs": [
  212. {
  213. "variable": "webPort",
  214. "label": "Web Port",
  215. "description": "The port for the Listmonk Web UI.",
  216. "schema": {
  217. "type": "int",
  218. "default": 30093,
  219. "min": 9000,
  220. "max": 65535,
  221. "required": true
  222. }
  223. },
  224. {
  225. "variable": "hostNetwork",
  226. "label": "Host Network",
  227. "description": "Bind to the host network. It's recommended to keep this disabled.</br>\n",
  228. "schema": {
  229. "type": "boolean",
  230. "default": false
  231. }
  232. }
  233. ]
  234. }
  235. },
  236. {
  237. "variable": "listmonkStorage",
  238. "label": "",
  239. "group": "Storage Configuration",
  240. "schema": {
  241. "type": "dict",
  242. "attrs": [
  243. {
  244. "variable": "uploads",
  245. "label": "Listmonk Uploads Storage",
  246. "description": "The path to store Listmonk uploads.",
  247. "schema": {
  248. "type": "dict",
  249. "attrs": [
  250. {
  251. "variable": "type",
  252. "label": "Type",
  253. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  254. "schema": {
  255. "type": "string",
  256. "required": true,
  257. "immutable": true,
  258. "default": "ixVolume",
  259. "enum": [
  260. {
  261. "value": "hostPath",
  262. "description": "Host Path (Path that already exists on the system)"
  263. },
  264. {
  265. "value": "ixVolume",
  266. "description": "ixVolume (Dataset created automatically by the system)"
  267. }
  268. ]
  269. }
  270. },
  271. {
  272. "variable": "datasetName",
  273. "label": "Dataset Name",
  274. "schema": {
  275. "type": "string",
  276. "show_if": [
  277. [
  278. "type",
  279. "=",
  280. "ixVolume"
  281. ]
  282. ],
  283. "required": true,
  284. "hidden": true,
  285. "immutable": true,
  286. "default": "uploads",
  287. "$ref": [
  288. "normalize/ixVolume"
  289. ]
  290. }
  291. },
  292. {
  293. "variable": "hostPath",
  294. "label": "Host Path",
  295. "schema": {
  296. "type": "hostpath",
  297. "show_if": [
  298. [
  299. "type",
  300. "=",
  301. "hostPath"
  302. ]
  303. ],
  304. "immutable": true,
  305. "required": true
  306. }
  307. }
  308. ]
  309. }
  310. },
  311. {
  312. "variable": "pgData",
  313. "label": "Listmonk Postgres Data Storage",
  314. "description": "The path to store Listmonk Postgres Data.",
  315. "schema": {
  316. "type": "dict",
  317. "attrs": [
  318. {
  319. "variable": "type",
  320. "label": "Type",
  321. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  322. "schema": {
  323. "type": "string",
  324. "required": true,
  325. "immutable": true,
  326. "default": "ixVolume",
  327. "enum": [
  328. {
  329. "value": "hostPath",
  330. "description": "Host Path (Path that already exists on the system)"
  331. },
  332. {
  333. "value": "ixVolume",
  334. "description": "ixVolume (Dataset created automatically by the system)"
  335. }
  336. ]
  337. }
  338. },
  339. {
  340. "variable": "datasetName",
  341. "label": "Dataset Name",
  342. "schema": {
  343. "type": "string",
  344. "show_if": [
  345. [
  346. "type",
  347. "=",
  348. "ixVolume"
  349. ]
  350. ],
  351. "required": true,
  352. "hidden": true,
  353. "immutable": true,
  354. "default": "pgData",
  355. "$ref": [
  356. "normalize/ixVolume"
  357. ]
  358. }
  359. },
  360. {
  361. "variable": "hostPath",
  362. "label": "Host Path",
  363. "schema": {
  364. "type": "hostpath",
  365. "show_if": [
  366. [
  367. "type",
  368. "=",
  369. "hostPath"
  370. ]
  371. ],
  372. "immutable": true,
  373. "required": true
  374. }
  375. }
  376. ]
  377. }
  378. },
  379. {
  380. "variable": "pgBackup",
  381. "label": "Listmonk Postgres Backup Storage",
  382. "description": "The path to store Listmonk Postgres Backup.",
  383. "schema": {
  384. "type": "dict",
  385. "attrs": [
  386. {
  387. "variable": "type",
  388. "label": "Type",
  389. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  390. "schema": {
  391. "type": "string",
  392. "required": true,
  393. "immutable": true,
  394. "default": "ixVolume",
  395. "enum": [
  396. {
  397. "value": "hostPath",
  398. "description": "Host Path (Path that already exists on the system)"
  399. },
  400. {
  401. "value": "ixVolume",
  402. "description": "ixVolume (Dataset created automatically by the system)"
  403. }
  404. ]
  405. }
  406. },
  407. {
  408. "variable": "datasetName",
  409. "label": "Dataset Name",
  410. "schema": {
  411. "type": "string",
  412. "show_if": [
  413. [
  414. "type",
  415. "=",
  416. "ixVolume"
  417. ]
  418. ],
  419. "required": true,
  420. "hidden": true,
  421. "immutable": true,
  422. "default": "pgBackup",
  423. "$ref": [
  424. "normalize/ixVolume"
  425. ]
  426. }
  427. },
  428. {
  429. "variable": "hostPath",
  430. "label": "Host Path",
  431. "schema": {
  432. "type": "hostpath",
  433. "show_if": [
  434. [
  435. "type",
  436. "=",
  437. "hostPath"
  438. ]
  439. ],
  440. "immutable": true,
  441. "required": true
  442. }
  443. }
  444. ]
  445. }
  446. },
  447. {
  448. "variable": "additionalStorages",
  449. "label": "Additional Storage",
  450. "description": "Additional storage for Listmonk.",
  451. "schema": {
  452. "type": "list",
  453. "default": [],
  454. "items": [
  455. {
  456. "variable": "storageEntry",
  457. "label": "Storage Entry",
  458. "schema": {
  459. "type": "dict",
  460. "attrs": [
  461. {
  462. "variable": "type",
  463. "label": "Type",
  464. "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",
  465. "schema": {
  466. "type": "string",
  467. "required": true,
  468. "default": "ixVolume",
  469. "immutable": true,
  470. "enum": [
  471. {
  472. "value": "hostPath",
  473. "description": "Host Path (Path that already exists on the system)"
  474. },
  475. {
  476. "value": "ixVolume",
  477. "description": "ixVolume (Dataset created automatically by the system)"
  478. },
  479. {
  480. "value": "smb-pv-pvc",
  481. "description": "SMB Share (Mounts a persistent volume claim to a SMB share)"
  482. }
  483. ]
  484. }
  485. },
  486. {
  487. "variable": "mountPath",
  488. "label": "Mount Path",
  489. "description": "The path inside the container to mount the storage.",
  490. "schema": {
  491. "type": "path",
  492. "required": true
  493. }
  494. },
  495. {
  496. "variable": "hostPath",
  497. "label": "Host Path",
  498. "description": "The host path to use for storage.",
  499. "schema": {
  500. "type": "hostpath",
  501. "show_if": [
  502. [
  503. "type",
  504. "=",
  505. "hostPath"
  506. ]
  507. ],
  508. "required": true
  509. }
  510. },
  511. {
  512. "variable": "datasetName",
  513. "label": "Dataset Name",
  514. "description": "The name of the dataset to use for storage.",
  515. "schema": {
  516. "type": "string",
  517. "show_if": [
  518. [
  519. "type",
  520. "=",
  521. "ixVolume"
  522. ]
  523. ],
  524. "required": true,
  525. "immutable": true,
  526. "default": "storage_entry",
  527. "$ref": [
  528. "normalize/ixVolume"
  529. ]
  530. }
  531. },
  532. {
  533. "variable": "server",
  534. "label": "Server",
  535. "description": "The server for the SMB share.",
  536. "schema": {
  537. "type": "string",
  538. "show_if": [
  539. [
  540. "type",
  541. "=",
  542. "smb-pv-pvc"
  543. ]
  544. ],
  545. "required": true
  546. }
  547. },
  548. {
  549. "variable": "share",
  550. "label": "Share",
  551. "description": "The share name for the SMB share.",
  552. "schema": {
  553. "type": "string",
  554. "show_if": [
  555. [
  556. "type",
  557. "=",
  558. "smb-pv-pvc"
  559. ]
  560. ],
  561. "required": true
  562. }
  563. },
  564. {
  565. "variable": "domain",
  566. "label": "Domain (Optional)",
  567. "description": "The domain for the SMB share.",
  568. "schema": {
  569. "type": "string",
  570. "show_if": [
  571. [
  572. "type",
  573. "=",
  574. "smb-pv-pvc"
  575. ]
  576. ]
  577. }
  578. },
  579. {
  580. "variable": "username",
  581. "label": "Username",
  582. "description": "The username for the SMB share.",
  583. "schema": {
  584. "type": "string",
  585. "show_if": [
  586. [
  587. "type",
  588. "=",
  589. "smb-pv-pvc"
  590. ]
  591. ],
  592. "required": true
  593. }
  594. },
  595. {
  596. "variable": "password",
  597. "label": "Password",
  598. "description": "The password for the SMB share.",
  599. "schema": {
  600. "type": "string",
  601. "show_if": [
  602. [
  603. "type",
  604. "=",
  605. "smb-pv-pvc"
  606. ]
  607. ],
  608. "required": true,
  609. "private": true
  610. }
  611. },
  612. {
  613. "variable": "size",
  614. "label": "Size (in Gi)",
  615. "description": "The size of the volume quota.",
  616. "schema": {
  617. "type": "int",
  618. "show_if": [
  619. [
  620. "type",
  621. "=",
  622. "smb-pv-pvc"
  623. ]
  624. ],
  625. "required": true,
  626. "min": 1,
  627. "default": 1
  628. }
  629. }
  630. ]
  631. }
  632. }
  633. ]
  634. }
  635. }
  636. ]
  637. }
  638. },
  639. {
  640. "variable": "resources",
  641. "group": "Resources Configuration",
  642. "label": "",
  643. "schema": {
  644. "type": "dict",
  645. "attrs": [
  646. {
  647. "variable": "limits",
  648. "label": "Limits",
  649. "schema": {
  650. "type": "dict",
  651. "attrs": [
  652. {
  653. "variable": "cpu",
  654. "label": "CPU",
  655. "description": "CPU limit for Listmonk.",
  656. "schema": {
  657. "type": "string",
  658. "max_length": 6,
  659. "valid_chars": "^(0\\.[1-9]|[1-9][0-9]*)(\\.[0-9]|m?)$",
  660. "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",
  661. "default": "4000m",
  662. "required": true
  663. }
  664. },
  665. {
  666. "variable": "memory",
  667. "label": "Memory",
  668. "description": "Memory limit for Listmonk.",
  669. "schema": {
  670. "type": "string",
  671. "max_length": 12,
  672. "valid_chars": "^[1-9][0-9]*([EPTGMK]i?|e[0-9]+)?$",
  673. "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",
  674. "default": "8Gi",
  675. "required": true
  676. }
  677. }
  678. ]
  679. }
  680. }
  681. ]
  682. }
  683. }
  684. ]
  685. },
  686. "app_readme": "<h1>Listmonk</h1>\n<p><a href=\"https://listmonk.app/\">Listmonk</a> is a self-hosted newsletter and mailing list manager.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>listmonk</code> directories.\nAfterward, the <code>listmonk</code> container will run as a <strong>non</strong>-root user (default <code>568</code>).\nSame applies to the <code>postgres</code> container. This will run afterwards as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>postgres</code> <strong>backups</strong> directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>listmonk</code> and <code>postgres</code> data directories.</p>\n</blockquote>",
  687. "detailed_readme": "<h1>Listmonk</h1>\n<p><a href=\"https://listmonk.app/\">Listmonk</a> is a self-hosted newsletter and mailing list manager.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>listmonk</code> directories.\nAfterward, the <code>listmonk</code> container will run as a <strong>non</strong>-root user (default <code>568</code>).\nSame applies to the <code>postgres</code> container. This will run afterwards as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>postgres</code> <strong>backups</strong> directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>listmonk</code> and <code>postgres</code> data directories.</p>\n</blockquote>",
  688. "changelog": null
  689. }
  690. }