app_versions.json 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. {
  2. "1.0.12": {
  3. "healthy": true,
  4. "supported": true,
  5. "healthy_error": null,
  6. "location": "/__w/charts/charts/community/zerotier/1.0.12",
  7. "last_update": "2023-11-14 10:11:57",
  8. "required_features": [],
  9. "human_version": "1.12.2_1.0.12",
  10. "version": "1.0.12",
  11. "chart_metadata": {
  12. "name": "zerotier",
  13. "description": "Securely connect any device, anywhere.",
  14. "annotations": {
  15. "title": "Zerotier"
  16. },
  17. "type": "application",
  18. "version": "1.0.12",
  19. "apiVersion": "v2",
  20. "appVersion": "1.12.2",
  21. "kubeVersion": ">=1.16.0-0",
  22. "maintainers": [
  23. {
  24. "name": "truenas",
  25. "url": "https://www.truenas.com/",
  26. "email": "dev@ixsystems.com"
  27. }
  28. ],
  29. "dependencies": [
  30. {
  31. "name": "common",
  32. "repository": "file://../../../common",
  33. "version": "1.2.2"
  34. }
  35. ],
  36. "home": "https://www.zerotier.com",
  37. "icon": "https://media.sys.truenas.net/apps/zerotier/icons/icon.png",
  38. "sources": [
  39. "https://www.zerotier.com",
  40. "https://github.com/truenas/charts/tree/master/community/zerotier",
  41. "https://hub.docker.com/r/zerotier/zerotier"
  42. ],
  43. "keywords": [
  44. "vpn",
  45. "zerotier"
  46. ]
  47. },
  48. "app_metadata": {
  49. "runAsContext": [
  50. {
  51. "userName": "root",
  52. "groupName": "root",
  53. "gid": 0,
  54. "uid": 0,
  55. "description": "Zerotier requires root privileges to start the Zerotier process"
  56. }
  57. ],
  58. "capabilities": [
  59. {
  60. "name": "NET_ADMIN",
  61. "description": "Zerotier requires NET_ADMIN to configure the VPN interface, modify routes, etc."
  62. },
  63. {
  64. "name": "NET_RAW",
  65. "description": "Zerotier requires NET_RAW to use raw sockets and proxying"
  66. },
  67. {
  68. "name": "AUDIT_WRITE",
  69. "description": "Zerotier is able to write to audit log."
  70. },
  71. {
  72. "name": "CHOWN",
  73. "description": "Zerotier is able to chown files."
  74. },
  75. {
  76. "name": "DAC_OVERRIDE",
  77. "description": "Zerotier is able to bypass permission checks."
  78. },
  79. {
  80. "name": "FOWNER",
  81. "description": "Zerotier is able bypass permission checks for it's sub-processes."
  82. },
  83. {
  84. "name": "NET_BIND_SERVICE",
  85. "description": "Zerotier is able to bind to privileged ports."
  86. },
  87. {
  88. "name": "SETGID",
  89. "description": "Zerotier is able to set group ID for it's sub-processes."
  90. },
  91. {
  92. "name": "SETUID",
  93. "description": "Zerotier is able to set user ID for it's sub-processes."
  94. },
  95. {
  96. "name": "SETPCAP",
  97. "description": "Zerotier is able to set process capabilities."
  98. },
  99. {
  100. "name": "SYS_ADMIN",
  101. "description": "Zerotier is able to perform various system administration operations."
  102. }
  103. ],
  104. "hostMounts": [
  105. {
  106. "hostPath": "/dev/tun",
  107. "description": "Required to access the TUN device"
  108. }
  109. ]
  110. },
  111. "schema": {
  112. "groups": [
  113. {
  114. "name": "Zerotier Configuration",
  115. "description": "Configure Zerotier"
  116. },
  117. {
  118. "name": "Network Configuration",
  119. "description": "Configure Network for Zerotier"
  120. },
  121. {
  122. "name": "Resources Configuration",
  123. "description": "Configure Resources for Zerotier"
  124. }
  125. ],
  126. "questions": [
  127. {
  128. "variable": "zerotierConfig",
  129. "label": "",
  130. "group": "Zerotier Configuration",
  131. "schema": {
  132. "type": "dict",
  133. "attrs": [
  134. {
  135. "variable": "networks",
  136. "label": "Networks",
  137. "description": "The network(s) to join",
  138. "schema": {
  139. "type": "list",
  140. "empty": false,
  141. "required": true,
  142. "min": 1,
  143. "default": [],
  144. "items": [
  145. {
  146. "variable": "networkEntry",
  147. "label": "Network",
  148. "schema": {
  149. "type": "string",
  150. "required": true
  151. }
  152. }
  153. ]
  154. }
  155. },
  156. {
  157. "variable": "authToken",
  158. "label": "Auth Token (API Key)",
  159. "description": "(Optional) The auth token for Zerotier.</br>\nSame as authtoken.secret.\n",
  160. "schema": {
  161. "type": "string",
  162. "default": "",
  163. "private": true
  164. }
  165. },
  166. {
  167. "variable": "identitySecret",
  168. "label": "Identity Secret",
  169. "description": "(Optional) The identity secret for Zerotier.</br>\nSame as identity.secret.\n",
  170. "schema": {
  171. "type": "string",
  172. "default": "",
  173. "private": true
  174. }
  175. },
  176. {
  177. "variable": "identityPublic",
  178. "label": "Identity Public",
  179. "description": "(Optional) The identity public for Zerotier.</br>\nSame as identity.public.\n",
  180. "schema": {
  181. "type": "string",
  182. "default": "",
  183. "private": true
  184. }
  185. },
  186. {
  187. "variable": "additionalEnvs",
  188. "label": "Additional Environment Variables",
  189. "description": "Configure additional environment variables for Zerotier.",
  190. "schema": {
  191. "type": "list",
  192. "default": [],
  193. "items": [
  194. {
  195. "variable": "env",
  196. "label": "Environment Variable",
  197. "schema": {
  198. "type": "dict",
  199. "attrs": [
  200. {
  201. "variable": "name",
  202. "label": "Name",
  203. "schema": {
  204. "type": "string",
  205. "required": true
  206. }
  207. },
  208. {
  209. "variable": "value",
  210. "label": "Value",
  211. "schema": {
  212. "type": "string",
  213. "required": true
  214. }
  215. }
  216. ]
  217. }
  218. }
  219. ]
  220. }
  221. }
  222. ]
  223. }
  224. },
  225. {
  226. "variable": "zerotierNetwork",
  227. "label": "",
  228. "group": "Network Configuration",
  229. "schema": {
  230. "type": "dict",
  231. "attrs": [
  232. {
  233. "variable": "hostNetwork",
  234. "label": "Host Network",
  235. "description": "Bind to the host network. It's recommended to keep this disabled.</br>\n",
  236. "schema": {
  237. "type": "boolean",
  238. "default": false
  239. }
  240. }
  241. ]
  242. }
  243. },
  244. {
  245. "variable": "resources",
  246. "group": "Resources Configuration",
  247. "label": "",
  248. "schema": {
  249. "type": "dict",
  250. "attrs": [
  251. {
  252. "variable": "limits",
  253. "label": "Limits",
  254. "schema": {
  255. "type": "dict",
  256. "attrs": [
  257. {
  258. "variable": "cpu",
  259. "label": "CPU",
  260. "description": "CPU limit for Zerotier.",
  261. "schema": {
  262. "type": "string",
  263. "max_length": 6,
  264. "valid_chars": "^(0\\.[1-9]|[1-9][0-9]*)(\\.[0-9]|m?)$",
  265. "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",
  266. "default": "4000m",
  267. "required": true
  268. }
  269. },
  270. {
  271. "variable": "memory",
  272. "label": "Memory",
  273. "description": "Memory limit for Zerotier.",
  274. "schema": {
  275. "type": "string",
  276. "max_length": 12,
  277. "valid_chars": "^[1-9][0-9]*([EPTGMK]i?|e[0-9]+)?$",
  278. "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",
  279. "default": "8Gi",
  280. "required": true
  281. }
  282. }
  283. ]
  284. }
  285. }
  286. ]
  287. }
  288. }
  289. ]
  290. },
  291. "app_readme": "<h1>Zerotier</h1>\n<p><a href=\"https://www.zerotier.com\">Zerotier</a> Securely connect any device, anywhere.</p>",
  292. "detailed_readme": "<h1>Zerotier</h1>\n<p><a href=\"https://www.zerotier.com\">Zerotier</a> Securely connect any device, anywhere.</p>",
  293. "changelog": null
  294. }
  295. }