app_versions.json 214 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231
  1. {
  2. "1.2.8": {
  3. "healthy": true,
  4. "supported": true,
  5. "healthy_error": null,
  6. "location": "/__w/apps/apps/trains/community/ddns-updater/1.2.8",
  7. "last_update": "2025-09-02 11:33:24",
  8. "required_features": [],
  9. "human_version": "v2.9.0_1.2.8",
  10. "version": "1.2.8",
  11. "app_metadata": {
  12. "annotations": {
  13. "min_scale_version": "24.10.2.2"
  14. },
  15. "app_version": "v2.9.0",
  16. "capabilities": [],
  17. "categories": [
  18. "networking"
  19. ],
  20. "changelog_url": "https://github.com/qdm12/ddns-updater/releases",
  21. "date_added": "2024-08-01",
  22. "description": "Lightweight universal DDNS Updater with web UI",
  23. "home": "https://github.com/qdm12/ddns-updater",
  24. "host_mounts": [],
  25. "icon": "https://media.sys.truenas.net/apps/ddns-updater/icons/icon.svg",
  26. "keywords": [
  27. "ddns-updater",
  28. "ddns"
  29. ],
  30. "lib_version": "2.1.49",
  31. "lib_version_hash": "e71e6b0122c9446fa5ea6fb07e7eb01b11fb42d549a19845426bbd7e21a42634",
  32. "maintainers": [
  33. {
  34. "email": "dev@ixsystems.com",
  35. "name": "truenas",
  36. "url": "https://www.truenas.com/"
  37. }
  38. ],
  39. "name": "ddns-updater",
  40. "run_as_context": [
  41. {
  42. "description": "DDNS Updater runs as any non-root user.",
  43. "gid": 568,
  44. "group_name": "ddns-updater",
  45. "uid": 568,
  46. "user_name": "ddns-updater"
  47. }
  48. ],
  49. "screenshots": [
  50. "https://media.sys.truenas.net/apps/ddns-updater/screenshots/screenshot1.png"
  51. ],
  52. "sources": [
  53. "https://github.com/qdm12/ddns-updater",
  54. "https://hub.docker.com/r/qmcgaw/ddns-updater"
  55. ],
  56. "title": "DDNS Updater",
  57. "train": "community",
  58. "version": "1.2.8"
  59. },
  60. "schema": {
  61. "groups": [
  62. {
  63. "name": "DDNS Updater Configuration",
  64. "description": "Configure DDNS Updater"
  65. },
  66. {
  67. "name": "User and Group Configuration",
  68. "description": "Configure User and Group for DDNS Updater"
  69. },
  70. {
  71. "name": "Network Configuration",
  72. "description": "Configure Network for DDNS Updater"
  73. },
  74. {
  75. "name": "Storage Configuration",
  76. "description": "Configure Storage for DDNS Updater"
  77. },
  78. {
  79. "name": "Labels Configuration",
  80. "description": "Configure Labels for DDNS Updater"
  81. },
  82. {
  83. "name": "Resources Configuration",
  84. "description": "Configure Resources for DDNS Updater"
  85. }
  86. ],
  87. "questions": [
  88. {
  89. "variable": "TZ",
  90. "group": "DDNS Updater Configuration",
  91. "label": "Timezone",
  92. "schema": {
  93. "type": "string",
  94. "default": "Etc/UTC",
  95. "required": true,
  96. "$ref": [
  97. "definitions/timezone"
  98. ]
  99. }
  100. },
  101. {
  102. "variable": "ddns",
  103. "label": "",
  104. "group": "DDNS Updater Configuration",
  105. "schema": {
  106. "type": "dict",
  107. "attrs": [
  108. {
  109. "variable": "period",
  110. "label": "Update Period",
  111. "description": "Default period of IP address check, following this format:</br>\n5m = 5 minutes</br>\n1h = 1 hour</br>\n1h30m = 1 hour 30 minutes\n",
  112. "schema": {
  113. "type": "string",
  114. "default": "5m",
  115. "required": true
  116. }
  117. },
  118. {
  119. "variable": "update_cooldown_period",
  120. "label": "Update Cooldown Period",
  121. "description": "Duration to cooldown between updates for each record.\nThis is useful to avoid being rate limited or banned,\nfollowing this format:</br>\n5m = 5 minutes</br>\n1h = 1 hour</br>\n1h30m = 1 hour 30 minutes\n",
  122. "schema": {
  123. "type": "string",
  124. "default": "5m",
  125. "required": true
  126. }
  127. },
  128. {
  129. "variable": "backup_period",
  130. "label": "Backup Period",
  131. "description": "Set to a period to enable zip backups of data/config.json and\ndata/updates.json in a zip file following this format:</br>\n0 = disabled</br>\n10h = 10 hours</br>\n20h30m = 20 hours 30 minutes\n",
  132. "schema": {
  133. "type": "string",
  134. "default": "24h",
  135. "required": true
  136. }
  137. },
  138. {
  139. "variable": "http_timeout",
  140. "label": "HTTP Timeout",
  141. "description": "Default timeout for HTTP requests, following this format:</br>\n10s = 10 seconds</br>\n1m = 1 minute</br>\n1m30s = 1 minute 30 seconds\n",
  142. "schema": {
  143. "type": "string",
  144. "default": "10s",
  145. "required": true
  146. }
  147. },
  148. {
  149. "variable": "public_dns_timeout",
  150. "label": "Public IP DNS Timeout",
  151. "description": "Public IP DNS query timeout, following this format:</br>\n3s = 3 seconds</br>\n1m = 1 minute</br>\n1m30s = 1 minute 30 seconds\n",
  152. "schema": {
  153. "type": "string",
  154. "default": "3s",
  155. "required": true
  156. }
  157. },
  158. {
  159. "variable": "shoutrrr_addresses",
  160. "label": "Shoutrrr Addresses",
  161. "description": "List of Shoutrrr addresses to send notifications to.</br>\nSee https://containrrr.dev/shoutrrr/0.7/services/overview/ for more information.\n",
  162. "schema": {
  163. "type": "list",
  164. "default": [],
  165. "items": [
  166. {
  167. "variable": "address",
  168. "label": "Address",
  169. "schema": {
  170. "type": "string",
  171. "required": true
  172. }
  173. }
  174. ]
  175. }
  176. },
  177. {
  178. "variable": "public_ip_dns_providers",
  179. "label": "Public IP DNS Providers",
  180. "description": "Providers to obtain the public IP address (IPv4 and/or IPv6)",
  181. "schema": {
  182. "type": "list",
  183. "min": 1,
  184. "required": true,
  185. "default": [
  186. {
  187. "provider": "all"
  188. }
  189. ],
  190. "items": [
  191. {
  192. "variable": "publicIpDnsProviderEntry",
  193. "label": "Public IP DNS Provider Entry",
  194. "schema": {
  195. "type": "dict",
  196. "attrs": [
  197. {
  198. "variable": "provider",
  199. "label": "Provider",
  200. "schema": {
  201. "type": "string",
  202. "required": true,
  203. "enum": [
  204. {
  205. "value": "all",
  206. "description": "All providers"
  207. },
  208. {
  209. "value": "opendns",
  210. "description": "opendns"
  211. },
  212. {
  213. "value": "cloudflare",
  214. "description": "Cloudflare"
  215. }
  216. ]
  217. }
  218. }
  219. ]
  220. }
  221. }
  222. ]
  223. }
  224. },
  225. {
  226. "variable": "public_ip_http_providers",
  227. "label": "Public IP HTTP Providers",
  228. "description": "Providers to obtain the public IP address (IPv4 and/or IPv6)",
  229. "schema": {
  230. "type": "list",
  231. "min": 1,
  232. "required": true,
  233. "default": [
  234. {
  235. "provider": "all",
  236. "custom": ""
  237. }
  238. ],
  239. "items": [
  240. {
  241. "variable": "public_ip_http_provider_entry",
  242. "label": "Public IP HTTP Provider Entry",
  243. "schema": {
  244. "type": "dict",
  245. "attrs": [
  246. {
  247. "variable": "provider",
  248. "label": "Provider",
  249. "schema": {
  250. "type": "string",
  251. "required": true,
  252. "enum": [
  253. {
  254. "value": "all",
  255. "description": "All providers"
  256. },
  257. {
  258. "value": "custom",
  259. "description": "Custom Provider"
  260. },
  261. {
  262. "value": "ipify",
  263. "description": "ipify"
  264. },
  265. {
  266. "value": "ifconfig",
  267. "description": "ifconfig"
  268. },
  269. {
  270. "value": "ipinfo",
  271. "description": "ipinfo"
  272. },
  273. {
  274. "value": "spdyn",
  275. "description": "spdyn"
  276. },
  277. {
  278. "value": "ipleak",
  279. "description": "ipleak"
  280. },
  281. {
  282. "value": "icanhazip",
  283. "description": "icanhazip"
  284. },
  285. {
  286. "value": "ident",
  287. "description": "ident"
  288. },
  289. {
  290. "value": "nnev",
  291. "description": "nnev"
  292. },
  293. {
  294. "value": "wtfismyip",
  295. "description": "wtfismyip"
  296. },
  297. {
  298. "value": "seeip",
  299. "description": "seeip"
  300. },
  301. {
  302. "value": "changeip",
  303. "description": "changeip"
  304. }
  305. ]
  306. }
  307. },
  308. {
  309. "variable": "custom",
  310. "label": "Custom Value",
  311. "schema": {
  312. "type": "string",
  313. "show_if": [
  314. [
  315. "provider",
  316. "=",
  317. "custom"
  318. ]
  319. ],
  320. "default": "",
  321. "required": true
  322. }
  323. }
  324. ]
  325. }
  326. }
  327. ]
  328. }
  329. },
  330. {
  331. "variable": "public_ipv4_http_providers",
  332. "label": "Public IPv4 HTTP Providers",
  333. "description": "Providers to obtain the public IPv4 address",
  334. "schema": {
  335. "type": "list",
  336. "min": 1,
  337. "required": true,
  338. "default": [
  339. {
  340. "provider": "all",
  341. "custom": ""
  342. }
  343. ],
  344. "items": [
  345. {
  346. "variable": "public_ipv4_http_provider_entry",
  347. "label": "Public IPv4 HTTP Provider Entry",
  348. "schema": {
  349. "type": "dict",
  350. "attrs": [
  351. {
  352. "variable": "provider",
  353. "label": "Provider",
  354. "schema": {
  355. "type": "string",
  356. "required": true,
  357. "enum": [
  358. {
  359. "value": "all",
  360. "description": "All providers"
  361. },
  362. {
  363. "value": "custom",
  364. "description": "Custom Provider"
  365. },
  366. {
  367. "value": "ipleak",
  368. "description": "ipleak"
  369. },
  370. {
  371. "value": "ipify",
  372. "description": "ipify"
  373. },
  374. {
  375. "value": "icanhazip",
  376. "description": "icanhazip"
  377. },
  378. {
  379. "value": "ident",
  380. "description": "ident"
  381. },
  382. {
  383. "value": "nnev",
  384. "description": "nnev"
  385. },
  386. {
  387. "value": "wtfismyip",
  388. "description": "wtfismyip"
  389. },
  390. {
  391. "value": "seeip",
  392. "description": "seeip"
  393. }
  394. ]
  395. }
  396. },
  397. {
  398. "variable": "custom",
  399. "label": "Custom Value",
  400. "schema": {
  401. "type": "string",
  402. "show_if": [
  403. [
  404. "provider",
  405. "=",
  406. "custom"
  407. ]
  408. ],
  409. "default": "",
  410. "required": true
  411. }
  412. }
  413. ]
  414. }
  415. }
  416. ]
  417. }
  418. },
  419. {
  420. "variable": "public_ipv6_http_providers",
  421. "label": "Public IPv6 HTTP Providers",
  422. "description": "Providers to obtain the public IPv6 address",
  423. "schema": {
  424. "type": "list",
  425. "min": 1,
  426. "required": true,
  427. "default": [
  428. {
  429. "provider": "all",
  430. "custom": ""
  431. }
  432. ],
  433. "items": [
  434. {
  435. "variable": "public_ipv6_http_provider_entry",
  436. "label": "Public IPv6 HTTP Provider Entry",
  437. "schema": {
  438. "type": "dict",
  439. "attrs": [
  440. {
  441. "variable": "provider",
  442. "label": "Provider",
  443. "schema": {
  444. "type": "string",
  445. "required": true,
  446. "enum": [
  447. {
  448. "value": "all",
  449. "description": "All providers"
  450. },
  451. {
  452. "value": "custom",
  453. "description": "Custom Provider"
  454. },
  455. {
  456. "value": "ipleak",
  457. "description": "ipleak"
  458. },
  459. {
  460. "value": "ipify",
  461. "description": "ipify"
  462. },
  463. {
  464. "value": "icanhazip",
  465. "description": "icanhazip"
  466. },
  467. {
  468. "value": "ident",
  469. "description": "ident"
  470. },
  471. {
  472. "value": "nnev",
  473. "description": "nnev"
  474. },
  475. {
  476. "value": "wtfismyip",
  477. "description": "wtfismyip"
  478. },
  479. {
  480. "value": "seeip",
  481. "description": "seeip"
  482. }
  483. ]
  484. }
  485. },
  486. {
  487. "variable": "custom",
  488. "label": "Custom Value",
  489. "schema": {
  490. "type": "string",
  491. "show_if": [
  492. [
  493. "provider",
  494. "=",
  495. "custom"
  496. ]
  497. ],
  498. "default": "",
  499. "required": true
  500. }
  501. }
  502. ]
  503. }
  504. }
  505. ]
  506. }
  507. },
  508. {
  509. "variable": "public_ip_fetchers",
  510. "label": "Public IP Fetchers",
  511. "description": "Fetcher types to obtain the public IP address",
  512. "schema": {
  513. "type": "list",
  514. "min": 1,
  515. "required": true,
  516. "default": [
  517. {
  518. "provider": "all"
  519. }
  520. ],
  521. "items": [
  522. {
  523. "variable": "public_ip_fetcher_entry",
  524. "label": "Public IP Fetcher Entry",
  525. "schema": {
  526. "type": "dict",
  527. "attrs": [
  528. {
  529. "variable": "provider",
  530. "label": "Fetcher",
  531. "schema": {
  532. "type": "string",
  533. "required": true,
  534. "enum": [
  535. {
  536. "value": "all",
  537. "description": "All providers"
  538. },
  539. {
  540. "value": "http",
  541. "description": "HTTP"
  542. },
  543. {
  544. "value": "dns",
  545. "description": "DNS"
  546. }
  547. ]
  548. }
  549. }
  550. ]
  551. }
  552. }
  553. ]
  554. }
  555. },
  556. {
  557. "variable": "config",
  558. "label": "Config",
  559. "description": "Configure DDNS Updater.",
  560. "schema": {
  561. "type": "list",
  562. "items": [
  563. {
  564. "variable": "config_item",
  565. "label": "Config Item",
  566. "schema": {
  567. "type": "dict",
  568. "attrs": [
  569. {
  570. "variable": "provider",
  571. "label": "Provider",
  572. "description": "The provider to use for DDNS Updater.",
  573. "schema": {
  574. "type": "string",
  575. "required": true,
  576. "enum": [
  577. {
  578. "value": "aliyun",
  579. "description": "Aliyun"
  580. },
  581. {
  582. "value": "allinkl",
  583. "description": "All-Inkl"
  584. },
  585. {
  586. "value": "changeip",
  587. "description": "ChangeIP"
  588. },
  589. {
  590. "value": "cloudflare",
  591. "description": "Cloudflare"
  592. },
  593. {
  594. "value": "dd24",
  595. "description": "DD24"
  596. },
  597. {
  598. "value": "ddnss",
  599. "description": "DDNSS"
  600. },
  601. {
  602. "value": "desec",
  603. "description": "Desec"
  604. },
  605. {
  606. "value": "digitalocean",
  607. "description": "Digital Ocean"
  608. },
  609. {
  610. "value": "dnsomatic",
  611. "description": "DNS O Matic"
  612. },
  613. {
  614. "value": "dnspod",
  615. "description": "DNS Pod"
  616. },
  617. {
  618. "value": "domeneshop",
  619. "description": "Domeneshop"
  620. },
  621. {
  622. "value": "dondominio",
  623. "description": "Don Dominio"
  624. },
  625. {
  626. "value": "dreamhost",
  627. "description": "Dreamhost"
  628. },
  629. {
  630. "value": "duckdns",
  631. "description": "Duck DNS"
  632. },
  633. {
  634. "value": "dyn",
  635. "description": "DynDNS"
  636. },
  637. {
  638. "value": "dynu",
  639. "description": "Dynu"
  640. },
  641. {
  642. "value": "dynv6",
  643. "description": "DynV6"
  644. },
  645. {
  646. "value": "easydns",
  647. "description": "EasyDNS"
  648. },
  649. {
  650. "value": "freedns",
  651. "description": "FreeDNS"
  652. },
  653. {
  654. "value": "gandi",
  655. "description": "Gandi"
  656. },
  657. {
  658. "value": "gcp",
  659. "description": "GCP"
  660. },
  661. {
  662. "value": "godaddy",
  663. "description": "GoDaddy"
  664. },
  665. {
  666. "value": "goip",
  667. "description": "GoIP.de"
  668. },
  669. {
  670. "value": "he",
  671. "description": "He.net"
  672. },
  673. {
  674. "value": "hetzner",
  675. "description": "Hetzner"
  676. },
  677. {
  678. "value": "infomaniak",
  679. "description": "Infomaniak"
  680. },
  681. {
  682. "value": "inwx",
  683. "description": "INWX"
  684. },
  685. {
  686. "value": "ionos",
  687. "description": "Ionos"
  688. },
  689. {
  690. "value": "linode",
  691. "description": "Linode"
  692. },
  693. {
  694. "value": "loopia",
  695. "description": "Loopia"
  696. },
  697. {
  698. "value": "luadns",
  699. "description": "LuaDNS"
  700. },
  701. {
  702. "value": "myaddr",
  703. "description": "MyAddr"
  704. },
  705. {
  706. "value": "namecheap",
  707. "description": "Namecheap"
  708. },
  709. {
  710. "value": "name.com",
  711. "description": "Name.com"
  712. },
  713. {
  714. "value": "namesilo",
  715. "description": "Namesilo"
  716. },
  717. {
  718. "value": "netcup",
  719. "description": "Netcup"
  720. },
  721. {
  722. "value": "njalla",
  723. "description": "Njalla"
  724. },
  725. {
  726. "value": "noip",
  727. "description": "NoIP"
  728. },
  729. {
  730. "value": "nowdns",
  731. "description": "NowDNS"
  732. },
  733. {
  734. "value": "opendns",
  735. "description": "OpenDNS"
  736. },
  737. {
  738. "value": "ovh",
  739. "description": "OVH"
  740. },
  741. {
  742. "value": "porkbun",
  743. "description": "Porkbun"
  744. },
  745. {
  746. "value": "route53",
  747. "description": "Amazon Route 53"
  748. },
  749. {
  750. "value": "selfhost.de",
  751. "description": "Selfhost.de"
  752. },
  753. {
  754. "value": "servercow",
  755. "description": "Servercow"
  756. },
  757. {
  758. "value": "spdyn",
  759. "description": "Spdyn.de"
  760. },
  761. {
  762. "value": "strato",
  763. "description": "Strato"
  764. },
  765. {
  766. "value": "variomedia",
  767. "description": "Variomedia"
  768. },
  769. {
  770. "value": "vultr",
  771. "description": "Vultr"
  772. },
  773. {
  774. "value": "zoneedit",
  775. "description": "ZoneEdit"
  776. }
  777. ]
  778. }
  779. },
  780. {
  781. "variable": "domain",
  782. "label": "Domain",
  783. "description": "Domain </br>\nFor example:</br>\n- example.com</br>\n- *.example.com</br>\n- sub.example.com</br>\n",
  784. "schema": {
  785. "type": "string",
  786. "show_if": [
  787. [
  788. "provider",
  789. "!=",
  790. ""
  791. ]
  792. ],
  793. "required": true
  794. }
  795. },
  796. {
  797. "variable": "host",
  798. "label": "Host (Deprecated)",
  799. "description": "DEPRECATED. Use Domain field instead.</br>\nIt will be removed in the near future.\n",
  800. "schema": {
  801. "type": "string",
  802. "show_if": [
  803. [
  804. "provider",
  805. "!=",
  806. ""
  807. ]
  808. ],
  809. "default": ""
  810. }
  811. },
  812. {
  813. "variable": "ip_version",
  814. "label": "IP Version",
  815. "description": "IP Version. </br>\nFor example: IPv4\n",
  816. "schema": {
  817. "type": "string",
  818. "show_if": [
  819. [
  820. "provider",
  821. "!=",
  822. ""
  823. ]
  824. ],
  825. "default": "",
  826. "enum": [
  827. {
  828. "value": "ipv4",
  829. "description": "IPv4"
  830. },
  831. {
  832. "value": "ipv6",
  833. "description": "IPv6"
  834. },
  835. {
  836. "value": "",
  837. "description": "IPv4 and IPv6"
  838. }
  839. ]
  840. }
  841. },
  842. {
  843. "variable": "aliyun_access_key",
  844. "label": "Access Key",
  845. "schema": {
  846. "type": "string",
  847. "required": true,
  848. "private": true,
  849. "show_if": [
  850. [
  851. "provider",
  852. "=",
  853. "aliyun"
  854. ]
  855. ]
  856. }
  857. },
  858. {
  859. "variable": "aliyun_secret_key",
  860. "label": "Secret Key",
  861. "schema": {
  862. "type": "string",
  863. "required": true,
  864. "private": true,
  865. "show_if": [
  866. [
  867. "provider",
  868. "=",
  869. "aliyun"
  870. ]
  871. ]
  872. }
  873. },
  874. {
  875. "variable": "allinkl_username",
  876. "label": "Username",
  877. "schema": {
  878. "type": "string",
  879. "required": true,
  880. "show_if": [
  881. [
  882. "provider",
  883. "=",
  884. "allinkl"
  885. ]
  886. ]
  887. }
  888. },
  889. {
  890. "variable": "allinkl_password",
  891. "label": "Password",
  892. "schema": {
  893. "type": "string",
  894. "required": true,
  895. "private": true,
  896. "show_if": [
  897. [
  898. "provider",
  899. "=",
  900. "allinkl"
  901. ]
  902. ]
  903. }
  904. },
  905. {
  906. "variable": "changeip_username",
  907. "label": "Username",
  908. "schema": {
  909. "type": "string",
  910. "required": true,
  911. "show_if": [
  912. [
  913. "provider",
  914. "=",
  915. "changeip"
  916. ]
  917. ]
  918. }
  919. },
  920. {
  921. "variable": "changeip_password",
  922. "label": "Password",
  923. "schema": {
  924. "type": "string",
  925. "required": true,
  926. "private": true,
  927. "show_if": [
  928. [
  929. "provider",
  930. "=",
  931. "changeip"
  932. ]
  933. ]
  934. }
  935. },
  936. {
  937. "variable": "cloudflare_zone_id",
  938. "label": "Zone ID",
  939. "description": "You can find it in the Overview tab of your domain.",
  940. "schema": {
  941. "type": "string",
  942. "required": true,
  943. "show_if": [
  944. [
  945. "provider",
  946. "=",
  947. "cloudflare"
  948. ]
  949. ]
  950. }
  951. },
  952. {
  953. "variable": "cloudflare_ttl",
  954. "label": "TTL",
  955. "description": "1 = Automatic </br>\n600 = 10 minutes\n",
  956. "schema": {
  957. "type": "int",
  958. "required": true,
  959. "min": 1,
  960. "default": 1,
  961. "show_if": [
  962. [
  963. "provider",
  964. "=",
  965. "cloudflare"
  966. ]
  967. ]
  968. }
  969. },
  970. {
  971. "variable": "cloudflare_proxied",
  972. "label": "Proxied",
  973. "description": "True = Proxied </br>\nFalse = DNS Only\n",
  974. "schema": {
  975. "type": "boolean",
  976. "default": false,
  977. "show_if": [
  978. [
  979. "provider",
  980. "=",
  981. "cloudflare"
  982. ]
  983. ]
  984. }
  985. },
  986. {
  987. "variable": "cloudflare_token",
  988. "label": "Token",
  989. "description": "You can find it in the Overview tab of your domain.",
  990. "schema": {
  991. "type": "string",
  992. "private": true,
  993. "show_if": [
  994. [
  995. "provider",
  996. "=",
  997. "cloudflare"
  998. ]
  999. ]
  1000. }
  1001. },
  1002. {
  1003. "variable": "cloudflare_user_service_key",
  1004. "label": "User Service Key",
  1005. "description": "You can find it in the Overview tab of your domain.",
  1006. "schema": {
  1007. "type": "string",
  1008. "private": true,
  1009. "show_if": [
  1010. [
  1011. "provider",
  1012. "=",
  1013. "cloudflare"
  1014. ]
  1015. ]
  1016. }
  1017. },
  1018. {
  1019. "variable": "cloudflare_email",
  1020. "label": "Email",
  1021. "description": "You can find it in the Overview tab of your domain.",
  1022. "schema": {
  1023. "type": "string",
  1024. "private": true,
  1025. "show_if": [
  1026. [
  1027. "provider",
  1028. "=",
  1029. "cloudflare"
  1030. ]
  1031. ]
  1032. }
  1033. },
  1034. {
  1035. "variable": "cloudflare_api_key",
  1036. "label": "API Key",
  1037. "description": "You can find it in the Overview tab of your domain.",
  1038. "schema": {
  1039. "type": "string",
  1040. "private": true,
  1041. "show_if": [
  1042. [
  1043. "provider",
  1044. "=",
  1045. "cloudflare"
  1046. ]
  1047. ]
  1048. }
  1049. },
  1050. {
  1051. "variable": "dd24_password",
  1052. "label": "Password",
  1053. "schema": {
  1054. "type": "string",
  1055. "required": true,
  1056. "private": true,
  1057. "show_if": [
  1058. [
  1059. "provider",
  1060. "=",
  1061. "dd24"
  1062. ]
  1063. ]
  1064. }
  1065. },
  1066. {
  1067. "variable": "ddnss_username",
  1068. "label": "Username",
  1069. "schema": {
  1070. "type": "string",
  1071. "required": true,
  1072. "show_if": [
  1073. [
  1074. "provider",
  1075. "=",
  1076. "ddnss"
  1077. ]
  1078. ]
  1079. }
  1080. },
  1081. {
  1082. "variable": "ddnss_password",
  1083. "label": "Password",
  1084. "schema": {
  1085. "type": "string",
  1086. "required": true,
  1087. "private": true,
  1088. "show_if": [
  1089. [
  1090. "provider",
  1091. "=",
  1092. "ddnss"
  1093. ]
  1094. ]
  1095. }
  1096. },
  1097. {
  1098. "variable": "ddnss_dual_stack",
  1099. "label": "Dual Stack",
  1100. "description": "True = Dual Stack </br>\nFalse = IPv4 Only\n",
  1101. "schema": {
  1102. "type": "boolean",
  1103. "default": false,
  1104. "show_if": [
  1105. [
  1106. "provider",
  1107. "=",
  1108. "ddnss"
  1109. ]
  1110. ]
  1111. }
  1112. },
  1113. {
  1114. "variable": "desec_token",
  1115. "label": "Token",
  1116. "schema": {
  1117. "type": "string",
  1118. "required": true,
  1119. "private": true,
  1120. "show_if": [
  1121. [
  1122. "provider",
  1123. "=",
  1124. "desec"
  1125. ]
  1126. ]
  1127. }
  1128. },
  1129. {
  1130. "variable": "digital_ocean_token",
  1131. "label": "Token",
  1132. "schema": {
  1133. "type": "string",
  1134. "required": true,
  1135. "private": true,
  1136. "show_if": [
  1137. [
  1138. "provider",
  1139. "=",
  1140. "digitalocean"
  1141. ]
  1142. ]
  1143. }
  1144. },
  1145. {
  1146. "variable": "dnsomatic_username",
  1147. "label": "Username",
  1148. "schema": {
  1149. "type": "string",
  1150. "required": true,
  1151. "show_if": [
  1152. [
  1153. "provider",
  1154. "=",
  1155. "dnsomatic"
  1156. ]
  1157. ]
  1158. }
  1159. },
  1160. {
  1161. "variable": "dnsomatic_password",
  1162. "label": "Password",
  1163. "schema": {
  1164. "type": "string",
  1165. "required": true,
  1166. "private": true,
  1167. "show_if": [
  1168. [
  1169. "provider",
  1170. "=",
  1171. "dnsomatic"
  1172. ]
  1173. ]
  1174. }
  1175. },
  1176. {
  1177. "variable": "dnspod_token",
  1178. "label": "Token",
  1179. "schema": {
  1180. "type": "string",
  1181. "required": true,
  1182. "private": true,
  1183. "show_if": [
  1184. [
  1185. "provider",
  1186. "=",
  1187. "dnspod"
  1188. ]
  1189. ]
  1190. }
  1191. },
  1192. {
  1193. "variable": "domeneshop_token",
  1194. "label": "Token",
  1195. "schema": {
  1196. "type": "string",
  1197. "required": true,
  1198. "private": true,
  1199. "show_if": [
  1200. [
  1201. "provider",
  1202. "=",
  1203. "domeneshop"
  1204. ]
  1205. ]
  1206. }
  1207. },
  1208. {
  1209. "variable": "domeneshop_secret",
  1210. "label": "Secret",
  1211. "schema": {
  1212. "type": "string",
  1213. "required": true,
  1214. "private": true,
  1215. "show_if": [
  1216. [
  1217. "provider",
  1218. "=",
  1219. "domeneshop"
  1220. ]
  1221. ]
  1222. }
  1223. },
  1224. {
  1225. "variable": "dondominio_username",
  1226. "label": "Username",
  1227. "schema": {
  1228. "type": "string",
  1229. "required": true,
  1230. "show_if": [
  1231. [
  1232. "provider",
  1233. "=",
  1234. "dondominio"
  1235. ]
  1236. ]
  1237. }
  1238. },
  1239. {
  1240. "variable": "dondominio_password",
  1241. "label": "Password",
  1242. "schema": {
  1243. "type": "string",
  1244. "required": true,
  1245. "private": true,
  1246. "show_if": [
  1247. [
  1248. "provider",
  1249. "=",
  1250. "dondominio"
  1251. ]
  1252. ]
  1253. }
  1254. },
  1255. {
  1256. "variable": "dreamhost_key",
  1257. "label": "Key",
  1258. "schema": {
  1259. "type": "string",
  1260. "required": true,
  1261. "private": true,
  1262. "show_if": [
  1263. [
  1264. "provider",
  1265. "=",
  1266. "dreamhost"
  1267. ]
  1268. ]
  1269. }
  1270. },
  1271. {
  1272. "variable": "duckdns_token",
  1273. "label": "Token",
  1274. "schema": {
  1275. "type": "string",
  1276. "required": true,
  1277. "private": true,
  1278. "show_if": [
  1279. [
  1280. "provider",
  1281. "=",
  1282. "duckdns"
  1283. ]
  1284. ]
  1285. }
  1286. },
  1287. {
  1288. "variable": "dyn_client_key",
  1289. "label": "Client Key",
  1290. "schema": {
  1291. "type": "string",
  1292. "required": true,
  1293. "show_if": [
  1294. [
  1295. "provider",
  1296. "=",
  1297. "dyn"
  1298. ]
  1299. ]
  1300. }
  1301. },
  1302. {
  1303. "variable": "dyn_username",
  1304. "label": "Username",
  1305. "schema": {
  1306. "type": "string",
  1307. "required": true,
  1308. "show_if": [
  1309. [
  1310. "provider",
  1311. "=",
  1312. "dyn"
  1313. ]
  1314. ]
  1315. }
  1316. },
  1317. {
  1318. "variable": "dynu_username",
  1319. "label": "Username",
  1320. "schema": {
  1321. "type": "string",
  1322. "required": true,
  1323. "show_if": [
  1324. [
  1325. "provider",
  1326. "=",
  1327. "dynu"
  1328. ]
  1329. ]
  1330. }
  1331. },
  1332. {
  1333. "variable": "dynu_password",
  1334. "label": "Password",
  1335. "schema": {
  1336. "type": "string",
  1337. "required": true,
  1338. "private": true,
  1339. "show_if": [
  1340. [
  1341. "provider",
  1342. "=",
  1343. "dynu"
  1344. ]
  1345. ]
  1346. }
  1347. },
  1348. {
  1349. "variable": "dynu_group",
  1350. "label": "Group",
  1351. "schema": {
  1352. "type": "string",
  1353. "show_if": [
  1354. [
  1355. "provider",
  1356. "=",
  1357. "dynu"
  1358. ]
  1359. ]
  1360. }
  1361. },
  1362. {
  1363. "variable": "dynv6_token",
  1364. "label": "Token",
  1365. "schema": {
  1366. "type": "string",
  1367. "required": true,
  1368. "private": true,
  1369. "show_if": [
  1370. [
  1371. "provider",
  1372. "=",
  1373. "dynv6"
  1374. ]
  1375. ]
  1376. }
  1377. },
  1378. {
  1379. "variable": "easydns_username",
  1380. "label": "Username",
  1381. "schema": {
  1382. "type": "string",
  1383. "required": true,
  1384. "show_if": [
  1385. [
  1386. "provider",
  1387. "=",
  1388. "easydns"
  1389. ]
  1390. ]
  1391. }
  1392. },
  1393. {
  1394. "variable": "easydns_token",
  1395. "label": "Token",
  1396. "schema": {
  1397. "type": "string",
  1398. "required": true,
  1399. "private": true,
  1400. "show_if": [
  1401. [
  1402. "provider",
  1403. "=",
  1404. "easydns"
  1405. ]
  1406. ]
  1407. }
  1408. },
  1409. {
  1410. "variable": "freedns_token",
  1411. "label": "Token",
  1412. "schema": {
  1413. "type": "string",
  1414. "required": true,
  1415. "private": true,
  1416. "show_if": [
  1417. [
  1418. "provider",
  1419. "=",
  1420. "freedns"
  1421. ]
  1422. ]
  1423. }
  1424. },
  1425. {
  1426. "variable": "gandi_key",
  1427. "label": "API Key (Deprecated)",
  1428. "description": "Use Personal Access Token instead.",
  1429. "schema": {
  1430. "type": "string",
  1431. "private": true,
  1432. "show_if": [
  1433. [
  1434. "provider",
  1435. "=",
  1436. "gandi"
  1437. ]
  1438. ]
  1439. }
  1440. },
  1441. {
  1442. "variable": "gandi_personal_access_token",
  1443. "label": "Personal Access Token",
  1444. "schema": {
  1445. "type": "string",
  1446. "private": true,
  1447. "show_if": [
  1448. [
  1449. "provider",
  1450. "=",
  1451. "gandi"
  1452. ]
  1453. ]
  1454. }
  1455. },
  1456. {
  1457. "variable": "gandi_ttl",
  1458. "label": "TTL",
  1459. "schema": {
  1460. "type": "int",
  1461. "required": true,
  1462. "default": 3600,
  1463. "show_if": [
  1464. [
  1465. "provider",
  1466. "=",
  1467. "gandi"
  1468. ]
  1469. ]
  1470. }
  1471. },
  1472. {
  1473. "variable": "gcp_project",
  1474. "label": "Project",
  1475. "schema": {
  1476. "type": "string",
  1477. "required": true,
  1478. "show_if": [
  1479. [
  1480. "provider",
  1481. "=",
  1482. "gcp"
  1483. ]
  1484. ]
  1485. }
  1486. },
  1487. {
  1488. "variable": "gcp_zone",
  1489. "label": "Zone",
  1490. "schema": {
  1491. "type": "string",
  1492. "required": true,
  1493. "show_if": [
  1494. [
  1495. "provider",
  1496. "=",
  1497. "gcp"
  1498. ]
  1499. ]
  1500. }
  1501. },
  1502. {
  1503. "variable": "gcp_credentials",
  1504. "label": "Credentials",
  1505. "schema": {
  1506. "type": "string",
  1507. "required": true,
  1508. "private": true,
  1509. "max_length": 10000,
  1510. "show_if": [
  1511. [
  1512. "provider",
  1513. "=",
  1514. "gcp"
  1515. ]
  1516. ]
  1517. }
  1518. },
  1519. {
  1520. "variable": "godaddy_key",
  1521. "label": "API Key",
  1522. "schema": {
  1523. "type": "string",
  1524. "required": true,
  1525. "private": true,
  1526. "show_if": [
  1527. [
  1528. "provider",
  1529. "=",
  1530. "godaddy"
  1531. ]
  1532. ]
  1533. }
  1534. },
  1535. {
  1536. "variable": "godaddy_secret",
  1537. "label": "Secret",
  1538. "schema": {
  1539. "type": "string",
  1540. "required": true,
  1541. "private": true,
  1542. "show_if": [
  1543. [
  1544. "provider",
  1545. "=",
  1546. "godaddy"
  1547. ]
  1548. ]
  1549. }
  1550. },
  1551. {
  1552. "variable": "goip_username",
  1553. "label": "Username",
  1554. "schema": {
  1555. "type": "string",
  1556. "required": true,
  1557. "show_if": [
  1558. [
  1559. "provider",
  1560. "=",
  1561. "goip"
  1562. ]
  1563. ]
  1564. }
  1565. },
  1566. {
  1567. "variable": "goip_password",
  1568. "label": "Password",
  1569. "schema": {
  1570. "type": "string",
  1571. "required": true,
  1572. "private": true,
  1573. "show_if": [
  1574. [
  1575. "provider",
  1576. "=",
  1577. "goip"
  1578. ]
  1579. ]
  1580. }
  1581. },
  1582. {
  1583. "variable": "he_password",
  1584. "label": "Password",
  1585. "schema": {
  1586. "type": "string",
  1587. "required": true,
  1588. "private": true,
  1589. "show_if": [
  1590. [
  1591. "provider",
  1592. "=",
  1593. "he"
  1594. ]
  1595. ]
  1596. }
  1597. },
  1598. {
  1599. "variable": "hetzner_token",
  1600. "label": "Token",
  1601. "schema": {
  1602. "type": "string",
  1603. "required": true,
  1604. "private": true,
  1605. "show_if": [
  1606. [
  1607. "provider",
  1608. "=",
  1609. "hetzner"
  1610. ]
  1611. ]
  1612. }
  1613. },
  1614. {
  1615. "variable": "hetzner_zone_identifier",
  1616. "label": "Zone Identifier",
  1617. "schema": {
  1618. "type": "string",
  1619. "required": true,
  1620. "show_if": [
  1621. [
  1622. "provider",
  1623. "=",
  1624. "hetzner"
  1625. ]
  1626. ]
  1627. }
  1628. },
  1629. {
  1630. "variable": "hetzner_ttl",
  1631. "label": "TTL",
  1632. "schema": {
  1633. "type": "int",
  1634. "show_if": [
  1635. [
  1636. "provider",
  1637. "=",
  1638. "hetzner"
  1639. ]
  1640. ]
  1641. }
  1642. },
  1643. {
  1644. "variable": "infomaniak_username",
  1645. "label": "Username",
  1646. "schema": {
  1647. "type": "string",
  1648. "required": true,
  1649. "show_if": [
  1650. [
  1651. "provider",
  1652. "=",
  1653. "infomaniak"
  1654. ]
  1655. ]
  1656. }
  1657. },
  1658. {
  1659. "variable": "infomaniak_password",
  1660. "label": "Password",
  1661. "schema": {
  1662. "type": "string",
  1663. "required": true,
  1664. "private": true,
  1665. "show_if": [
  1666. [
  1667. "provider",
  1668. "=",
  1669. "infomaniak"
  1670. ]
  1671. ]
  1672. }
  1673. },
  1674. {
  1675. "variable": "inwx_username",
  1676. "label": "Username",
  1677. "schema": {
  1678. "type": "string",
  1679. "required": true,
  1680. "show_if": [
  1681. [
  1682. "provider",
  1683. "=",
  1684. "inwx"
  1685. ]
  1686. ]
  1687. }
  1688. },
  1689. {
  1690. "variable": "inwx_password",
  1691. "label": "Password",
  1692. "schema": {
  1693. "type": "string",
  1694. "required": true,
  1695. "private": true,
  1696. "show_if": [
  1697. [
  1698. "provider",
  1699. "=",
  1700. "inwx"
  1701. ]
  1702. ]
  1703. }
  1704. },
  1705. {
  1706. "variable": "ionos_api_key",
  1707. "label": "API Key",
  1708. "schema": {
  1709. "type": "string",
  1710. "required": true,
  1711. "private": true,
  1712. "show_if": [
  1713. [
  1714. "provider",
  1715. "=",
  1716. "ionos"
  1717. ]
  1718. ]
  1719. }
  1720. },
  1721. {
  1722. "variable": "linode_token",
  1723. "label": "Token",
  1724. "schema": {
  1725. "type": "string",
  1726. "required": true,
  1727. "private": true,
  1728. "show_if": [
  1729. [
  1730. "provider",
  1731. "=",
  1732. "linode"
  1733. ]
  1734. ]
  1735. }
  1736. },
  1737. {
  1738. "variable": "loopia_username",
  1739. "label": "Username",
  1740. "schema": {
  1741. "type": "string",
  1742. "required": true,
  1743. "show_if": [
  1744. [
  1745. "provider",
  1746. "=",
  1747. "loopia"
  1748. ]
  1749. ]
  1750. }
  1751. },
  1752. {
  1753. "variable": "loopia_password",
  1754. "label": "Password",
  1755. "schema": {
  1756. "type": "string",
  1757. "required": true,
  1758. "private": true,
  1759. "show_if": [
  1760. [
  1761. "provider",
  1762. "=",
  1763. "loopia"
  1764. ]
  1765. ]
  1766. }
  1767. },
  1768. {
  1769. "variable": "luadns_token",
  1770. "label": "Token",
  1771. "schema": {
  1772. "type": "string",
  1773. "required": true,
  1774. "private": true,
  1775. "show_if": [
  1776. [
  1777. "provider",
  1778. "=",
  1779. "luadns"
  1780. ]
  1781. ]
  1782. }
  1783. },
  1784. {
  1785. "variable": "luadns_email",
  1786. "label": "Email",
  1787. "schema": {
  1788. "type": "string",
  1789. "required": true,
  1790. "show_if": [
  1791. [
  1792. "provider",
  1793. "=",
  1794. "luadns"
  1795. ]
  1796. ]
  1797. }
  1798. },
  1799. {
  1800. "variable": "myaddr_key",
  1801. "label": "Key",
  1802. "schema": {
  1803. "type": "string",
  1804. "required": true,
  1805. "private": true,
  1806. "show_if": [
  1807. [
  1808. "provider",
  1809. "=",
  1810. "myaddr"
  1811. ]
  1812. ]
  1813. }
  1814. },
  1815. {
  1816. "variable": "namecheap_password",
  1817. "label": "Password",
  1818. "schema": {
  1819. "type": "string",
  1820. "required": true,
  1821. "private": true,
  1822. "show_if": [
  1823. [
  1824. "provider",
  1825. "=",
  1826. "namecheap"
  1827. ]
  1828. ]
  1829. }
  1830. },
  1831. {
  1832. "variable": "namecom_token",
  1833. "label": "Token",
  1834. "schema": {
  1835. "type": "string",
  1836. "required": true,
  1837. "private": true,
  1838. "show_if": [
  1839. [
  1840. "provider",
  1841. "=",
  1842. "name.com"
  1843. ]
  1844. ]
  1845. }
  1846. },
  1847. {
  1848. "variable": "namecom_username",
  1849. "label": "Username",
  1850. "schema": {
  1851. "type": "string",
  1852. "required": true,
  1853. "show_if": [
  1854. [
  1855. "provider",
  1856. "=",
  1857. "name.com"
  1858. ]
  1859. ]
  1860. }
  1861. },
  1862. {
  1863. "variable": "namecom_ttl",
  1864. "label": "TTL",
  1865. "schema": {
  1866. "type": "int",
  1867. "required": true,
  1868. "default": 300,
  1869. "show_if": [
  1870. [
  1871. "provider",
  1872. "=",
  1873. "name.com"
  1874. ]
  1875. ]
  1876. }
  1877. },
  1878. {
  1879. "variable": "namesilo_key",
  1880. "label": "Key",
  1881. "schema": {
  1882. "type": "string",
  1883. "required": true,
  1884. "private": true,
  1885. "show_if": [
  1886. [
  1887. "provider",
  1888. "=",
  1889. "namesilo"
  1890. ]
  1891. ]
  1892. }
  1893. },
  1894. {
  1895. "variable": "namesilo_ttl",
  1896. "label": "TTL",
  1897. "schema": {
  1898. "type": "int",
  1899. "min": 3600,
  1900. "max": 2592001,
  1901. "show_if": [
  1902. [
  1903. "provider",
  1904. "=",
  1905. "namesilo"
  1906. ]
  1907. ]
  1908. }
  1909. },
  1910. {
  1911. "variable": "netcup_api_key",
  1912. "label": "API Key",
  1913. "schema": {
  1914. "type": "string",
  1915. "required": true,
  1916. "private": true,
  1917. "show_if": [
  1918. [
  1919. "provider",
  1920. "=",
  1921. "netcup"
  1922. ]
  1923. ]
  1924. }
  1925. },
  1926. {
  1927. "variable": "netcup_password",
  1928. "label": "Password",
  1929. "schema": {
  1930. "type": "string",
  1931. "required": true,
  1932. "private": true,
  1933. "show_if": [
  1934. [
  1935. "provider",
  1936. "=",
  1937. "netcup"
  1938. ]
  1939. ]
  1940. }
  1941. },
  1942. {
  1943. "variable": "netcup_customer_number",
  1944. "label": "Customer Number",
  1945. "schema": {
  1946. "type": "string",
  1947. "required": true,
  1948. "show_if": [
  1949. [
  1950. "provider",
  1951. "=",
  1952. "netcup"
  1953. ]
  1954. ]
  1955. }
  1956. },
  1957. {
  1958. "variable": "njalla_key",
  1959. "label": "Key",
  1960. "schema": {
  1961. "type": "string",
  1962. "required": true,
  1963. "private": true,
  1964. "show_if": [
  1965. [
  1966. "provider",
  1967. "=",
  1968. "njalla"
  1969. ]
  1970. ]
  1971. }
  1972. },
  1973. {
  1974. "variable": "noip_username",
  1975. "label": "Username",
  1976. "schema": {
  1977. "type": "string",
  1978. "required": true,
  1979. "show_if": [
  1980. [
  1981. "provider",
  1982. "=",
  1983. "noip"
  1984. ]
  1985. ]
  1986. }
  1987. },
  1988. {
  1989. "variable": "noip_password",
  1990. "label": "Password",
  1991. "schema": {
  1992. "type": "string",
  1993. "required": true,
  1994. "private": true,
  1995. "show_if": [
  1996. [
  1997. "provider",
  1998. "=",
  1999. "noip"
  2000. ]
  2001. ]
  2002. }
  2003. },
  2004. {
  2005. "variable": "nowdns_username",
  2006. "label": "Username",
  2007. "schema": {
  2008. "type": "string",
  2009. "required": true,
  2010. "show_if": [
  2011. [
  2012. "provider",
  2013. "=",
  2014. "nowdns"
  2015. ]
  2016. ]
  2017. }
  2018. },
  2019. {
  2020. "variable": "nowdns_password",
  2021. "label": "Password",
  2022. "schema": {
  2023. "type": "string",
  2024. "required": true,
  2025. "private": true,
  2026. "show_if": [
  2027. [
  2028. "provider",
  2029. "=",
  2030. "nowdns"
  2031. ]
  2032. ]
  2033. }
  2034. },
  2035. {
  2036. "variable": "opendns_username",
  2037. "label": "Username",
  2038. "schema": {
  2039. "type": "string",
  2040. "required": true,
  2041. "show_if": [
  2042. [
  2043. "provider",
  2044. "=",
  2045. "opendns"
  2046. ]
  2047. ]
  2048. }
  2049. },
  2050. {
  2051. "variable": "opendns_password",
  2052. "label": "Password",
  2053. "schema": {
  2054. "type": "string",
  2055. "required": true,
  2056. "private": true,
  2057. "show_if": [
  2058. [
  2059. "provider",
  2060. "=",
  2061. "opendns"
  2062. ]
  2063. ]
  2064. }
  2065. },
  2066. {
  2067. "variable": "ovh_mode",
  2068. "label": "Mode",
  2069. "schema": {
  2070. "type": "string",
  2071. "required": true,
  2072. "show_if": [
  2073. [
  2074. "provider",
  2075. "=",
  2076. "ovh"
  2077. ]
  2078. ],
  2079. "enum": [
  2080. {
  2081. "value": "api",
  2082. "description": "API"
  2083. },
  2084. {
  2085. "value": "dynamic",
  2086. "description": "Dynamic"
  2087. }
  2088. ]
  2089. }
  2090. },
  2091. {
  2092. "variable": "ovh_username",
  2093. "label": "Username",
  2094. "schema": {
  2095. "type": "string",
  2096. "show_if": [
  2097. [
  2098. "provider",
  2099. "=",
  2100. "ovh"
  2101. ]
  2102. ]
  2103. }
  2104. },
  2105. {
  2106. "variable": "ovh_password",
  2107. "label": "Password",
  2108. "schema": {
  2109. "type": "string",
  2110. "private": true,
  2111. "show_if": [
  2112. [
  2113. "provider",
  2114. "=",
  2115. "ovh"
  2116. ]
  2117. ]
  2118. }
  2119. },
  2120. {
  2121. "variable": "ovh_api_endpoint",
  2122. "label": "API Endpoint",
  2123. "schema": {
  2124. "type": "string",
  2125. "show_if": [
  2126. [
  2127. "provider",
  2128. "=",
  2129. "ovh"
  2130. ]
  2131. ]
  2132. }
  2133. },
  2134. {
  2135. "variable": "ovh_app_key",
  2136. "label": "App Key",
  2137. "schema": {
  2138. "type": "string",
  2139. "private": true,
  2140. "show_if": [
  2141. [
  2142. "provider",
  2143. "=",
  2144. "ovh"
  2145. ]
  2146. ]
  2147. }
  2148. },
  2149. {
  2150. "variable": "ovh_app_secret",
  2151. "label": "App Secret",
  2152. "schema": {
  2153. "type": "string",
  2154. "private": true,
  2155. "show_if": [
  2156. [
  2157. "provider",
  2158. "=",
  2159. "ovh"
  2160. ]
  2161. ]
  2162. }
  2163. },
  2164. {
  2165. "variable": "ovh_consumer_key",
  2166. "label": "Consumer Key",
  2167. "schema": {
  2168. "type": "string",
  2169. "private": true,
  2170. "show_if": [
  2171. [
  2172. "provider",
  2173. "=",
  2174. "ovh"
  2175. ]
  2176. ]
  2177. }
  2178. },
  2179. {
  2180. "variable": "porkbun_api_key",
  2181. "label": "API Key",
  2182. "schema": {
  2183. "type": "string",
  2184. "required": true,
  2185. "private": true,
  2186. "show_if": [
  2187. [
  2188. "provider",
  2189. "=",
  2190. "porkbun"
  2191. ]
  2192. ]
  2193. }
  2194. },
  2195. {
  2196. "variable": "porkbun_secret_api_key",
  2197. "label": "Secret API Key",
  2198. "schema": {
  2199. "type": "string",
  2200. "required": true,
  2201. "private": true,
  2202. "show_if": [
  2203. [
  2204. "provider",
  2205. "=",
  2206. "porkbun"
  2207. ]
  2208. ]
  2209. }
  2210. },
  2211. {
  2212. "variable": "porkbun_ttl",
  2213. "label": "TTL",
  2214. "schema": {
  2215. "type": "int",
  2216. "default": 3600,
  2217. "show_if": [
  2218. [
  2219. "provider",
  2220. "=",
  2221. "porkbun"
  2222. ]
  2223. ]
  2224. }
  2225. },
  2226. {
  2227. "variable": "route53_access_key",
  2228. "label": "Access Key",
  2229. "schema": {
  2230. "type": "string",
  2231. "required": true,
  2232. "private": true,
  2233. "show_if": [
  2234. [
  2235. "provider",
  2236. "=",
  2237. "route53"
  2238. ]
  2239. ]
  2240. }
  2241. },
  2242. {
  2243. "variable": "route53_secret_key",
  2244. "label": "Secret Key",
  2245. "schema": {
  2246. "type": "string",
  2247. "required": true,
  2248. "private": true,
  2249. "show_if": [
  2250. [
  2251. "provider",
  2252. "=",
  2253. "route53"
  2254. ]
  2255. ]
  2256. }
  2257. },
  2258. {
  2259. "variable": "route53_zone_id",
  2260. "label": "Zone ID",
  2261. "schema": {
  2262. "type": "string",
  2263. "required": true,
  2264. "private": true,
  2265. "show_if": [
  2266. [
  2267. "provider",
  2268. "=",
  2269. "route53"
  2270. ]
  2271. ]
  2272. }
  2273. },
  2274. {
  2275. "variable": "route53_ttl",
  2276. "label": "TTL",
  2277. "schema": {
  2278. "type": "int",
  2279. "default": 300,
  2280. "show_if": [
  2281. [
  2282. "provider",
  2283. "=",
  2284. "route53"
  2285. ]
  2286. ]
  2287. }
  2288. },
  2289. {
  2290. "variable": "selfhostde_username",
  2291. "label": "Username",
  2292. "schema": {
  2293. "type": "string",
  2294. "required": true,
  2295. "show_if": [
  2296. [
  2297. "provider",
  2298. "=",
  2299. "selfhost.de"
  2300. ]
  2301. ]
  2302. }
  2303. },
  2304. {
  2305. "variable": "selfhostde_password",
  2306. "label": "Password",
  2307. "schema": {
  2308. "type": "string",
  2309. "required": true,
  2310. "private": true,
  2311. "show_if": [
  2312. [
  2313. "provider",
  2314. "=",
  2315. "selfhost.de"
  2316. ]
  2317. ]
  2318. }
  2319. },
  2320. {
  2321. "variable": "servercow_username",
  2322. "label": "Username",
  2323. "schema": {
  2324. "type": "string",
  2325. "required": true,
  2326. "show_if": [
  2327. [
  2328. "provider",
  2329. "=",
  2330. "servercow"
  2331. ]
  2332. ]
  2333. }
  2334. },
  2335. {
  2336. "variable": "servercow_password",
  2337. "label": "Password",
  2338. "schema": {
  2339. "type": "string",
  2340. "required": true,
  2341. "private": true,
  2342. "show_if": [
  2343. [
  2344. "provider",
  2345. "=",
  2346. "servercow"
  2347. ]
  2348. ]
  2349. }
  2350. },
  2351. {
  2352. "variable": "servercow_ttl",
  2353. "label": "TTL",
  2354. "schema": {
  2355. "type": "int",
  2356. "required": true,
  2357. "default": 120,
  2358. "show_if": [
  2359. [
  2360. "provider",
  2361. "=",
  2362. "servercow"
  2363. ]
  2364. ]
  2365. }
  2366. },
  2367. {
  2368. "variable": "spdyn_token",
  2369. "label": "Token",
  2370. "schema": {
  2371. "type": "string",
  2372. "private": true,
  2373. "show_if": [
  2374. [
  2375. "provider",
  2376. "=",
  2377. "spdyn"
  2378. ]
  2379. ]
  2380. }
  2381. },
  2382. {
  2383. "variable": "spdyn_username",
  2384. "label": "Username",
  2385. "schema": {
  2386. "type": "string",
  2387. "show_if": [
  2388. [
  2389. "provider",
  2390. "=",
  2391. "spdyn"
  2392. ]
  2393. ]
  2394. }
  2395. },
  2396. {
  2397. "variable": "spdyn_password",
  2398. "label": "Password",
  2399. "schema": {
  2400. "type": "string",
  2401. "private": true,
  2402. "show_if": [
  2403. [
  2404. "provider",
  2405. "=",
  2406. "spdyn"
  2407. ]
  2408. ]
  2409. }
  2410. },
  2411. {
  2412. "variable": "strato_password",
  2413. "label": "Password",
  2414. "schema": {
  2415. "type": "string",
  2416. "required": true,
  2417. "private": true,
  2418. "show_if": [
  2419. [
  2420. "provider",
  2421. "=",
  2422. "strato"
  2423. ]
  2424. ]
  2425. }
  2426. },
  2427. {
  2428. "variable": "variomedia_email",
  2429. "label": "Email",
  2430. "schema": {
  2431. "type": "string",
  2432. "required": true,
  2433. "show_if": [
  2434. [
  2435. "provider",
  2436. "=",
  2437. "variomedia"
  2438. ]
  2439. ]
  2440. }
  2441. },
  2442. {
  2443. "variable": "variomedia_password",
  2444. "label": "Password",
  2445. "schema": {
  2446. "type": "string",
  2447. "required": true,
  2448. "private": true,
  2449. "show_if": [
  2450. [
  2451. "provider",
  2452. "=",
  2453. "variomedia"
  2454. ]
  2455. ]
  2456. }
  2457. },
  2458. {
  2459. "variable": "vultr_api_key",
  2460. "label": "API Key",
  2461. "schema": {
  2462. "type": "string",
  2463. "required": true,
  2464. "private": true,
  2465. "show_if": [
  2466. [
  2467. "provider",
  2468. "=",
  2469. "vultr"
  2470. ]
  2471. ]
  2472. }
  2473. },
  2474. {
  2475. "variable": "vultr_ttl",
  2476. "label": "TTL",
  2477. "schema": {
  2478. "type": "int",
  2479. "show_if": [
  2480. [
  2481. "provider",
  2482. "=",
  2483. "vultr"
  2484. ]
  2485. ]
  2486. }
  2487. },
  2488. {
  2489. "variable": "zoneedit_username",
  2490. "label": "Username",
  2491. "schema": {
  2492. "type": "string",
  2493. "required": true,
  2494. "show_if": [
  2495. [
  2496. "provider",
  2497. "=",
  2498. "zoneedit"
  2499. ]
  2500. ]
  2501. }
  2502. },
  2503. {
  2504. "variable": "zoneedit_token",
  2505. "label": "Token",
  2506. "schema": {
  2507. "type": "string",
  2508. "required": true,
  2509. "private": true,
  2510. "show_if": [
  2511. [
  2512. "provider",
  2513. "=",
  2514. "zoneedit"
  2515. ]
  2516. ]
  2517. }
  2518. }
  2519. ]
  2520. }
  2521. }
  2522. ]
  2523. }
  2524. },
  2525. {
  2526. "variable": "additional_envs",
  2527. "label": "Additional Environment Variables",
  2528. "schema": {
  2529. "type": "list",
  2530. "default": [],
  2531. "items": [
  2532. {
  2533. "variable": "env",
  2534. "label": "Environment Variable",
  2535. "schema": {
  2536. "type": "dict",
  2537. "attrs": [
  2538. {
  2539. "variable": "name",
  2540. "label": "Name",
  2541. "schema": {
  2542. "type": "string",
  2543. "required": true
  2544. }
  2545. },
  2546. {
  2547. "variable": "value",
  2548. "label": "Value",
  2549. "schema": {
  2550. "type": "string"
  2551. }
  2552. }
  2553. ]
  2554. }
  2555. }
  2556. ]
  2557. }
  2558. }
  2559. ]
  2560. }
  2561. },
  2562. {
  2563. "variable": "run_as",
  2564. "label": "",
  2565. "group": "User and Group Configuration",
  2566. "schema": {
  2567. "type": "dict",
  2568. "attrs": [
  2569. {
  2570. "variable": "user",
  2571. "label": "User ID",
  2572. "description": "The user id that DDNS Updater files will be owned by.",
  2573. "schema": {
  2574. "type": "int",
  2575. "min": 568,
  2576. "default": 568,
  2577. "required": true
  2578. }
  2579. },
  2580. {
  2581. "variable": "group",
  2582. "label": "Group ID",
  2583. "description": "The group id that DDNS Updater files will be owned by.",
  2584. "schema": {
  2585. "type": "int",
  2586. "min": 568,
  2587. "default": 568,
  2588. "required": true
  2589. }
  2590. }
  2591. ]
  2592. }
  2593. },
  2594. {
  2595. "variable": "network",
  2596. "label": "",
  2597. "group": "Network Configuration",
  2598. "schema": {
  2599. "type": "dict",
  2600. "attrs": [
  2601. {
  2602. "variable": "web_port",
  2603. "label": "WebUI Port",
  2604. "schema": {
  2605. "type": "dict",
  2606. "attrs": [
  2607. {
  2608. "variable": "bind_mode",
  2609. "label": "Port Bind Mode",
  2610. "description": "The port bind mode.</br>\n- Publish: The port will be published on the host for external access.</br>\n- Expose: The port will be exposed for inter-container communication.</br>\n- None: The port will not be exposed or published.</br>\nNote: If the Dockerfile defines an EXPOSE directive,\nthe port will still be exposed for inter-container communication regardless of this setting.\n",
  2611. "schema": {
  2612. "type": "string",
  2613. "default": "published",
  2614. "enum": [
  2615. {
  2616. "value": "published",
  2617. "description": "Publish port on the host for external access"
  2618. },
  2619. {
  2620. "value": "exposed",
  2621. "description": "Expose port for inter-container communication"
  2622. },
  2623. {
  2624. "value": "",
  2625. "description": "None"
  2626. }
  2627. ]
  2628. }
  2629. },
  2630. {
  2631. "variable": "port_number",
  2632. "label": "Port Number",
  2633. "schema": {
  2634. "type": "int",
  2635. "default": 30007,
  2636. "min": 1,
  2637. "max": 65535,
  2638. "required": true
  2639. }
  2640. },
  2641. {
  2642. "variable": "host_ips",
  2643. "label": "Host IPs",
  2644. "description": "IPs on the host to bind this port",
  2645. "schema": {
  2646. "type": "list",
  2647. "show_if": [
  2648. [
  2649. "bind_mode",
  2650. "=",
  2651. "published"
  2652. ]
  2653. ],
  2654. "default": [],
  2655. "items": [
  2656. {
  2657. "variable": "host_ip",
  2658. "label": "Host IP",
  2659. "schema": {
  2660. "type": "string",
  2661. "required": true,
  2662. "$ref": [
  2663. "definitions/node_bind_ip"
  2664. ]
  2665. }
  2666. }
  2667. ]
  2668. }
  2669. }
  2670. ]
  2671. }
  2672. },
  2673. {
  2674. "variable": "host_network",
  2675. "label": "Host Network",
  2676. "description": "Bind to the host network. It's recommended to keep this disabled.\n",
  2677. "schema": {
  2678. "type": "boolean",
  2679. "default": false
  2680. }
  2681. }
  2682. ]
  2683. }
  2684. },
  2685. {
  2686. "variable": "storage",
  2687. "label": "",
  2688. "group": "Storage Configuration",
  2689. "schema": {
  2690. "type": "dict",
  2691. "attrs": [
  2692. {
  2693. "variable": "data",
  2694. "label": "DDNS Updater Data Storage",
  2695. "description": "The path to store DDNS Updater Data.",
  2696. "schema": {
  2697. "type": "dict",
  2698. "attrs": [
  2699. {
  2700. "variable": "type",
  2701. "label": "Type",
  2702. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  2703. "schema": {
  2704. "type": "string",
  2705. "required": true,
  2706. "default": "ix_volume",
  2707. "enum": [
  2708. {
  2709. "value": "host_path",
  2710. "description": "Host Path (Path that already exists on the system)"
  2711. },
  2712. {
  2713. "value": "ix_volume",
  2714. "description": "ixVolume (Dataset created automatically by the system)"
  2715. }
  2716. ]
  2717. }
  2718. },
  2719. {
  2720. "variable": "ix_volume_config",
  2721. "label": "ixVolume Configuration",
  2722. "description": "The configuration for the ixVolume dataset.",
  2723. "schema": {
  2724. "type": "dict",
  2725. "show_if": [
  2726. [
  2727. "type",
  2728. "=",
  2729. "ix_volume"
  2730. ]
  2731. ],
  2732. "$ref": [
  2733. "normalize/ix_volume"
  2734. ],
  2735. "attrs": [
  2736. {
  2737. "variable": "acl_enable",
  2738. "label": "Enable ACL",
  2739. "description": "Enable ACL for the storage.",
  2740. "schema": {
  2741. "type": "boolean",
  2742. "default": false
  2743. }
  2744. },
  2745. {
  2746. "variable": "dataset_name",
  2747. "label": "Dataset Name",
  2748. "description": "The name of the dataset to use for storage.",
  2749. "schema": {
  2750. "type": "string",
  2751. "required": true,
  2752. "hidden": true,
  2753. "default": "data"
  2754. }
  2755. },
  2756. {
  2757. "variable": "acl_entries",
  2758. "label": "ACL Configuration",
  2759. "schema": {
  2760. "type": "dict",
  2761. "show_if": [
  2762. [
  2763. "acl_enable",
  2764. "=",
  2765. true
  2766. ]
  2767. ],
  2768. "attrs": []
  2769. }
  2770. }
  2771. ]
  2772. }
  2773. },
  2774. {
  2775. "variable": "host_path_config",
  2776. "label": "Host Path Configuration",
  2777. "schema": {
  2778. "type": "dict",
  2779. "show_if": [
  2780. [
  2781. "type",
  2782. "=",
  2783. "host_path"
  2784. ]
  2785. ],
  2786. "attrs": [
  2787. {
  2788. "variable": "acl_enable",
  2789. "label": "Enable ACL",
  2790. "description": "Enable ACL for the storage.",
  2791. "schema": {
  2792. "type": "boolean",
  2793. "default": false
  2794. }
  2795. },
  2796. {
  2797. "variable": "acl",
  2798. "label": "ACL Configuration",
  2799. "schema": {
  2800. "type": "dict",
  2801. "show_if": [
  2802. [
  2803. "acl_enable",
  2804. "=",
  2805. true
  2806. ]
  2807. ],
  2808. "attrs": [],
  2809. "$ref": [
  2810. "normalize/acl"
  2811. ]
  2812. }
  2813. },
  2814. {
  2815. "variable": "path",
  2816. "label": "Host Path",
  2817. "description": "The host path to use for storage.",
  2818. "schema": {
  2819. "type": "hostpath",
  2820. "show_if": [
  2821. [
  2822. "acl_enable",
  2823. "=",
  2824. false
  2825. ]
  2826. ],
  2827. "required": true
  2828. }
  2829. }
  2830. ]
  2831. }
  2832. }
  2833. ]
  2834. }
  2835. },
  2836. {
  2837. "variable": "additional_storage",
  2838. "label": "Additional Storage",
  2839. "schema": {
  2840. "type": "list",
  2841. "default": [],
  2842. "items": [
  2843. {
  2844. "variable": "storageEntry",
  2845. "label": "Storage Entry",
  2846. "schema": {
  2847. "type": "dict",
  2848. "attrs": [
  2849. {
  2850. "variable": "type",
  2851. "label": "Type",
  2852. "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 as a volume.\n",
  2853. "schema": {
  2854. "type": "string",
  2855. "required": true,
  2856. "default": "ix_volume",
  2857. "enum": [
  2858. {
  2859. "value": "host_path",
  2860. "description": "Host Path (Path that already exists on the system)"
  2861. },
  2862. {
  2863. "value": "ix_volume",
  2864. "description": "ixVolume (Dataset created automatically by the system)"
  2865. },
  2866. {
  2867. "value": "cifs",
  2868. "description": "SMB/CIFS Share (Mounts a volume to a SMB share)"
  2869. }
  2870. ]
  2871. }
  2872. },
  2873. {
  2874. "variable": "read_only",
  2875. "label": "Read Only",
  2876. "description": "Mount the volume as read only.",
  2877. "schema": {
  2878. "type": "boolean",
  2879. "default": false
  2880. }
  2881. },
  2882. {
  2883. "variable": "mount_path",
  2884. "label": "Mount Path",
  2885. "description": "The path inside the container to mount the storage.",
  2886. "schema": {
  2887. "type": "path",
  2888. "required": true
  2889. }
  2890. },
  2891. {
  2892. "variable": "host_path_config",
  2893. "label": "Host Path Configuration",
  2894. "schema": {
  2895. "type": "dict",
  2896. "show_if": [
  2897. [
  2898. "type",
  2899. "=",
  2900. "host_path"
  2901. ]
  2902. ],
  2903. "attrs": [
  2904. {
  2905. "variable": "acl_enable",
  2906. "label": "Enable ACL",
  2907. "description": "Enable ACL for the storage.",
  2908. "schema": {
  2909. "type": "boolean",
  2910. "default": false
  2911. }
  2912. },
  2913. {
  2914. "variable": "acl",
  2915. "label": "ACL Configuration",
  2916. "schema": {
  2917. "type": "dict",
  2918. "show_if": [
  2919. [
  2920. "acl_enable",
  2921. "=",
  2922. true
  2923. ]
  2924. ],
  2925. "attrs": [],
  2926. "$ref": [
  2927. "normalize/acl"
  2928. ]
  2929. }
  2930. },
  2931. {
  2932. "variable": "path",
  2933. "label": "Host Path",
  2934. "description": "The host path to use for storage.",
  2935. "schema": {
  2936. "type": "hostpath",
  2937. "show_if": [
  2938. [
  2939. "acl_enable",
  2940. "=",
  2941. false
  2942. ]
  2943. ],
  2944. "required": true
  2945. }
  2946. }
  2947. ]
  2948. }
  2949. },
  2950. {
  2951. "variable": "ix_volume_config",
  2952. "label": "ixVolume Configuration",
  2953. "description": "The configuration for the ixVolume dataset.",
  2954. "schema": {
  2955. "type": "dict",
  2956. "show_if": [
  2957. [
  2958. "type",
  2959. "=",
  2960. "ix_volume"
  2961. ]
  2962. ],
  2963. "$ref": [
  2964. "normalize/ix_volume"
  2965. ],
  2966. "attrs": [
  2967. {
  2968. "variable": "acl_enable",
  2969. "label": "Enable ACL",
  2970. "description": "Enable ACL for the storage.",
  2971. "schema": {
  2972. "type": "boolean",
  2973. "default": false
  2974. }
  2975. },
  2976. {
  2977. "variable": "dataset_name",
  2978. "label": "Dataset Name",
  2979. "description": "The name of the dataset to use for storage.",
  2980. "schema": {
  2981. "type": "string",
  2982. "required": true,
  2983. "default": "storage_entry"
  2984. }
  2985. },
  2986. {
  2987. "variable": "acl_entries",
  2988. "label": "ACL Configuration",
  2989. "schema": {
  2990. "type": "dict",
  2991. "show_if": [
  2992. [
  2993. "acl_enable",
  2994. "=",
  2995. true
  2996. ]
  2997. ],
  2998. "attrs": [],
  2999. "$ref": [
  3000. "normalize/acl"
  3001. ]
  3002. }
  3003. }
  3004. ]
  3005. }
  3006. },
  3007. {
  3008. "variable": "cifs_config",
  3009. "label": "SMB Configuration",
  3010. "description": "The configuration for the SMB dataset.",
  3011. "schema": {
  3012. "type": "dict",
  3013. "show_if": [
  3014. [
  3015. "type",
  3016. "=",
  3017. "cifs"
  3018. ]
  3019. ],
  3020. "attrs": [
  3021. {
  3022. "variable": "server",
  3023. "label": "Server",
  3024. "description": "The server to mount the SMB share.",
  3025. "schema": {
  3026. "type": "string",
  3027. "required": true
  3028. }
  3029. },
  3030. {
  3031. "variable": "path",
  3032. "label": "Path",
  3033. "description": "The path to mount the SMB share.",
  3034. "schema": {
  3035. "type": "string",
  3036. "required": true
  3037. }
  3038. },
  3039. {
  3040. "variable": "username",
  3041. "label": "Username",
  3042. "description": "The username to use for the SMB share.",
  3043. "schema": {
  3044. "type": "string",
  3045. "required": true
  3046. }
  3047. },
  3048. {
  3049. "variable": "password",
  3050. "label": "Password",
  3051. "description": "The password to use for the SMB share.",
  3052. "schema": {
  3053. "type": "string",
  3054. "required": true,
  3055. "private": true
  3056. }
  3057. },
  3058. {
  3059. "variable": "domain",
  3060. "label": "Domain",
  3061. "description": "The domain to use for the SMB share.",
  3062. "schema": {
  3063. "type": "string"
  3064. }
  3065. }
  3066. ]
  3067. }
  3068. }
  3069. ]
  3070. }
  3071. }
  3072. ]
  3073. }
  3074. }
  3075. ]
  3076. }
  3077. },
  3078. {
  3079. "variable": "labels",
  3080. "label": "",
  3081. "group": "Labels Configuration",
  3082. "schema": {
  3083. "type": "list",
  3084. "default": [],
  3085. "items": [
  3086. {
  3087. "variable": "label",
  3088. "label": "Label",
  3089. "schema": {
  3090. "type": "dict",
  3091. "attrs": [
  3092. {
  3093. "variable": "key",
  3094. "label": "Key",
  3095. "schema": {
  3096. "type": "string",
  3097. "required": true
  3098. }
  3099. },
  3100. {
  3101. "variable": "value",
  3102. "label": "Value",
  3103. "schema": {
  3104. "type": "string",
  3105. "required": true
  3106. }
  3107. },
  3108. {
  3109. "variable": "containers",
  3110. "label": "Containers",
  3111. "description": "Containers where the label should be applied",
  3112. "schema": {
  3113. "type": "list",
  3114. "items": [
  3115. {
  3116. "variable": "container",
  3117. "label": "Container",
  3118. "schema": {
  3119. "type": "string",
  3120. "required": true,
  3121. "enum": [
  3122. {
  3123. "value": "ddns",
  3124. "description": "ddns"
  3125. }
  3126. ]
  3127. }
  3128. }
  3129. ]
  3130. }
  3131. }
  3132. ]
  3133. }
  3134. }
  3135. ]
  3136. }
  3137. },
  3138. {
  3139. "variable": "resources",
  3140. "label": "",
  3141. "group": "Resources Configuration",
  3142. "schema": {
  3143. "type": "dict",
  3144. "attrs": [
  3145. {
  3146. "variable": "limits",
  3147. "label": "Limits",
  3148. "schema": {
  3149. "type": "dict",
  3150. "attrs": [
  3151. {
  3152. "variable": "cpus",
  3153. "label": "CPUs",
  3154. "description": "CPUs limit for DDNS Updater.",
  3155. "schema": {
  3156. "type": "int",
  3157. "default": 2,
  3158. "required": true
  3159. }
  3160. },
  3161. {
  3162. "variable": "memory",
  3163. "label": "Memory (in MB)",
  3164. "description": "Memory limit for DDNS Updater.",
  3165. "schema": {
  3166. "type": "int",
  3167. "default": 4096,
  3168. "required": true
  3169. }
  3170. }
  3171. ]
  3172. }
  3173. }
  3174. ]
  3175. }
  3176. }
  3177. ]
  3178. },
  3179. "readme": "<h1>DDNS Updater</h1> <p><a href=\"https://github.com/qdm12/ddns-updater\">DDNS Updater</a> is a lightweight universal DDNS Updater with web UI</p>",
  3180. "changelog": null,
  3181. "chart_metadata": {
  3182. "annotations": {
  3183. "min_scale_version": "24.10.2.2"
  3184. },
  3185. "app_version": "v2.9.0",
  3186. "capabilities": [],
  3187. "categories": [
  3188. "networking"
  3189. ],
  3190. "changelog_url": "https://github.com/qdm12/ddns-updater/releases",
  3191. "date_added": "2024-08-01",
  3192. "description": "Lightweight universal DDNS Updater with web UI",
  3193. "home": "https://github.com/qdm12/ddns-updater",
  3194. "host_mounts": [],
  3195. "icon": "https://media.sys.truenas.net/apps/ddns-updater/icons/icon.svg",
  3196. "keywords": [
  3197. "ddns-updater",
  3198. "ddns"
  3199. ],
  3200. "lib_version": "2.1.49",
  3201. "lib_version_hash": "e71e6b0122c9446fa5ea6fb07e7eb01b11fb42d549a19845426bbd7e21a42634",
  3202. "maintainers": [
  3203. {
  3204. "email": "dev@ixsystems.com",
  3205. "name": "truenas",
  3206. "url": "https://www.truenas.com/"
  3207. }
  3208. ],
  3209. "name": "ddns-updater",
  3210. "run_as_context": [
  3211. {
  3212. "description": "DDNS Updater runs as any non-root user.",
  3213. "gid": 568,
  3214. "group_name": "ddns-updater",
  3215. "uid": 568,
  3216. "user_name": "ddns-updater"
  3217. }
  3218. ],
  3219. "screenshots": [
  3220. "https://media.sys.truenas.net/apps/ddns-updater/screenshots/screenshot1.png"
  3221. ],
  3222. "sources": [
  3223. "https://github.com/qdm12/ddns-updater",
  3224. "https://hub.docker.com/r/qmcgaw/ddns-updater"
  3225. ],
  3226. "title": "DDNS Updater",
  3227. "train": "community",
  3228. "version": "1.2.8"
  3229. }
  3230. }
  3231. }