app_versions.json 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465
  1. {
  2. "1.1.3": {
  3. "healthy": true,
  4. "supported": true,
  5. "healthy_error": null,
  6. "location": "/__w/charts/charts/community/cloudflared/1.1.3",
  7. "last_update": "2023-11-14 10:11:57",
  8. "required_features": [
  9. "normalize/ixVolume"
  10. ],
  11. "human_version": "2023.10.0_1.1.3",
  12. "version": "1.1.3",
  13. "chart_metadata": {
  14. "name": "cloudflared",
  15. "description": "Cloudflared is a client for Cloudflare Tunnel, a daemon that exposes private services through the Cloudflare edge.",
  16. "annotations": {
  17. "title": "Cloudflared"
  18. },
  19. "type": "application",
  20. "version": "1.1.3",
  21. "apiVersion": "v2",
  22. "appVersion": "2023.10.0",
  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://github.com/cloudflare/cloudflared",
  39. "icon": "https://media.sys.truenas.net/apps/cloudflared/icons/icon.png",
  40. "sources": [
  41. "https://github.com/cloudflare/cloudflared",
  42. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/cloudflared",
  43. "https://hub.docker.com/r/cloudflare/cloudflared"
  44. ],
  45. "keywords": [
  46. "network",
  47. "cloudflare",
  48. "tunnel"
  49. ]
  50. },
  51. "app_metadata": {
  52. "runAsContext": [
  53. {
  54. "userName": "cloudflared",
  55. "groupName": "cloudflared",
  56. "gid": 568,
  57. "uid": 568,
  58. "description": "Cloudflared can run as any non-root user."
  59. }
  60. ],
  61. "capabilities": [],
  62. "hostMounts": []
  63. },
  64. "schema": {
  65. "groups": [
  66. {
  67. "name": "Cloudflared Configuration",
  68. "description": "Configure Cloudflared"
  69. },
  70. {
  71. "name": "User and Group Configuration",
  72. "description": "Configure User and Group for Cloudflared"
  73. },
  74. {
  75. "name": "Network Configuration",
  76. "description": "Configure Network for Cloudflared"
  77. },
  78. {
  79. "name": "Storage Configuration",
  80. "description": "Configure Storage for Cloudflared"
  81. },
  82. {
  83. "name": "Resources Configuration",
  84. "description": "Configure Resources for Cloudflared"
  85. }
  86. ],
  87. "questions": [
  88. {
  89. "variable": "cloudflaredConfig",
  90. "label": "",
  91. "group": "Cloudflared Configuration",
  92. "schema": {
  93. "type": "dict",
  94. "attrs": [
  95. {
  96. "variable": "tunnelToken",
  97. "label": "Tunnel Token",
  98. "description": "The tunnel token to use for Cloudflared.",
  99. "schema": {
  100. "type": "string",
  101. "default": "",
  102. "required": true,
  103. "private": true
  104. }
  105. },
  106. {
  107. "variable": "additionalArgs",
  108. "label": "Additional Arguments",
  109. "description": "Configure additional arguments for Cloudflared.</br>\nThose will be placed after the \"tunnel --no-autoupdate\" and before \"run\". </br>\nExample: </br>\ntunnel --no-autoupdate <my-arg> run </br>\nOne argument per line.\n",
  110. "schema": {
  111. "type": "list",
  112. "default": [],
  113. "items": [
  114. {
  115. "variable": "arg",
  116. "label": "Argument",
  117. "schema": {
  118. "type": "string",
  119. "required": true
  120. }
  121. }
  122. ]
  123. }
  124. },
  125. {
  126. "variable": "additionalEnvs",
  127. "label": "Additional Environment Variables",
  128. "description": "Configure additional environment variables for Cloudflared.",
  129. "schema": {
  130. "type": "list",
  131. "default": [],
  132. "items": [
  133. {
  134. "variable": "env",
  135. "label": "Environment Variable",
  136. "schema": {
  137. "type": "dict",
  138. "attrs": [
  139. {
  140. "variable": "name",
  141. "label": "Name",
  142. "schema": {
  143. "type": "string",
  144. "required": true
  145. }
  146. },
  147. {
  148. "variable": "value",
  149. "label": "Value",
  150. "schema": {
  151. "type": "string",
  152. "required": true
  153. }
  154. }
  155. ]
  156. }
  157. }
  158. ]
  159. }
  160. }
  161. ]
  162. }
  163. },
  164. {
  165. "variable": "cloudflaredRunAs",
  166. "label": "",
  167. "group": "User and Group Configuration",
  168. "schema": {
  169. "type": "dict",
  170. "attrs": [
  171. {
  172. "variable": "user",
  173. "label": "User ID",
  174. "description": "The user id that Cloudflared will run as.",
  175. "schema": {
  176. "type": "int",
  177. "min": 2,
  178. "default": 568,
  179. "required": true
  180. }
  181. },
  182. {
  183. "variable": "group",
  184. "label": "Group ID",
  185. "description": "The group id that Cloudflared will run as.",
  186. "schema": {
  187. "type": "int",
  188. "min": 2,
  189. "default": 568,
  190. "required": true
  191. }
  192. }
  193. ]
  194. }
  195. },
  196. {
  197. "variable": "cloudflaredNetwork",
  198. "label": "",
  199. "group": "Network Configuration",
  200. "schema": {
  201. "type": "dict",
  202. "attrs": [
  203. {
  204. "variable": "hostNetwork",
  205. "label": "Host Network",
  206. "description": "Bind to the host network. It's recommended to keep this disabled.</br>\n",
  207. "schema": {
  208. "type": "boolean",
  209. "default": false
  210. }
  211. }
  212. ]
  213. }
  214. },
  215. {
  216. "variable": "cloudflaredStorage",
  217. "label": "",
  218. "group": "Storage Configuration",
  219. "schema": {
  220. "type": "dict",
  221. "attrs": [
  222. {
  223. "variable": "additionalStorages",
  224. "label": "Additional Storage",
  225. "description": "Additional storage for Cloudflared.",
  226. "schema": {
  227. "type": "list",
  228. "default": [],
  229. "items": [
  230. {
  231. "variable": "storageEntry",
  232. "label": "Storage Entry",
  233. "schema": {
  234. "type": "dict",
  235. "attrs": [
  236. {
  237. "variable": "type",
  238. "label": "Type",
  239. "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",
  240. "schema": {
  241. "type": "string",
  242. "required": true,
  243. "default": "ixVolume",
  244. "immutable": true,
  245. "enum": [
  246. {
  247. "value": "hostPath",
  248. "description": "Host Path (Path that already exists on the system)"
  249. },
  250. {
  251. "value": "ixVolume",
  252. "description": "ixVolume (Dataset created automatically by the system)"
  253. },
  254. {
  255. "value": "smb-pv-pvc",
  256. "description": "SMB Share (Mounts a persistent volume claim to a SMB share)"
  257. }
  258. ]
  259. }
  260. },
  261. {
  262. "variable": "mountPath",
  263. "label": "Mount Path",
  264. "description": "The path inside the container to mount the storage.",
  265. "schema": {
  266. "type": "path",
  267. "required": true
  268. }
  269. },
  270. {
  271. "variable": "hostPath",
  272. "label": "Host Path",
  273. "description": "The host path to use for storage.",
  274. "schema": {
  275. "type": "hostpath",
  276. "show_if": [
  277. [
  278. "type",
  279. "=",
  280. "hostPath"
  281. ]
  282. ],
  283. "required": true
  284. }
  285. },
  286. {
  287. "variable": "datasetName",
  288. "label": "Dataset Name",
  289. "description": "The name of the dataset to use for storage.",
  290. "schema": {
  291. "type": "string",
  292. "show_if": [
  293. [
  294. "type",
  295. "=",
  296. "ixVolume"
  297. ]
  298. ],
  299. "required": true,
  300. "immutable": true,
  301. "default": "storage_entry",
  302. "$ref": [
  303. "normalize/ixVolume"
  304. ]
  305. }
  306. },
  307. {
  308. "variable": "server",
  309. "label": "Server",
  310. "description": "The server for the SMB share.",
  311. "schema": {
  312. "type": "string",
  313. "show_if": [
  314. [
  315. "type",
  316. "=",
  317. "smb-pv-pvc"
  318. ]
  319. ],
  320. "required": true
  321. }
  322. },
  323. {
  324. "variable": "share",
  325. "label": "Share",
  326. "description": "The share name for the SMB share.",
  327. "schema": {
  328. "type": "string",
  329. "show_if": [
  330. [
  331. "type",
  332. "=",
  333. "smb-pv-pvc"
  334. ]
  335. ],
  336. "required": true
  337. }
  338. },
  339. {
  340. "variable": "domain",
  341. "label": "Domain (Optional)",
  342. "description": "The domain for the SMB share.",
  343. "schema": {
  344. "type": "string",
  345. "show_if": [
  346. [
  347. "type",
  348. "=",
  349. "smb-pv-pvc"
  350. ]
  351. ]
  352. }
  353. },
  354. {
  355. "variable": "username",
  356. "label": "Username",
  357. "description": "The username for the SMB share.",
  358. "schema": {
  359. "type": "string",
  360. "show_if": [
  361. [
  362. "type",
  363. "=",
  364. "smb-pv-pvc"
  365. ]
  366. ],
  367. "required": true
  368. }
  369. },
  370. {
  371. "variable": "password",
  372. "label": "Password",
  373. "description": "The password for the SMB share.",
  374. "schema": {
  375. "type": "string",
  376. "show_if": [
  377. [
  378. "type",
  379. "=",
  380. "smb-pv-pvc"
  381. ]
  382. ],
  383. "required": true,
  384. "private": true
  385. }
  386. },
  387. {
  388. "variable": "size",
  389. "label": "Size (in Gi)",
  390. "description": "The size of the volume quota.",
  391. "schema": {
  392. "type": "int",
  393. "show_if": [
  394. [
  395. "type",
  396. "=",
  397. "smb-pv-pvc"
  398. ]
  399. ],
  400. "required": true,
  401. "min": 1,
  402. "default": 1
  403. }
  404. }
  405. ]
  406. }
  407. }
  408. ]
  409. }
  410. }
  411. ]
  412. }
  413. },
  414. {
  415. "variable": "resources",
  416. "group": "Resources Configuration",
  417. "label": "",
  418. "schema": {
  419. "type": "dict",
  420. "attrs": [
  421. {
  422. "variable": "limits",
  423. "label": "Limits",
  424. "schema": {
  425. "type": "dict",
  426. "attrs": [
  427. {
  428. "variable": "cpu",
  429. "label": "CPU",
  430. "description": "CPU limit for Cloudflared.",
  431. "schema": {
  432. "type": "string",
  433. "max_length": 6,
  434. "valid_chars": "^(0\\.[1-9]|[1-9][0-9]*)(\\.[0-9]|m?)$",
  435. "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",
  436. "default": "4000m",
  437. "required": true
  438. }
  439. },
  440. {
  441. "variable": "memory",
  442. "label": "Memory",
  443. "description": "Memory limit for Cloudflared.",
  444. "schema": {
  445. "type": "string",
  446. "max_length": 12,
  447. "valid_chars": "^[1-9][0-9]*([EPTGMK]i?|e[0-9]+)?$",
  448. "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",
  449. "default": "8Gi",
  450. "required": true
  451. }
  452. }
  453. ]
  454. }
  455. }
  456. ]
  457. }
  458. }
  459. ]
  460. },
  461. "app_readme": "<h1>Cloudflared</h1>\n<p><a href=\"https://github.com/cloudflare/cloudflared\">Cloudflared</a> is a client for Cloudflare Tunnel, a daemon that exposes private services through the Cloudflare edge.</p>",
  462. "detailed_readme": "<h1>Cloudflared</h1>\n<p><a href=\"https://github.com/cloudflare/cloudflared\">Cloudflared</a> is a client for Cloudflare Tunnel, a daemon that exposes private services through the Cloudflare edge.</p>",
  463. "changelog": null
  464. }
  465. }