app_versions.json 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444
  1. {
  2. "1.0.20": {
  3. "healthy": true,
  4. "supported": true,
  5. "healthy_error": null,
  6. "location": "/__w/charts/charts/community/mineos/1.0.20",
  7. "last_update": "2025-03-05 14:27:33",
  8. "required_features": [
  9. "normalize/ixVolume",
  10. "definitions/certificate"
  11. ],
  12. "human_version": "latest_1.0.20",
  13. "version": "1.0.20",
  14. "chart_metadata": {
  15. "name": "mineos",
  16. "description": "MineOS is a server front-end to ease managing Minecraft administrative tasks.",
  17. "annotations": {
  18. "title": "MineOS"
  19. },
  20. "type": "application",
  21. "version": "1.0.20",
  22. "apiVersion": "v2",
  23. "appVersion": "latest",
  24. "kubeVersion": ">=1.16.0-0",
  25. "maintainers": [
  26. {
  27. "name": "truenas",
  28. "url": "https://www.truenas.com/",
  29. "email": "dev@ixsystems.com"
  30. }
  31. ],
  32. "dependencies": [
  33. {
  34. "name": "common",
  35. "repository": "file://../../../common",
  36. "version": "1.2.9"
  37. }
  38. ],
  39. "home": "https://github.com/hexparrot/mineos-node",
  40. "icon": "https://media.sys.truenas.net/apps/mineos/icons/icon.png",
  41. "sources": [
  42. "https://hub.docker.com/r/hexparrot/mineos/",
  43. "https://github.com/truenas/charts/tree/master/community/mineos",
  44. "https://github.com/hexparrot/mineos-node"
  45. ],
  46. "keywords": [
  47. "minecraft"
  48. ]
  49. },
  50. "app_metadata": {
  51. "runAsContext": [
  52. {
  53. "userName": "root",
  54. "groupName": "root",
  55. "gid": 0,
  56. "uid": 0,
  57. "description": "MineOS runs as root user"
  58. }
  59. ],
  60. "capabilities": [
  61. {
  62. "name": "CHOWN",
  63. "description": "MineOS requires this ability to change ownership of files."
  64. },
  65. {
  66. "name": "DAC_OVERRIDE",
  67. "description": "MineOS requires this ability to bypass file permissions."
  68. },
  69. {
  70. "name": "FOWNER",
  71. "description": "MineOS requires this ability to bypass file permissions for it's sub-processes."
  72. },
  73. {
  74. "name": "SETGID",
  75. "description": "MineOS requires this ability to switch group for sub-processes."
  76. },
  77. {
  78. "name": "SETUID",
  79. "description": "MineOS requires this ability to switch user for sub-processes."
  80. }
  81. ],
  82. "hostMounts": []
  83. },
  84. "schema": {
  85. "groups": [
  86. {
  87. "name": "MineOS Configuration",
  88. "description": "Configure MineOS"
  89. },
  90. {
  91. "name": "User and Group Configuration",
  92. "description": "Configure User and Group for MineOS"
  93. },
  94. {
  95. "name": "Network Configuration",
  96. "description": "Configure Network for MineOS"
  97. },
  98. {
  99. "name": "Storage Configuration",
  100. "description": "Configure Storage for MineOS"
  101. },
  102. {
  103. "name": "Resources Configuration",
  104. "description": "Configure Resources for MineOS"
  105. }
  106. ],
  107. "portals": {
  108. "web_portal": {
  109. "protocols": [
  110. "$kubernetes-resource_configmap_portal_protocol"
  111. ],
  112. "host": [
  113. "$kubernetes-resource_configmap_portal_host"
  114. ],
  115. "ports": [
  116. "$kubernetes-resource_configmap_portal_port"
  117. ],
  118. "path": "$kubernetes-resource_configmap_portal_path"
  119. }
  120. },
  121. "questions": [
  122. {
  123. "variable": "mineosConfig",
  124. "label": "",
  125. "group": "MineOS Configuration",
  126. "schema": {
  127. "type": "dict",
  128. "attrs": [
  129. {
  130. "variable": "username",
  131. "label": "Username",
  132. "description": "The username for MineOS WebUI.",
  133. "schema": {
  134. "type": "string",
  135. "empty": false,
  136. "required": true,
  137. "valid_chars": "^[a-zA-Z0-9]+$",
  138. "valid_chars_error": "Username can only contain alphanumeric characters [0-9, a-z, A-Z].\n"
  139. }
  140. },
  141. {
  142. "variable": "password",
  143. "label": "Password",
  144. "description": "The password for MineOS WebUI.",
  145. "schema": {
  146. "type": "string",
  147. "empty": false,
  148. "required": true,
  149. "private": true
  150. }
  151. },
  152. {
  153. "variable": "terminationGracePeriodSeconds",
  154. "label": "Stop Grace Period",
  155. "description": "The time in seconds given to MineOS to stop before it is killed.\nKilling a MineOS server without a grace period can cause data corruption.\n",
  156. "schema": {
  157. "type": "int",
  158. "empty": false,
  159. "min": 30,
  160. "required": true,
  161. "default": 600
  162. }
  163. },
  164. {
  165. "variable": "additionalEnvs",
  166. "label": "Additional Environment Variables",
  167. "description": "Configure additional environment variables for MineOS.",
  168. "schema": {
  169. "type": "list",
  170. "default": [],
  171. "items": [
  172. {
  173. "variable": "env",
  174. "label": "Environment Variable",
  175. "schema": {
  176. "type": "dict",
  177. "attrs": [
  178. {
  179. "variable": "name",
  180. "label": "Name",
  181. "schema": {
  182. "type": "string",
  183. "required": true
  184. }
  185. },
  186. {
  187. "variable": "value",
  188. "label": "Value",
  189. "schema": {
  190. "type": "string",
  191. "required": true
  192. }
  193. }
  194. ]
  195. }
  196. }
  197. ]
  198. }
  199. }
  200. ]
  201. }
  202. },
  203. {
  204. "variable": "mineosID",
  205. "label": "",
  206. "group": "User and Group Configuration",
  207. "schema": {
  208. "type": "dict",
  209. "attrs": [
  210. {
  211. "variable": "user",
  212. "label": "User ID",
  213. "description": "The user id that MineOS files will be owned by.",
  214. "schema": {
  215. "type": "int",
  216. "min": 568,
  217. "default": 568,
  218. "required": true
  219. }
  220. },
  221. {
  222. "variable": "group",
  223. "label": "Group ID",
  224. "description": "The group id that MineOS files will be owned by.",
  225. "schema": {
  226. "type": "int",
  227. "min": 568,
  228. "default": 568,
  229. "required": true
  230. }
  231. }
  232. ]
  233. }
  234. },
  235. {
  236. "variable": "mineosNetwork",
  237. "label": "",
  238. "group": "Network Configuration",
  239. "schema": {
  240. "type": "dict",
  241. "attrs": [
  242. {
  243. "variable": "webPort",
  244. "label": "WebUI Port",
  245. "description": "The port for MineOS WebUI",
  246. "schema": {
  247. "type": "int",
  248. "default": 30015,
  249. "min": 9000,
  250. "max": 65535,
  251. "required": true
  252. }
  253. },
  254. {
  255. "variable": "mineosPortRangeStart",
  256. "label": "Port Range Start",
  257. "description": "The start of the port range for MineOS servers.</br>\nIt will open both TCP and UDP ports.\n",
  258. "schema": {
  259. "type": "int",
  260. "default": 30016,
  261. "min": 9000,
  262. "max": 65535,
  263. "required": true
  264. }
  265. },
  266. {
  267. "variable": "mineosPortRangeEnd",
  268. "label": "Port Range End",
  269. "description": "The end of the port range for MineOS servers.</br>\nIt will open both TCP and UDP ports.</br>\nKeep in mind that the port range can be at max 10 ports.\n",
  270. "schema": {
  271. "type": "int",
  272. "default": 30017,
  273. "min": 9000,
  274. "max": 65535,
  275. "required": true
  276. }
  277. },
  278. {
  279. "variable": "useHTTPS",
  280. "label": "Use HTTPS",
  281. "description": "Enable HTTPS for MineOS WebUI.</br>\nIf enabled, and you don't specify a certificate, </br>\na self-signed certificate will be generated.\n",
  282. "schema": {
  283. "type": "boolean",
  284. "default": false
  285. }
  286. },
  287. {
  288. "variable": "certificateID",
  289. "label": "Certificate",
  290. "description": "The certificate to use for MineOS WebUI",
  291. "schema": {
  292. "show_if": [
  293. [
  294. "useHTTPS",
  295. "=",
  296. true
  297. ]
  298. ],
  299. "type": "int",
  300. "null": true,
  301. "$ref": [
  302. "definitions/certificate"
  303. ],
  304. "enum": [
  305. {
  306. "value": null,
  307. "description": "No Certificate"
  308. }
  309. ],
  310. "default": null
  311. }
  312. }
  313. ]
  314. }
  315. },
  316. {
  317. "variable": "mineosStorage",
  318. "label": "",
  319. "group": "Storage Configuration",
  320. "schema": {
  321. "type": "dict",
  322. "attrs": [
  323. {
  324. "variable": "data",
  325. "label": "MineOS Data Storage",
  326. "description": "The path to store MineOS Data.",
  327. "schema": {
  328. "type": "dict",
  329. "attrs": [
  330. {
  331. "variable": "type",
  332. "label": "Type",
  333. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  334. "schema": {
  335. "type": "string",
  336. "required": true,
  337. "immutable": true,
  338. "default": "ixVolume",
  339. "enum": [
  340. {
  341. "value": "hostPath",
  342. "description": "Host Path (Path that already exists on the system)"
  343. },
  344. {
  345. "value": "ixVolume",
  346. "description": "ixVolume (Dataset created automatically by the system)"
  347. }
  348. ]
  349. }
  350. },
  351. {
  352. "variable": "datasetName",
  353. "label": "Dataset Name",
  354. "schema": {
  355. "type": "string",
  356. "show_if": [
  357. [
  358. "type",
  359. "=",
  360. "ixVolume"
  361. ]
  362. ],
  363. "required": true,
  364. "hidden": true,
  365. "immutable": true,
  366. "default": "data",
  367. "$ref": [
  368. "normalize/ixVolume"
  369. ]
  370. }
  371. },
  372. {
  373. "variable": "hostPath",
  374. "label": "Host Path",
  375. "schema": {
  376. "type": "hostpath",
  377. "show_if": [
  378. [
  379. "type",
  380. "=",
  381. "hostPath"
  382. ]
  383. ],
  384. "required": true
  385. }
  386. }
  387. ]
  388. }
  389. }
  390. ]
  391. }
  392. },
  393. {
  394. "variable": "resources",
  395. "label": "Resources Configuration",
  396. "group": "Resources Configuration",
  397. "schema": {
  398. "type": "dict",
  399. "attrs": [
  400. {
  401. "variable": "limits",
  402. "label": "Limits",
  403. "schema": {
  404. "type": "dict",
  405. "attrs": [
  406. {
  407. "variable": "cpu",
  408. "label": "CPU",
  409. "description": "CPU limit for MineOS.",
  410. "schema": {
  411. "type": "string",
  412. "max_length": 6,
  413. "valid_chars": "^(0\\.[1-9]|[1-9][0-9]*)(\\.[0-9]|m?)$",
  414. "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",
  415. "default": "4000m",
  416. "required": true
  417. }
  418. },
  419. {
  420. "variable": "memory",
  421. "label": "Memory",
  422. "description": "Memory limit for MineOS.",
  423. "schema": {
  424. "type": "string",
  425. "max_length": 12,
  426. "valid_chars": "^[1-9][0-9]*([EPTGMK]i?|e[0-9]+)?$",
  427. "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",
  428. "default": "8Gi",
  429. "required": true
  430. }
  431. }
  432. ]
  433. }
  434. }
  435. ]
  436. }
  437. }
  438. ]
  439. },
  440. "app_readme": "<h1>MineOS</h1>\n<p><a href=\"https://github.com/hexparrot/mineos-node\">MineOS</a> is a server front-end to ease managing Minecraft administrative tasks.</p>",
  441. "detailed_readme": "<h1>MineOS</h1>\n<p><a href=\"https://github.com/hexparrot/mineos-node\">MineOS</a> is a server front-end to ease managing Minecraft administrative tasks.</p>",
  442. "changelog": null
  443. }
  444. }