questions.yaml 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643
  1. groups:
  2. - name: Nginx Proxy Manager Configuration
  3. description: Configure Nginx Proxy Manager
  4. - name: User and Group Configuration
  5. description: Configure User and Group for Nginx Proxy Manager
  6. - name: Network Configuration
  7. description: Configure Network for Nginx Proxy Manager
  8. - name: Storage Configuration
  9. description: Configure Storage for Nginx Proxy Manager
  10. - name: Labels Configuration
  11. description: Configure Labels for Nginx Proxy Manager
  12. - name: Resources Configuration
  13. description: Configure Resources for Nginx Proxy Manager
  14. questions:
  15. - variable: TZ
  16. group: Nginx Proxy Manager Configuration
  17. label: Timezone
  18. schema:
  19. type: string
  20. default: Etc/UTC
  21. required: true
  22. $ref:
  23. - definitions/timezone
  24. - variable: npm
  25. label: ""
  26. group: Nginx Proxy Manager Configuration
  27. schema:
  28. type: dict
  29. attrs:
  30. - variable: additional_envs
  31. label: Additional Environment Variables
  32. schema:
  33. type: list
  34. default: []
  35. items:
  36. - variable: env
  37. label: Environment Variable
  38. schema:
  39. type: dict
  40. attrs:
  41. - variable: name
  42. label: Name
  43. schema:
  44. type: string
  45. required: true
  46. - variable: value
  47. label: Value
  48. schema:
  49. type: string
  50. - variable: run_as
  51. label: ""
  52. group: User and Group Configuration
  53. schema:
  54. type: dict
  55. attrs:
  56. - variable: user
  57. label: User ID
  58. description: The user id that Nginx Proxy Manager files will be owned by.
  59. schema:
  60. type: int
  61. min: 0
  62. default: 568
  63. required: true
  64. - variable: group
  65. label: Group ID
  66. description: The group id that Nginx Proxy Manager files will be owned by.
  67. schema:
  68. type: int
  69. min: 0
  70. default: 568
  71. required: true
  72. - variable: network
  73. label: ""
  74. group: Network Configuration
  75. schema:
  76. type: dict
  77. attrs:
  78. - variable: web_port
  79. label: WebUI Port
  80. description: The port for Nginx Proxy Manager WebUI
  81. schema:
  82. type: dict
  83. attrs:
  84. - variable: bind_mode
  85. label: Port Bind Mode
  86. description: |
  87. The port bind mode.</br>
  88. - Publish: The port will be published on the host for external access.</br>
  89. - Expose: The port will be exposed for inter-container communication.</br>
  90. - None: The port will not be exposed or published.</br>
  91. Note: If the Dockerfile defines an EXPOSE directive,
  92. the port will still be exposed for inter-container communication regardless of this setting.
  93. schema:
  94. type: string
  95. default: "published"
  96. enum:
  97. - value: "published"
  98. description: Publish port on the host for external access
  99. - value: "exposed"
  100. description: Expose port for inter-container communication
  101. - value: ""
  102. description: None
  103. - variable: port_number
  104. label: Port Number
  105. schema:
  106. type: int
  107. show_if: [["bind_mode", "=", "published"]]
  108. default: 30020
  109. min: 1
  110. max: 65535
  111. required: true
  112. - variable: host_ips
  113. label: Host IPs
  114. description: IPs on the host to bind this port
  115. schema:
  116. type: list
  117. show_if: [["bind_mode", "=", "published"]]
  118. default: []
  119. items:
  120. - variable: host_ip
  121. label: Host IP
  122. schema:
  123. type: string
  124. required: true
  125. $ref:
  126. - definitions/node_bind_ip
  127. - variable: http_port
  128. label: HTTP Port
  129. description: The port for Nginx Proxy Manager HTTP
  130. schema:
  131. type: dict
  132. attrs:
  133. - variable: bind_mode
  134. label: Port Bind Mode
  135. description: |
  136. The port bind mode.</br>
  137. - Publish: The port will be published on the host for external access.</br>
  138. - Expose: The port will be exposed for inter-container communication.</br>
  139. - None: The port will not be exposed or published.</br>
  140. Note: If the Dockerfile defines an EXPOSE directive,
  141. the port will still be exposed for inter-container communication regardless of this setting.
  142. schema:
  143. type: string
  144. default: "published"
  145. enum:
  146. - value: "published"
  147. description: Publish port on the host for external access
  148. - value: "exposed"
  149. description: Expose port for inter-container communication
  150. - value: ""
  151. description: None
  152. - variable: port_number
  153. label: Port Number
  154. schema:
  155. type: int
  156. show_if: [["bind_mode", "=", "published"]]
  157. default: 30021
  158. min: 1
  159. max: 65535
  160. required: true
  161. - variable: host_ips
  162. label: Host IPs
  163. description: IPs on the host to bind this port
  164. schema:
  165. type: list
  166. show_if: [["bind_mode", "=", "published"]]
  167. default: []
  168. items:
  169. - variable: host_ip
  170. label: Host IP
  171. schema:
  172. type: string
  173. required: true
  174. $ref:
  175. - definitions/node_bind_ip
  176. - variable: https_port
  177. label: HTTPS Port
  178. description: The port for Nginx Proxy Manager HTTPS
  179. schema:
  180. type: dict
  181. attrs:
  182. - variable: bind_mode
  183. label: Port Bind Mode
  184. description: |
  185. The port bind mode.</br>
  186. - Publish: The port will be published on the host for external access.</br>
  187. - Expose: The port will be exposed for inter-container communication.</br>
  188. - None: The port will not be exposed or published.</br>
  189. Note: If the Dockerfile defines an EXPOSE directive,
  190. the port will still be exposed for inter-container communication regardless of this setting.
  191. schema:
  192. type: string
  193. default: "published"
  194. enum:
  195. - value: "published"
  196. description: Publish port on the host for external access
  197. - value: "exposed"
  198. description: Expose port for inter-container communication
  199. - value: ""
  200. description: None
  201. - variable: port_number
  202. label: Port Number
  203. schema:
  204. type: int
  205. show_if: [["bind_mode", "=", "published"]]
  206. default: 30022
  207. min: 1
  208. max: 65535
  209. required: true
  210. - variable: host_ips
  211. label: Host IPs
  212. description: IPs on the host to bind this port
  213. schema:
  214. type: list
  215. show_if: [["bind_mode", "=", "published"]]
  216. default: []
  217. items:
  218. - variable: host_ip
  219. label: Host IP
  220. schema:
  221. type: string
  222. required: true
  223. $ref:
  224. - definitions/node_bind_ip
  225. - variable: additional_ports
  226. label: Additional Ports
  227. schema:
  228. type: list
  229. items:
  230. - variable: port
  231. label: Port
  232. schema:
  233. type: dict
  234. attrs:
  235. - variable: bind_mode
  236. label: Port Bind Mode
  237. description: |
  238. The port bind mode.</br>
  239. - Publish: The port will be published on the host for external access.</br>
  240. - Expose: The port will be exposed for inter-container communication.</br>
  241. schema:
  242. type: string
  243. default: "published"
  244. enum:
  245. - value: "published"
  246. description: Publish port on the host for external access
  247. - value: "exposed"
  248. description: Expose port for inter-container communication
  249. - variable: port_number
  250. label: Port Number
  251. schema:
  252. type: int
  253. min: 1
  254. max: 65535
  255. required: true
  256. - variable: container_port
  257. label: Container Port
  258. schema:
  259. type: int
  260. min: 1
  261. max: 65535
  262. required: true
  263. - variable: protocol
  264. label: Protocol
  265. schema:
  266. type: string
  267. required: true
  268. default: "tcp"
  269. enum:
  270. - value: "tcp"
  271. description: TCP
  272. - value: "udp"
  273. description: UDP
  274. - variable: host_ips
  275. label: Host IPs
  276. description: IPs on the host to bind this port
  277. schema:
  278. type: list
  279. show_if: [["bind_mode", "=", "published"]]
  280. default: []
  281. items:
  282. - variable: host_ip
  283. label: Host IP
  284. schema:
  285. type: string
  286. required: true
  287. $ref:
  288. - definitions/node_bind_ip
  289. - variable: storage
  290. label: ""
  291. group: Storage Configuration
  292. schema:
  293. type: dict
  294. attrs:
  295. - variable: data
  296. label: Data Storage
  297. schema:
  298. type: dict
  299. attrs:
  300. - variable: type
  301. label: Type
  302. description: |
  303. ixVolume: Is dataset created automatically by the system.</br>
  304. Host Path: Is a path that already exists on the system.
  305. schema:
  306. type: string
  307. required: true
  308. default: "ix_volume"
  309. enum:
  310. - value: "host_path"
  311. description: Host Path (Path that already exists on the system)
  312. - value: "ix_volume"
  313. description: ixVolume (Dataset created automatically by the system)
  314. - variable: ix_volume_config
  315. label: ixVolume Configuration
  316. description: The configuration for the ixVolume dataset.
  317. schema:
  318. type: dict
  319. show_if: [["type", "=", "ix_volume"]]
  320. $ref:
  321. - "normalize/ix_volume"
  322. attrs:
  323. - variable: acl_enable
  324. label: Enable ACL
  325. description: Enable ACL for the storage.
  326. schema:
  327. type: boolean
  328. default: false
  329. - variable: dataset_name
  330. label: Dataset Name
  331. description: The name of the dataset to use for storage.
  332. schema:
  333. type: string
  334. required: true
  335. hidden: true
  336. default: "data"
  337. - variable: acl_entries
  338. label: ACL Configuration
  339. schema:
  340. type: dict
  341. show_if: [["acl_enable", "=", true]]
  342. attrs: []
  343. - variable: host_path_config
  344. label: Host Path Configuration
  345. schema:
  346. type: dict
  347. show_if: [["type", "=", "host_path"]]
  348. attrs:
  349. - variable: acl_enable
  350. label: Enable ACL
  351. description: Enable ACL for the storage.
  352. schema:
  353. type: boolean
  354. default: false
  355. - variable: acl
  356. label: ACL Configuration
  357. schema:
  358. type: dict
  359. show_if: [["acl_enable", "=", true]]
  360. attrs: []
  361. $ref:
  362. - "normalize/acl"
  363. - variable: path
  364. label: Host Path
  365. description: The host path to use for storage.
  366. schema:
  367. type: hostpath
  368. show_if: [["acl_enable", "=", false]]
  369. required: true
  370. - variable: certs
  371. label: Certs Storage
  372. description: Stores the let's encrypt certificates.
  373. schema:
  374. type: dict
  375. attrs:
  376. - variable: type
  377. label: Type
  378. description: |
  379. ixVolume: Is dataset created automatically by the system.</br>
  380. Host Path: Is a path that already exists on the system.
  381. schema:
  382. type: string
  383. required: true
  384. default: "ix_volume"
  385. enum:
  386. - value: "host_path"
  387. description: Host Path (Path that already exists on the system)
  388. - value: "ix_volume"
  389. description: ixVolume (Dataset created automatically by the system)
  390. - variable: ix_volume_config
  391. label: ixVolume Configuration
  392. description: The configuration for the ixVolume dataset.
  393. schema:
  394. type: dict
  395. show_if: [["type", "=", "ix_volume"]]
  396. $ref:
  397. - "normalize/ix_volume"
  398. attrs:
  399. - variable: acl_enable
  400. label: Enable ACL
  401. description: Enable ACL for the storage.
  402. schema:
  403. type: boolean
  404. default: false
  405. - variable: dataset_name
  406. label: Dataset Name
  407. description: The name of the dataset to use for storage.
  408. schema:
  409. type: string
  410. required: true
  411. hidden: true
  412. default: "certs"
  413. - variable: acl_entries
  414. label: ACL Configuration
  415. schema:
  416. type: dict
  417. show_if: [["acl_enable", "=", true]]
  418. attrs: []
  419. - variable: host_path_config
  420. label: Host Path Configuration
  421. schema:
  422. type: dict
  423. show_if: [["type", "=", "host_path"]]
  424. attrs:
  425. - variable: acl_enable
  426. label: Enable ACL
  427. description: Enable ACL for the storage.
  428. schema:
  429. type: boolean
  430. default: false
  431. - variable: acl
  432. label: ACL Configuration
  433. schema:
  434. type: dict
  435. show_if: [["acl_enable", "=", true]]
  436. attrs: []
  437. $ref:
  438. - "normalize/acl"
  439. - variable: path
  440. label: Host Path
  441. description: The host path to use for storage.
  442. schema:
  443. type: hostpath
  444. show_if: [["acl_enable", "=", false]]
  445. required: true
  446. - variable: additional_storage
  447. label: Additional Storage
  448. schema:
  449. type: list
  450. default: []
  451. items:
  452. - variable: storageEntry
  453. label: Storage Entry
  454. schema:
  455. type: dict
  456. attrs:
  457. - variable: type
  458. label: Type
  459. description: |
  460. ixVolume: Is dataset created automatically by the system.</br>
  461. Host Path: Is a path that already exists on the system.</br>
  462. SMB Share: Is a SMB share that is mounted to as a volume.
  463. schema:
  464. type: string
  465. required: true
  466. default: "ix_volume"
  467. enum:
  468. - value: "host_path"
  469. description: Host Path (Path that already exists on the system)
  470. - value: "ix_volume"
  471. description: ixVolume (Dataset created automatically by the system)
  472. - value: "cifs"
  473. description: SMB/CIFS Share (Mounts a volume to a SMB share)
  474. - variable: read_only
  475. label: Read Only
  476. description: Mount the volume as read only.
  477. schema:
  478. type: boolean
  479. default: false
  480. - variable: mount_path
  481. label: Mount Path
  482. description: The path inside the container to mount the storage.
  483. schema:
  484. type: path
  485. required: true
  486. - variable: host_path_config
  487. label: Host Path Configuration
  488. schema:
  489. type: dict
  490. show_if: [["type", "=", "host_path"]]
  491. attrs:
  492. - variable: acl_enable
  493. label: Enable ACL
  494. description: Enable ACL for the storage.
  495. schema:
  496. type: boolean
  497. default: false
  498. - variable: acl
  499. label: ACL Configuration
  500. schema:
  501. type: dict
  502. show_if: [["acl_enable", "=", true]]
  503. attrs: []
  504. $ref:
  505. - "normalize/acl"
  506. - variable: path
  507. label: Host Path
  508. description: The host path to use for storage.
  509. schema:
  510. type: hostpath
  511. show_if: [["acl_enable", "=", false]]
  512. required: true
  513. - variable: ix_volume_config
  514. label: ixVolume Configuration
  515. description: The configuration for the ixVolume dataset.
  516. schema:
  517. type: dict
  518. show_if: [["type", "=", "ix_volume"]]
  519. $ref:
  520. - "normalize/ix_volume"
  521. attrs:
  522. - variable: acl_enable
  523. label: Enable ACL
  524. description: Enable ACL for the storage.
  525. schema:
  526. type: boolean
  527. default: false
  528. - variable: dataset_name
  529. label: Dataset Name
  530. description: The name of the dataset to use for storage.
  531. schema:
  532. type: string
  533. required: true
  534. default: "storage_entry"
  535. - variable: acl_entries
  536. label: ACL Configuration
  537. schema:
  538. type: dict
  539. show_if: [["acl_enable", "=", true]]
  540. attrs: []
  541. - variable: cifs_config
  542. label: SMB Configuration
  543. description: The configuration for the SMB dataset.
  544. schema:
  545. type: dict
  546. show_if: [["type", "=", "cifs"]]
  547. attrs:
  548. - variable: server
  549. label: Server
  550. description: The server to mount the SMB share.
  551. schema:
  552. type: string
  553. required: true
  554. - variable: path
  555. label: Path
  556. description: The path to mount the SMB share.
  557. schema:
  558. type: string
  559. required: true
  560. - variable: username
  561. label: Username
  562. description: The username to use for the SMB share.
  563. schema:
  564. type: string
  565. required: true
  566. - variable: password
  567. label: Password
  568. description: The password to use for the SMB share.
  569. schema:
  570. type: string
  571. required: true
  572. private: true
  573. - variable: domain
  574. label: Domain
  575. description: The domain to use for the SMB share.
  576. schema:
  577. type: string
  578. - variable: labels
  579. label: ""
  580. group: Labels Configuration
  581. schema:
  582. type: list
  583. default: []
  584. items:
  585. - variable: label
  586. label: Label
  587. schema:
  588. type: dict
  589. attrs:
  590. - variable: key
  591. label: Key
  592. schema:
  593. type: string
  594. required: true
  595. - variable: value
  596. label: Value
  597. schema:
  598. type: string
  599. required: true
  600. - variable: containers
  601. label: Containers
  602. description: Containers where the label should be applied
  603. schema:
  604. type: list
  605. items:
  606. - variable: container
  607. label: Container
  608. schema:
  609. type: string
  610. required: true
  611. enum:
  612. - value: npm
  613. description: npm
  614. - variable: resources
  615. label: ""
  616. group: Resources Configuration
  617. schema:
  618. type: dict
  619. attrs:
  620. - variable: limits
  621. label: Limits
  622. schema:
  623. type: dict
  624. attrs:
  625. - variable: cpus
  626. label: CPUs
  627. description: CPUs limit for Nginx Proxy Manager.
  628. schema:
  629. type: int
  630. default: 2
  631. required: true
  632. - variable: memory
  633. label: Memory (in MB)
  634. description: Memory limit for Nginx Proxy Manager.
  635. schema:
  636. type: int
  637. default: 4096
  638. required: true