app_versions.json 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  1. {
  2. "1.0.16": {
  3. "healthy": true,
  4. "supported": true,
  5. "healthy_error": null,
  6. "location": "/__w/charts/charts/test/sonarr/1.0.16",
  7. "last_update": "2025-03-06 08:26:26",
  8. "required_features": [
  9. "normalize/ixVolume"
  10. ],
  11. "human_version": "3.0.10.1567_1.0.16",
  12. "version": "1.0.16",
  13. "chart_metadata": {
  14. "name": "sonarr",
  15. "description": "Sonarr is a PVR for Usenet and BitTorrent users.",
  16. "annotations": {
  17. "title": "Sonarr"
  18. },
  19. "type": "application",
  20. "version": "1.0.16",
  21. "apiVersion": "v2",
  22. "appVersion": "3.0.10.1567",
  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.1.1"
  36. }
  37. ],
  38. "home": "https://github.com/Sonarr/Sonarr",
  39. "icon": "https://raw.githubusercontent.com/Sonarr/Sonarr/develop/Logo/256.png",
  40. "sources": [
  41. "https://github.com/onedr0p/containers/tree/main/apps/sonarr",
  42. "https://github.com/truenas/charts/tree/master/community/sonarr",
  43. "https://github.com/Sonarr/Sonarr"
  44. ],
  45. "keywords": [
  46. "media",
  47. "series"
  48. ]
  49. },
  50. "app_metadata": {
  51. "runAsContext": [
  52. {
  53. "userName": "sonarr",
  54. "groupName": "sonarr",
  55. "gid": 568,
  56. "uid": 568,
  57. "description": "Sonarr can run as any non-root user."
  58. }
  59. ],
  60. "capabilities": [],
  61. "hostMounts": []
  62. },
  63. "schema": {
  64. "groups": [
  65. {
  66. "name": "Sonarr Configuration",
  67. "description": "Configure Sonarr"
  68. },
  69. {
  70. "name": "User and Group Configuration",
  71. "description": "Configure User and Group for Sonarr"
  72. },
  73. {
  74. "name": "Network Configuration",
  75. "description": "Configure Network for Sonarr"
  76. },
  77. {
  78. "name": "Storage Configuration",
  79. "description": "Configure Storage for Sonarr"
  80. },
  81. {
  82. "name": "Resources Configuration",
  83. "description": "Configure Resources for Sonarr"
  84. }
  85. ],
  86. "portals": {
  87. "web_portal": {
  88. "protocols": [
  89. "$kubernetes-resource_configmap_portal_protocol"
  90. ],
  91. "host": [
  92. "$kubernetes-resource_configmap_portal_host"
  93. ],
  94. "ports": [
  95. "$kubernetes-resource_configmap_portal_port"
  96. ],
  97. "path": "$kubernetes-resource_configmap_portal_path"
  98. }
  99. },
  100. "questions": [
  101. {
  102. "variable": "sonarrConfig",
  103. "label": "",
  104. "group": "Sonarr Configuration",
  105. "schema": {
  106. "type": "dict",
  107. "attrs": [
  108. {
  109. "variable": "instanceName",
  110. "label": "Instance Name",
  111. "description": "The name of the Sonarr instance.",
  112. "schema": {
  113. "type": "string",
  114. "default": "Sonarr",
  115. "required": true
  116. }
  117. },
  118. {
  119. "variable": "additionalEnvs",
  120. "label": "Additional Environment Variables",
  121. "description": "Configure additional environment variables for Sonarr.",
  122. "schema": {
  123. "type": "list",
  124. "default": [],
  125. "items": [
  126. {
  127. "variable": "env",
  128. "label": "Environment Variable",
  129. "schema": {
  130. "type": "dict",
  131. "attrs": [
  132. {
  133. "variable": "name",
  134. "label": "Name",
  135. "schema": {
  136. "type": "string",
  137. "required": true
  138. }
  139. },
  140. {
  141. "variable": "value",
  142. "label": "Value",
  143. "schema": {
  144. "type": "string",
  145. "required": true
  146. }
  147. }
  148. ]
  149. }
  150. }
  151. ]
  152. }
  153. }
  154. ]
  155. }
  156. },
  157. {
  158. "variable": "sonarrRunAs",
  159. "label": "",
  160. "group": "User and Group Configuration",
  161. "schema": {
  162. "type": "dict",
  163. "attrs": [
  164. {
  165. "variable": "user",
  166. "label": "User ID",
  167. "description": "The user id that Sonarr will run as.",
  168. "schema": {
  169. "type": "int",
  170. "min": 2,
  171. "default": 568,
  172. "required": true
  173. }
  174. },
  175. {
  176. "variable": "group",
  177. "label": "Group ID",
  178. "description": "The group id that Sonarr will run as.",
  179. "schema": {
  180. "type": "int",
  181. "min": 2,
  182. "default": 568,
  183. "required": true
  184. }
  185. }
  186. ]
  187. }
  188. },
  189. {
  190. "variable": "sonarrNetwork",
  191. "label": "",
  192. "group": "Network Configuration",
  193. "schema": {
  194. "type": "dict",
  195. "attrs": [
  196. {
  197. "variable": "webPort",
  198. "label": "Web Port",
  199. "description": "The port for the Sonarr Web UI.",
  200. "schema": {
  201. "type": "int",
  202. "default": 30027,
  203. "min": 9000,
  204. "max": 65535,
  205. "required": true
  206. }
  207. },
  208. {
  209. "variable": "hostNetwork",
  210. "label": "Host Network",
  211. "description": "Bind to the host network. It's recommended to keep this disabled.</br>\n",
  212. "schema": {
  213. "type": "boolean",
  214. "default": false
  215. }
  216. }
  217. ]
  218. }
  219. },
  220. {
  221. "variable": "sonarrStorage",
  222. "label": "",
  223. "group": "Storage Configuration",
  224. "schema": {
  225. "type": "dict",
  226. "attrs": [
  227. {
  228. "variable": "config",
  229. "label": "Sonarr Config Storage",
  230. "description": "The path to store Sonarr Configuration.",
  231. "schema": {
  232. "type": "dict",
  233. "attrs": [
  234. {
  235. "variable": "type",
  236. "label": "Type",
  237. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  238. "schema": {
  239. "type": "string",
  240. "required": true,
  241. "default": "ixVolume",
  242. "enum": [
  243. {
  244. "value": "hostPath",
  245. "description": "Host Path (Path that already exists on the system)"
  246. },
  247. {
  248. "value": "ixVolume",
  249. "description": "ixVolume (Dataset created automatically by the system)"
  250. }
  251. ]
  252. }
  253. },
  254. {
  255. "variable": "datasetName",
  256. "label": "Dataset Name",
  257. "schema": {
  258. "type": "string",
  259. "show_if": [
  260. [
  261. "type",
  262. "=",
  263. "ixVolume"
  264. ]
  265. ],
  266. "required": true,
  267. "hidden": true,
  268. "immutable": true,
  269. "default": "config",
  270. "$ref": [
  271. "normalize/ixVolume"
  272. ]
  273. }
  274. },
  275. {
  276. "variable": "hostPath",
  277. "label": "Host Path",
  278. "schema": {
  279. "type": "hostpath",
  280. "show_if": [
  281. [
  282. "type",
  283. "=",
  284. "hostPath"
  285. ]
  286. ],
  287. "immutable": true,
  288. "required": true
  289. }
  290. }
  291. ]
  292. }
  293. },
  294. {
  295. "variable": "additionalStorages",
  296. "label": "Additional Storage",
  297. "description": "Additional storage for Sonarr.",
  298. "schema": {
  299. "type": "list",
  300. "default": [],
  301. "items": [
  302. {
  303. "variable": "storageEntry",
  304. "label": "Storage Entry",
  305. "schema": {
  306. "type": "dict",
  307. "attrs": [
  308. {
  309. "variable": "type",
  310. "label": "Type",
  311. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  312. "schema": {
  313. "type": "string",
  314. "required": true,
  315. "default": "ixVolume",
  316. "enum": [
  317. {
  318. "value": "hostPath",
  319. "description": "Host Path (Path that already exists on the system)"
  320. },
  321. {
  322. "value": "ixVolume",
  323. "description": "ixVolume (Dataset created automatically by the system)"
  324. },
  325. {
  326. "value": "smb-pv-pvc",
  327. "description": "SMB Share (Mounts a persistent volume claim to a SMB share)"
  328. }
  329. ]
  330. }
  331. },
  332. {
  333. "variable": "mountPath",
  334. "label": "Mount Path",
  335. "description": "The path inside the container to mount the storage.",
  336. "schema": {
  337. "type": "path",
  338. "required": true
  339. }
  340. },
  341. {
  342. "variable": "hostPath",
  343. "label": "Host Path",
  344. "description": "The host path to use for storage.",
  345. "schema": {
  346. "type": "hostpath",
  347. "show_if": [
  348. [
  349. "type",
  350. "=",
  351. "hostPath"
  352. ]
  353. ],
  354. "required": true
  355. }
  356. },
  357. {
  358. "variable": "datasetName",
  359. "label": "Dataset Name",
  360. "description": "The name of the dataset to use for storage.",
  361. "schema": {
  362. "type": "string",
  363. "show_if": [
  364. [
  365. "type",
  366. "=",
  367. "ixVolume"
  368. ]
  369. ],
  370. "required": true,
  371. "immutable": true,
  372. "default": "storage_entry",
  373. "$ref": [
  374. "normalize/ixVolume"
  375. ]
  376. }
  377. },
  378. {
  379. "variable": "server",
  380. "label": "Server",
  381. "description": "The server for the SMB share.",
  382. "schema": {
  383. "type": "string",
  384. "show_if": [
  385. [
  386. "type",
  387. "=",
  388. "smb-pv-pvc"
  389. ]
  390. ],
  391. "required": true
  392. }
  393. },
  394. {
  395. "variable": "share",
  396. "label": "Share",
  397. "description": "The share name for the SMB share.",
  398. "schema": {
  399. "type": "string",
  400. "show_if": [
  401. [
  402. "type",
  403. "=",
  404. "smb-pv-pvc"
  405. ]
  406. ],
  407. "required": true
  408. }
  409. },
  410. {
  411. "variable": "domain",
  412. "label": "Domain (Optional)",
  413. "description": "The domain for the SMB share.",
  414. "schema": {
  415. "type": "string",
  416. "show_if": [
  417. [
  418. "type",
  419. "=",
  420. "smb-pv-pvc"
  421. ]
  422. ]
  423. }
  424. },
  425. {
  426. "variable": "username",
  427. "label": "Username",
  428. "description": "The username for the SMB share.",
  429. "schema": {
  430. "type": "string",
  431. "show_if": [
  432. [
  433. "type",
  434. "=",
  435. "smb-pv-pvc"
  436. ]
  437. ],
  438. "required": true
  439. }
  440. },
  441. {
  442. "variable": "password",
  443. "label": "Password",
  444. "description": "The password for the SMB share.",
  445. "schema": {
  446. "type": "string",
  447. "show_if": [
  448. [
  449. "type",
  450. "=",
  451. "smb-pv-pvc"
  452. ]
  453. ],
  454. "required": true,
  455. "private": true
  456. }
  457. },
  458. {
  459. "variable": "size",
  460. "label": "Size (in Gi)",
  461. "description": "The size of the volume quota.",
  462. "schema": {
  463. "type": "int",
  464. "show_if": [
  465. [
  466. "type",
  467. "=",
  468. "smb-pv-pvc"
  469. ]
  470. ],
  471. "required": true,
  472. "min": 1,
  473. "default": 1
  474. }
  475. }
  476. ]
  477. }
  478. }
  479. ]
  480. }
  481. }
  482. ]
  483. }
  484. },
  485. {
  486. "variable": "resources",
  487. "group": "Resources Configuration",
  488. "label": "",
  489. "schema": {
  490. "type": "dict",
  491. "attrs": [
  492. {
  493. "variable": "limits",
  494. "label": "Limits",
  495. "schema": {
  496. "type": "dict",
  497. "attrs": [
  498. {
  499. "variable": "cpu",
  500. "label": "CPU",
  501. "description": "CPU limit for Sonarr.",
  502. "schema": {
  503. "type": "string",
  504. "max_length": 6,
  505. "valid_chars": "^(0\\.[1-9]|[1-9][0-9]*)(\\.[0-9]|m?)$",
  506. "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",
  507. "default": "4000m",
  508. "required": true
  509. }
  510. },
  511. {
  512. "variable": "memory",
  513. "label": "Memory",
  514. "description": "Memory limit for Sonarr.",
  515. "schema": {
  516. "type": "string",
  517. "max_length": 12,
  518. "valid_chars": "^[1-9][0-9]*([EPTGMK]i?|e[0-9]+)?$",
  519. "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",
  520. "default": "8Gi",
  521. "required": true
  522. }
  523. }
  524. ]
  525. }
  526. }
  527. ]
  528. }
  529. }
  530. ]
  531. },
  532. "app_readme": "<h1>Sonarr</h1>\n<p><a href=\"https://github.com/Sonarr/Sonarr\">Sonarr</a> is a PVR for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Sonarr</code> directories.\nAfterward, the <code>Sonarr</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  533. "detailed_readme": "<h1>Sonarr</h1>\n<p><a href=\"https://github.com/Sonarr/Sonarr\">Sonarr</a> is a PVR for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Sonarr</code> directories.\nAfterward, the <code>Sonarr</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  534. "changelog": null
  535. }
  536. }