app_versions.json 51 KB

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