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:
@@ -18,7 +18,7 @@ name: omada-controller
|
|||||||
sources:
|
sources:
|
||||||
- https://github.com/mbentley/docker-omada-controller
|
- https://github.com/mbentley/docker-omada-controller
|
||||||
- https://github.com/truecharts/apps/tree/master/charts/omada-controller
|
- https://github.com/truecharts/apps/tree/master/charts/omada-controller
|
||||||
version: 4.0.63
|
version: 4.0.64
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- media
|
- media
|
||||||
|
|||||||
@@ -124,7 +124,7 @@ questions:
|
|||||||
label: "Port Type"
|
label: "Port Type"
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
default: "HTTP"
|
default: "HTTPS"
|
||||||
enum:
|
enum:
|
||||||
- value: HTTP
|
- value: HTTP
|
||||||
description: "HTTP"
|
description: "HTTP"
|
||||||
@@ -148,6 +148,62 @@ questions:
|
|||||||
type: int
|
type: int
|
||||||
default: 8043
|
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
|
- variable: serviceexpert
|
||||||
group: "Networking and Services"
|
group: "Networking and Services"
|
||||||
label: "Show Expert Config"
|
label: "Show Expert Config"
|
||||||
|
|||||||
@@ -26,8 +26,16 @@ service:
|
|||||||
main:
|
main:
|
||||||
ports:
|
ports:
|
||||||
main:
|
main:
|
||||||
|
protocol: HTTPS
|
||||||
port: 8043
|
port: 8043
|
||||||
targetPort: 8043
|
targetPort: 8043
|
||||||
|
comm:
|
||||||
|
enabled: true
|
||||||
|
ports:
|
||||||
|
comm:
|
||||||
|
enabled: true
|
||||||
|
port: 8843
|
||||||
|
targetPor: 8843
|
||||||
omada-tcp:
|
omada-tcp:
|
||||||
enabled: true
|
enabled: true
|
||||||
ports:
|
ports:
|
||||||
|
|||||||
@@ -131,7 +131,8 @@ These defaults can of course be changed, but as we guarantee "sane, working defa
|
|||||||
| gaps | main | main | 8484 | TCP | |
|
| gaps | main | main | 8484 | TCP | |
|
||||||
| lidarr | main | main | 8686 | TCP | |
|
| lidarr | main | main | 8686 | TCP | |
|
||||||
| readarr | main | main | 8787 | 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 | |
|
| minisatip | main | main | 8875 | TCP | |
|
||||||
| unifi | guestportal | web | 8880 | HTTP | |
|
| unifi | guestportal | web | 8880 | HTTP | |
|
||||||
| resilio-sync | main | main | 8888 | TCP | |
|
| resilio-sync | main | main | 8888 | TCP | |
|
||||||
|
|||||||
Reference in New Issue
Block a user