app_versions.json 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  1. {
  2. "1.0.31": {
  3. "healthy": true,
  4. "supported": true,
  5. "healthy_error": null,
  6. "location": "/__w/charts/charts/community/webdav/1.0.31",
  7. "last_update": "2025-03-06 08:26:26",
  8. "required_features": [
  9. "definitions/certificate"
  10. ],
  11. "human_version": "2.4.63_1.0.31",
  12. "version": "1.0.31",
  13. "chart_metadata": {
  14. "name": "webdav",
  15. "description": "WebDAV is a set of extensions to the HTTP protocol which allows users to collaboratively edit and manage files on remote web servers.",
  16. "annotations": {
  17. "title": "WebDAV"
  18. },
  19. "type": "application",
  20. "version": "1.0.31",
  21. "apiVersion": "v2",
  22. "appVersion": "2.4.63",
  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.9"
  36. }
  37. ],
  38. "home": "http://www.webdav.org/",
  39. "icon": "https://media.sys.truenas.net/apps/webdav/icons/icon.png",
  40. "sources": [
  41. "http://www.webdav.org/",
  42. "https://github.com/truenas/charts/tree/master/community/webdav"
  43. ],
  44. "keywords": [
  45. "webdav",
  46. "file-sharing"
  47. ]
  48. },
  49. "app_metadata": {
  50. "runAsContext": [
  51. {
  52. "userName": "webdav",
  53. "groupName": "webdav",
  54. "gid": 568,
  55. "uid": 568,
  56. "description": "WebDAV can run as any non-root user."
  57. }
  58. ],
  59. "capabilities": [],
  60. "hostMounts": []
  61. },
  62. "schema": {
  63. "groups": [
  64. {
  65. "name": "WebDAV Configuration",
  66. "description": "Configure WebDAV"
  67. },
  68. {
  69. "name": "User and Group Configuration",
  70. "description": "Configure User and Group for WebDAV"
  71. },
  72. {
  73. "name": "Network Configuration",
  74. "description": "Configure Network for WebDAV"
  75. },
  76. {
  77. "name": "Storage Configuration",
  78. "description": "Configure Storage for WebDAV"
  79. },
  80. {
  81. "name": "Resources Configuration",
  82. "description": "Configure Resources for WebDAV"
  83. }
  84. ],
  85. "questions": [
  86. {
  87. "variable": "webdavConfig",
  88. "label": "",
  89. "group": "WebDAV Configuration",
  90. "schema": {
  91. "type": "dict",
  92. "attrs": [
  93. {
  94. "variable": "authType",
  95. "label": "Authentication Type",
  96. "description": "Select the authentication type for WebDAV.",
  97. "schema": {
  98. "type": "string",
  99. "default": "none",
  100. "enum": [
  101. {
  102. "value": "none",
  103. "description": "No Authentication"
  104. },
  105. {
  106. "value": "basic",
  107. "description": "Basic Authentication"
  108. }
  109. ]
  110. }
  111. },
  112. {
  113. "variable": "username",
  114. "label": "Username",
  115. "description": "The username for basic authentication.",
  116. "schema": {
  117. "type": "string",
  118. "show_if": [
  119. [
  120. "authType",
  121. "=",
  122. "basic"
  123. ]
  124. ],
  125. "required": true
  126. }
  127. },
  128. {
  129. "variable": "password",
  130. "label": "Password",
  131. "description": "The password for basic authentication.",
  132. "schema": {
  133. "type": "string",
  134. "show_if": [
  135. [
  136. "authType",
  137. "=",
  138. "basic"
  139. ]
  140. ],
  141. "private": true,
  142. "required": true
  143. }
  144. },
  145. {
  146. "variable": "additionalBrowserMatches",
  147. "label": "Additional Browser Matches",
  148. "description": "Additional browser matches for WebDAV.</br>\nThis is useful if you want to use WebDAV with a browser\nthat is not supported by the default configuration.</br>\nExample: \"^some-regex\" </br>\nThis will create the following line in the configuration file:</br>\nBrowserMatch \"^some-regex\" redirect-carefully\n",
  149. "schema": {
  150. "type": "list",
  151. "default": [],
  152. "items": [
  153. {
  154. "variable": "match",
  155. "label": "Match",
  156. "schema": {
  157. "type": "string",
  158. "required": true
  159. }
  160. }
  161. ]
  162. }
  163. },
  164. {
  165. "variable": "additionalEnvs",
  166. "label": "Additional Environment Variables",
  167. "description": "Configure additional environment variables for WebDAV.",
  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": "webdavRunAs",
  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 WebDAV will run as.",
  214. "schema": {
  215. "type": "int",
  216. "min": 2,
  217. "default": 666,
  218. "required": true
  219. }
  220. },
  221. {
  222. "variable": "group",
  223. "label": "Group ID",
  224. "description": "The group id that WebDAV will run as.",
  225. "schema": {
  226. "type": "int",
  227. "min": 2,
  228. "default": 666,
  229. "required": true
  230. }
  231. }
  232. ]
  233. }
  234. },
  235. {
  236. "variable": "webdavNetwork",
  237. "label": "",
  238. "group": "Network Configuration",
  239. "schema": {
  240. "type": "dict",
  241. "attrs": [
  242. {
  243. "variable": "http",
  244. "label": "Enable HTTP",
  245. "description": "Enable HTTP for WebDAV.",
  246. "schema": {
  247. "type": "boolean",
  248. "default": true,
  249. "show_subquestions_if": true,
  250. "subquestions": [
  251. {
  252. "variable": "httpPort",
  253. "label": "HTTP Port",
  254. "description": "The port for HTTP WebDAV.",
  255. "schema": {
  256. "type": "int",
  257. "default": 30034,
  258. "min": 9000,
  259. "max": 65535,
  260. "required": true
  261. }
  262. }
  263. ]
  264. }
  265. },
  266. {
  267. "variable": "https",
  268. "label": "Enable HTTPS",
  269. "description": "Enable HTTPS for WebDAV.",
  270. "schema": {
  271. "type": "boolean",
  272. "default": false,
  273. "show_subquestions_if": true,
  274. "subquestions": [
  275. {
  276. "variable": "httpsPort",
  277. "label": "HTTPS Port",
  278. "description": "The port for HTTPS WebDAV.",
  279. "schema": {
  280. "type": "int",
  281. "default": 30035,
  282. "min": 9000,
  283. "max": 65535,
  284. "required": true
  285. }
  286. },
  287. {
  288. "variable": "certificateID",
  289. "label": "Certificate",
  290. "description": "The certificate to use for HTTPS WebDAV.",
  291. "schema": {
  292. "type": "int",
  293. "required": true,
  294. "null": true,
  295. "$ref": [
  296. "definitions/certificate"
  297. ],
  298. "enum": [
  299. {
  300. "value": null,
  301. "description": "No Certificate"
  302. }
  303. ],
  304. "default": null
  305. }
  306. }
  307. ]
  308. }
  309. },
  310. {
  311. "variable": "hostNetwork",
  312. "label": "Host Network",
  313. "description": "Bind to the host network. It's recommended to keep this disabled.</br>\n",
  314. "schema": {
  315. "type": "boolean",
  316. "default": false
  317. }
  318. }
  319. ]
  320. }
  321. },
  322. {
  323. "variable": "webdavStorage",
  324. "label": "",
  325. "group": "Storage Configuration",
  326. "schema": {
  327. "type": "dict",
  328. "attrs": [
  329. {
  330. "variable": "shares",
  331. "label": "Shares",
  332. "description": "Shares for WebDAV.",
  333. "schema": {
  334. "type": "list",
  335. "required": true,
  336. "default": [],
  337. "items": [
  338. {
  339. "variable": "shareEntry",
  340. "label": "Share Entry",
  341. "schema": {
  342. "type": "dict",
  343. "attrs": [
  344. {
  345. "variable": "enabled",
  346. "label": "Enable the share",
  347. "description": "Enable the share.",
  348. "schema": {
  349. "type": "boolean",
  350. "default": true
  351. }
  352. },
  353. {
  354. "variable": "name",
  355. "label": "Share Name",
  356. "description": "The name of the share.</br>\nAlso serves as the endpoint for the share.</br>\nExample: [share1] will be available at [http://<webdav-ip>:<webdav-port>/share1]\n",
  357. "schema": {
  358. "type": "string",
  359. "valid_chars": "^[a-zA-Z0-9_-]+$",
  360. "valid_chars_error": "Share name can only consist of [Letters(a-z, A-Z), Numbers(0-9), Underscores(_), Dashes(-)]",
  361. "required": true
  362. }
  363. },
  364. {
  365. "variable": "description",
  366. "label": "Description",
  367. "description": "Share description. Only used for documentation.",
  368. "schema": {
  369. "type": "string"
  370. }
  371. },
  372. {
  373. "variable": "hostPath",
  374. "label": "Host Path",
  375. "description": "The host path to use for the share.",
  376. "schema": {
  377. "type": "hostpath",
  378. "required": true
  379. }
  380. },
  381. {
  382. "variable": "readOnly",
  383. "label": "Read Only",
  384. "description": "Enable read only access to the share.</br>\nThis will disable write access to the share.</br>\nData will be mounted as read only.\n",
  385. "schema": {
  386. "type": "boolean",
  387. "default": false
  388. }
  389. },
  390. {
  391. "variable": "maxRequestBodySizeInGB",
  392. "label": "Max Request Body Size (in GB)",
  393. "description": "The maximum size of the request body in GB.\nIf the request body size exceeds this value, the request will fail.\nValue of 0 means no limit.\n",
  394. "schema": {
  395. "type": "int",
  396. "default": 1
  397. }
  398. },
  399. {
  400. "variable": "fixPermissions",
  401. "label": "Fix Permissions",
  402. "description": "Enable permission fix for the share.</br>\nThis will fix the permissions of the share on startup.</br>\nThis will change the owner of the share to the user and group specified in [User and Group Configuration].</br>\nNote: This will still change permissions even if [Read Only] for the share is enabled.\n",
  403. "schema": {
  404. "type": "boolean",
  405. "default": false
  406. }
  407. }
  408. ]
  409. }
  410. }
  411. ]
  412. }
  413. }
  414. ]
  415. }
  416. },
  417. {
  418. "variable": "resources",
  419. "group": "Resources Configuration",
  420. "label": "",
  421. "schema": {
  422. "type": "dict",
  423. "attrs": [
  424. {
  425. "variable": "limits",
  426. "label": "Limits",
  427. "schema": {
  428. "type": "dict",
  429. "attrs": [
  430. {
  431. "variable": "cpu",
  432. "label": "CPU",
  433. "description": "CPU limit for WebDAV.",
  434. "schema": {
  435. "type": "string",
  436. "max_length": 6,
  437. "valid_chars": "^(0\\.[1-9]|[1-9][0-9]*)(\\.[0-9]|m?)$",
  438. "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",
  439. "default": "4000m",
  440. "required": true
  441. }
  442. },
  443. {
  444. "variable": "memory",
  445. "label": "Memory",
  446. "description": "Memory limit for WebDAV.",
  447. "schema": {
  448. "type": "string",
  449. "max_length": 12,
  450. "valid_chars": "^[1-9][0-9]*([EPTGMK]i?|e[0-9]+)?$",
  451. "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",
  452. "default": "8Gi",
  453. "required": true
  454. }
  455. }
  456. ]
  457. }
  458. }
  459. ]
  460. }
  461. }
  462. ]
  463. },
  464. "app_readme": "<h1>WebDAV</h1>\n<p><a href=\"http://webdav.org/\">WebDAV</a> is a set of extensions to the HTTP protocol which allows users to collaboratively edit and manage files on remote web servers.</p>\n<blockquote>\n<p>When application is installed and <code>Fix Permissions</code> is selected on at least 1 share\na container will be launched with <strong>root</strong> privileges. This is required in order to apply\nthe correct permissions to the <code>WebDAV</code> shares/directories.\nAfterward, the <code>WebDAV</code> container will run as a <strong>non</strong>-root user (Default: <code>666</code>).\n<code>Chown</code> will only apply if the parent directory does not match the configured user and group.</p>\n</blockquote>",
  465. "detailed_readme": "<h1>WebDAV</h1>\n<p><a href=\"http://webdav.org/\">WebDAV</a> is a set of extensions to the HTTP protocol which allows users to collaboratively edit and manage files on remote web servers.</p>\n<blockquote>\n<p>When application is installed and <code>Fix Permissions</code> is selected on at least 1 share\na container will be launched with <strong>root</strong> privileges. This is required in order to apply\nthe correct permissions to the selected <code>WebDAV</code> shares/directories.\nAfterward, the <code>WebDAV</code> container will run as a <strong>non</strong>-root user (Default: <code>666</code>).\nNote that <code>chown</code> will only apply if the parent directory does not match the configured user and group.</p>\n</blockquote>",
  466. "changelog": null
  467. }
  468. }