app_versions.json 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441
  1. {
  2. "1.0.22": {
  3. "healthy": true,
  4. "supported": true,
  5. "healthy_error": null,
  6. "location": "/__w/charts/charts/community/webdav/1.0.22",
  7. "last_update": "2024-04-20 13:17:04",
  8. "required_features": [
  9. "definitions/certificate"
  10. ],
  11. "human_version": "2.4.59_1.0.22",
  12. "version": "1.0.22",
  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.22",
  21. "apiVersion": "v2",
  22. "appVersion": "2.4.59",
  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": "additionalEnvs",
  147. "label": "Additional Environment Variables",
  148. "description": "Configure additional environment variables for WebDAV.",
  149. "schema": {
  150. "type": "list",
  151. "default": [],
  152. "items": [
  153. {
  154. "variable": "env",
  155. "label": "Environment Variable",
  156. "schema": {
  157. "type": "dict",
  158. "attrs": [
  159. {
  160. "variable": "name",
  161. "label": "Name",
  162. "schema": {
  163. "type": "string",
  164. "required": true
  165. }
  166. },
  167. {
  168. "variable": "value",
  169. "label": "Value",
  170. "schema": {
  171. "type": "string",
  172. "required": true
  173. }
  174. }
  175. ]
  176. }
  177. }
  178. ]
  179. }
  180. }
  181. ]
  182. }
  183. },
  184. {
  185. "variable": "webdavRunAs",
  186. "label": "",
  187. "group": "User and Group Configuration",
  188. "schema": {
  189. "type": "dict",
  190. "attrs": [
  191. {
  192. "variable": "user",
  193. "label": "User ID",
  194. "description": "The user id that WebDAV will run as.",
  195. "schema": {
  196. "type": "int",
  197. "min": 2,
  198. "default": 666,
  199. "required": true
  200. }
  201. },
  202. {
  203. "variable": "group",
  204. "label": "Group ID",
  205. "description": "The group id that WebDAV will run as.",
  206. "schema": {
  207. "type": "int",
  208. "min": 2,
  209. "default": 666,
  210. "required": true
  211. }
  212. }
  213. ]
  214. }
  215. },
  216. {
  217. "variable": "webdavNetwork",
  218. "label": "",
  219. "group": "Network Configuration",
  220. "schema": {
  221. "type": "dict",
  222. "attrs": [
  223. {
  224. "variable": "http",
  225. "label": "Enable HTTP",
  226. "description": "Enable HTTP for WebDAV.",
  227. "schema": {
  228. "type": "boolean",
  229. "default": true,
  230. "show_subquestions_if": true,
  231. "subquestions": [
  232. {
  233. "variable": "httpPort",
  234. "label": "HTTP Port",
  235. "description": "The port for HTTP WebDAV.",
  236. "schema": {
  237. "type": "int",
  238. "default": 30034,
  239. "min": 9000,
  240. "max": 65535,
  241. "required": true
  242. }
  243. }
  244. ]
  245. }
  246. },
  247. {
  248. "variable": "https",
  249. "label": "Enable HTTPS",
  250. "description": "Enable HTTPS for WebDAV.",
  251. "schema": {
  252. "type": "boolean",
  253. "default": false,
  254. "show_subquestions_if": true,
  255. "subquestions": [
  256. {
  257. "variable": "httpsPort",
  258. "label": "HTTPS Port",
  259. "description": "The port for HTTPS WebDAV.",
  260. "schema": {
  261. "type": "int",
  262. "default": 30035,
  263. "min": 9000,
  264. "max": 65535,
  265. "required": true
  266. }
  267. },
  268. {
  269. "variable": "certificateID",
  270. "label": "Certificate",
  271. "description": "The certificate to use for HTTPS WebDAV.",
  272. "schema": {
  273. "type": "int",
  274. "required": true,
  275. "null": true,
  276. "$ref": [
  277. "definitions/certificate"
  278. ],
  279. "enum": [
  280. {
  281. "value": null,
  282. "description": "No Certificate"
  283. }
  284. ],
  285. "default": null
  286. }
  287. }
  288. ]
  289. }
  290. },
  291. {
  292. "variable": "hostNetwork",
  293. "label": "Host Network",
  294. "description": "Bind to the host network. It's recommended to keep this disabled.</br>\n",
  295. "schema": {
  296. "type": "boolean",
  297. "default": false
  298. }
  299. }
  300. ]
  301. }
  302. },
  303. {
  304. "variable": "webdavStorage",
  305. "label": "",
  306. "group": "Storage Configuration",
  307. "schema": {
  308. "type": "dict",
  309. "attrs": [
  310. {
  311. "variable": "shares",
  312. "label": "Shares",
  313. "description": "Shares for WebDAV.",
  314. "schema": {
  315. "type": "list",
  316. "empty": false,
  317. "required": true,
  318. "default": [],
  319. "items": [
  320. {
  321. "variable": "shareEntry",
  322. "label": "Share Entry",
  323. "schema": {
  324. "type": "dict",
  325. "attrs": [
  326. {
  327. "variable": "enabled",
  328. "label": "Enable the share",
  329. "description": "Enable the share.",
  330. "schema": {
  331. "type": "boolean",
  332. "default": true
  333. }
  334. },
  335. {
  336. "variable": "name",
  337. "label": "Share Name",
  338. "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",
  339. "schema": {
  340. "type": "string",
  341. "valid_chars": "^[a-zA-Z0-9_-]+$",
  342. "valid_chars_error": "Share name can only consist of [Letters(a-z, A-Z), Numbers(0-9), Underscores(_), Dashes(-)]",
  343. "required": true
  344. }
  345. },
  346. {
  347. "variable": "description",
  348. "label": "Description",
  349. "description": "Share description. Only used for documentation.",
  350. "schema": {
  351. "type": "string"
  352. }
  353. },
  354. {
  355. "variable": "hostPath",
  356. "label": "Host Path",
  357. "description": "The host path to use for the share.",
  358. "schema": {
  359. "type": "hostpath",
  360. "required": true
  361. }
  362. },
  363. {
  364. "variable": "readOnly",
  365. "label": "Read Only",
  366. "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",
  367. "schema": {
  368. "type": "boolean",
  369. "default": false
  370. }
  371. },
  372. {
  373. "variable": "fixPermissions",
  374. "label": "Fix Permissions",
  375. "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",
  376. "schema": {
  377. "type": "boolean",
  378. "default": false
  379. }
  380. }
  381. ]
  382. }
  383. }
  384. ]
  385. }
  386. }
  387. ]
  388. }
  389. },
  390. {
  391. "variable": "resources",
  392. "group": "Resources Configuration",
  393. "label": "",
  394. "schema": {
  395. "type": "dict",
  396. "attrs": [
  397. {
  398. "variable": "limits",
  399. "label": "Limits",
  400. "schema": {
  401. "type": "dict",
  402. "attrs": [
  403. {
  404. "variable": "cpu",
  405. "label": "CPU",
  406. "description": "CPU limit for WebDAV.",
  407. "schema": {
  408. "type": "string",
  409. "max_length": 6,
  410. "valid_chars": "^(0\\.[1-9]|[1-9][0-9]*)(\\.[0-9]|m?)$",
  411. "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",
  412. "default": "4000m",
  413. "required": true
  414. }
  415. },
  416. {
  417. "variable": "memory",
  418. "label": "Memory",
  419. "description": "Memory limit for WebDAV.",
  420. "schema": {
  421. "type": "string",
  422. "max_length": 12,
  423. "valid_chars": "^[1-9][0-9]*([EPTGMK]i?|e[0-9]+)?$",
  424. "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",
  425. "default": "8Gi",
  426. "required": true
  427. }
  428. }
  429. ]
  430. }
  431. }
  432. ]
  433. }
  434. }
  435. ]
  436. },
  437. "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>",
  438. "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>",
  439. "changelog": null
  440. }
  441. }