app_versions.json 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  1. {
  2. "1.0.13": {
  3. "healthy": true,
  4. "supported": true,
  5. "healthy_error": null,
  6. "location": "/__w/charts/charts/community/webdav/1.0.13",
  7. "last_update": "2023-11-14 10:11:57",
  8. "required_features": [
  9. "definitions/certificate"
  10. ],
  11. "human_version": "2.4.58_1.0.13",
  12. "version": "1.0.13",
  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.13",
  21. "apiVersion": "v2",
  22. "appVersion": "2.4.58",
  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": "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. "null": true,
  275. "$ref": [
  276. "definitions/certificate"
  277. ],
  278. "enum": [
  279. {
  280. "value": null,
  281. "description": "No Certificate"
  282. }
  283. ],
  284. "default": null
  285. }
  286. }
  287. ]
  288. }
  289. },
  290. {
  291. "variable": "hostNetwork",
  292. "label": "Host Network",
  293. "description": "Bind to the host network. It's recommended to keep this disabled.</br>\n",
  294. "schema": {
  295. "type": "boolean",
  296. "default": false
  297. }
  298. }
  299. ]
  300. }
  301. },
  302. {
  303. "variable": "webdavStorage",
  304. "label": "",
  305. "group": "Storage Configuration",
  306. "schema": {
  307. "type": "dict",
  308. "attrs": [
  309. {
  310. "variable": "shares",
  311. "label": "Shares",
  312. "description": "Shares for WebDAV.",
  313. "schema": {
  314. "type": "list",
  315. "empty": false,
  316. "required": true,
  317. "default": [],
  318. "items": [
  319. {
  320. "variable": "shareEntry",
  321. "label": "Share Entry",
  322. "schema": {
  323. "type": "dict",
  324. "attrs": [
  325. {
  326. "variable": "enabled",
  327. "label": "Enable the share",
  328. "description": "Enable the share.",
  329. "schema": {
  330. "type": "boolean",
  331. "default": true
  332. }
  333. },
  334. {
  335. "variable": "name",
  336. "label": "Share Name",
  337. "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",
  338. "schema": {
  339. "type": "string",
  340. "valid_chars": "^[a-zA-Z0-9_-]+$",
  341. "valid_chars_error": "Share name can only consist of [Letters(a-z, A-Z), Numbers(0-9), Underscores(_), Dashes(-)]",
  342. "required": true
  343. }
  344. },
  345. {
  346. "variable": "description",
  347. "label": "Description",
  348. "description": "Share description. Only used for documentation.",
  349. "schema": {
  350. "type": "string"
  351. }
  352. },
  353. {
  354. "variable": "hostPath",
  355. "label": "Host Path",
  356. "description": "The host path to use for the share.",
  357. "schema": {
  358. "type": "hostpath",
  359. "required": true
  360. }
  361. },
  362. {
  363. "variable": "readOnly",
  364. "label": "Read Only",
  365. "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",
  366. "schema": {
  367. "type": "boolean",
  368. "default": false
  369. }
  370. },
  371. {
  372. "variable": "fixPermissions",
  373. "label": "Fix Permissions",
  374. "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",
  375. "schema": {
  376. "type": "boolean",
  377. "default": false
  378. }
  379. }
  380. ]
  381. }
  382. }
  383. ]
  384. }
  385. }
  386. ]
  387. }
  388. },
  389. {
  390. "variable": "resources",
  391. "group": "Resources Configuration",
  392. "label": "",
  393. "schema": {
  394. "type": "dict",
  395. "attrs": [
  396. {
  397. "variable": "limits",
  398. "label": "Limits",
  399. "schema": {
  400. "type": "dict",
  401. "attrs": [
  402. {
  403. "variable": "cpu",
  404. "label": "CPU",
  405. "description": "CPU limit for WebDAV.",
  406. "schema": {
  407. "type": "string",
  408. "max_length": 6,
  409. "valid_chars": "^(0\\.[1-9]|[1-9][0-9]*)(\\.[0-9]|m?)$",
  410. "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",
  411. "default": "4000m",
  412. "required": true
  413. }
  414. },
  415. {
  416. "variable": "memory",
  417. "label": "Memory",
  418. "description": "Memory limit for WebDAV.",
  419. "schema": {
  420. "type": "string",
  421. "max_length": 12,
  422. "valid_chars": "^[1-9][0-9]*([EPTGMK]i?|e[0-9]+)?$",
  423. "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",
  424. "default": "8Gi",
  425. "required": true
  426. }
  427. }
  428. ]
  429. }
  430. }
  431. ]
  432. }
  433. }
  434. ]
  435. },
  436. "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>",
  437. "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>",
  438. "changelog": null
  439. }
  440. }