app_versions.json 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. {
  2. "1.0.21": {
  3. "healthy": true,
  4. "supported": true,
  5. "healthy_error": null,
  6. "location": "/__w/charts/charts/community/zerotier/1.0.21",
  7. "last_update": "2024-06-19 12:44:16",
  8. "required_features": [],
  9. "human_version": "1.14.0_1.0.21",
  10. "version": "1.0.21",
  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.21",
  19. "apiVersion": "v2",
  20. "appVersion": "1.14.0",
  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.9"
  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. "required": true,
  141. "min": 1,
  142. "default": [],
  143. "items": [
  144. {
  145. "variable": "networkEntry",
  146. "label": "Network",
  147. "schema": {
  148. "type": "string",
  149. "required": true
  150. }
  151. }
  152. ]
  153. }
  154. },
  155. {
  156. "variable": "authToken",
  157. "label": "Auth Token (API Key)",
  158. "description": "(Optional) The auth token for Zerotier.</br>\nSame as authtoken.secret.\n",
  159. "schema": {
  160. "type": "string",
  161. "default": "",
  162. "private": true
  163. }
  164. },
  165. {
  166. "variable": "identitySecret",
  167. "label": "Identity Secret",
  168. "description": "(Optional) The identity secret for Zerotier.</br>\nSame as identity.secret.\n",
  169. "schema": {
  170. "type": "string",
  171. "default": "",
  172. "private": true
  173. }
  174. },
  175. {
  176. "variable": "identityPublic",
  177. "label": "Identity Public",
  178. "description": "(Optional) The identity public for Zerotier.</br>\nSame as identity.public.\n",
  179. "schema": {
  180. "type": "string",
  181. "default": "",
  182. "private": true
  183. }
  184. },
  185. {
  186. "variable": "additionalEnvs",
  187. "label": "Additional Environment Variables",
  188. "description": "Configure additional environment variables for Zerotier.",
  189. "schema": {
  190. "type": "list",
  191. "default": [],
  192. "items": [
  193. {
  194. "variable": "env",
  195. "label": "Environment Variable",
  196. "schema": {
  197. "type": "dict",
  198. "attrs": [
  199. {
  200. "variable": "name",
  201. "label": "Name",
  202. "schema": {
  203. "type": "string",
  204. "required": true
  205. }
  206. },
  207. {
  208. "variable": "value",
  209. "label": "Value",
  210. "schema": {
  211. "type": "string",
  212. "required": true
  213. }
  214. }
  215. ]
  216. }
  217. }
  218. ]
  219. }
  220. }
  221. ]
  222. }
  223. },
  224. {
  225. "variable": "zerotierNetwork",
  226. "label": "",
  227. "group": "Network Configuration",
  228. "schema": {
  229. "type": "dict",
  230. "attrs": [
  231. {
  232. "variable": "hostNetwork",
  233. "label": "Host Network",
  234. "description": "Bind to the host network. It's recommended to keep this disabled.</br>\n",
  235. "schema": {
  236. "type": "boolean",
  237. "default": false
  238. }
  239. }
  240. ]
  241. }
  242. },
  243. {
  244. "variable": "resources",
  245. "group": "Resources Configuration",
  246. "label": "",
  247. "schema": {
  248. "type": "dict",
  249. "attrs": [
  250. {
  251. "variable": "limits",
  252. "label": "Limits",
  253. "schema": {
  254. "type": "dict",
  255. "attrs": [
  256. {
  257. "variable": "cpu",
  258. "label": "CPU",
  259. "description": "CPU limit for Zerotier.",
  260. "schema": {
  261. "type": "string",
  262. "max_length": 6,
  263. "valid_chars": "^(0\\.[1-9]|[1-9][0-9]*)(\\.[0-9]|m?)$",
  264. "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",
  265. "default": "4000m",
  266. "required": true
  267. }
  268. },
  269. {
  270. "variable": "memory",
  271. "label": "Memory",
  272. "description": "Memory limit for Zerotier.",
  273. "schema": {
  274. "type": "string",
  275. "max_length": 12,
  276. "valid_chars": "^[1-9][0-9]*([EPTGMK]i?|e[0-9]+)?$",
  277. "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",
  278. "default": "8Gi",
  279. "required": true
  280. }
  281. }
  282. ]
  283. }
  284. }
  285. ]
  286. }
  287. }
  288. ]
  289. },
  290. "app_readme": "<h1>Zerotier</h1>\n<p><a href=\"https://www.zerotier.com\">Zerotier</a> Securely connect any device, anywhere.</p>",
  291. "detailed_readme": "<h1>Zerotier</h1>\n<p><a href=\"https://www.zerotier.com\">Zerotier</a> Securely connect any device, anywhere.</p>",
  292. "changelog": null
  293. }
  294. }