Adding Portal (comm) port to Omada-Controller (#1905)
* Update values.yaml Adding missing ports for Omada to work, let me know how off I am lol * Adding ports for Omada-Controller Adding the missing port to Omada-Controller inside questions.yaml and values.yaml * Adding ports for Omada-Controller Adding the missing port to Omada-Controller inside questions.yaml and values.yaml, updated ports in manual and changed version
This commit is contained in:
parent
215fbb2d71
commit
84b34985e3
|
@ -18,7 +18,7 @@ name: omada-controller
|
|||
sources:
|
||||
- https://github.com/mbentley/docker-omada-controller
|
||||
- https://github.com/truecharts/apps/tree/master/charts/omada-controller
|
||||
version: 4.0.63
|
||||
version: 4.0.64
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
|
|
|
@ -124,7 +124,7 @@ questions:
|
|||
label: "Port Type"
|
||||
schema:
|
||||
type: string
|
||||
default: "HTTP"
|
||||
default: "HTTPS"
|
||||
enum:
|
||||
- value: HTTP
|
||||
description: "HTTP"
|
||||
|
@ -148,6 +148,62 @@ questions:
|
|||
type: int
|
||||
default: 8043
|
||||
|
||||
- variable: comm
|
||||
label: "Omada Controller User HTTPS portal"
|
||||
description: "Omada Controller User HTTPS portal"
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
# Include{serviceSelector}
|
||||
- variable: comm
|
||||
label: "TCP Service Port Configuration"
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: port
|
||||
label: "Port"
|
||||
description: "This port exposes the container port on the service"
|
||||
schema:
|
||||
type: int
|
||||
default: 8843
|
||||
required: true
|
||||
- variable: advanced
|
||||
label: "Show Advanced settings"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: protocol
|
||||
label: "Port Type"
|
||||
schema:
|
||||
type: string
|
||||
default: "HTTPS"
|
||||
enum:
|
||||
- value: HTTP
|
||||
description: "HTTP"
|
||||
- value: "HTTPS"
|
||||
description: "HTTPS"
|
||||
- value: TCP
|
||||
description: "TCP"
|
||||
- value: "UDP"
|
||||
description: "UDP"
|
||||
- variable: nodePort
|
||||
label: "Node Port (Optional)"
|
||||
description: "This port gets exposed to the node. Only considered when service type is NodePort, Simple or LoadBalancer"
|
||||
schema:
|
||||
type: int
|
||||
min: 9000
|
||||
max: 65535
|
||||
- variable: targetPort
|
||||
label: "Target Port"
|
||||
description: "The internal(!) port on the container the Application runs on"
|
||||
schema:
|
||||
type: int
|
||||
default: 8843
|
||||
|
||||
- variable: serviceexpert
|
||||
group: "Networking and Services"
|
||||
label: "Show Expert Config"
|
||||
|
|
|
@ -26,8 +26,16 @@ service:
|
|||
main:
|
||||
ports:
|
||||
main:
|
||||
protocol: HTTPS
|
||||
port: 8043
|
||||
targetPort: 8043
|
||||
comm:
|
||||
enabled: true
|
||||
ports:
|
||||
comm:
|
||||
enabled: true
|
||||
port: 8843
|
||||
targetPor: 8843
|
||||
omada-tcp:
|
||||
enabled: true
|
||||
ports:
|
||||
|
|
|
@ -131,7 +131,8 @@ These defaults can of course be changed, but as we guarantee "sane, working defa
|
|||
| gaps | main | main | 8484 | TCP | |
|
||||
| lidarr | main | main | 8686 | TCP | |
|
||||
| readarr | main | main | 8787 | TCP | |
|
||||
| unifi | guestportal | websecure | 8843 | HTTPS | |
|
||||
| omada-controller | userportal | websecure | 8843 | HTTPS | Potential conflict with unifi |
|
||||
| unifi | guestportal | websecure | 8843 | HTTPS | Potential conflict with omada |
|
||||
| minisatip | main | main | 8875 | TCP | |
|
||||
| unifi | guestportal | web | 8880 | HTTP | |
|
||||
| resilio-sync | main | main | 8888 | TCP | |
|
||||
|
|
Loading…
Reference in New Issue