fix(apps): move conflicting ports to 10xxx range (#1415)
* fix(apps): move conflicting ports to 10xxx range * remove `protocol: TCP` as its the default anyway * Change `"HTTP"` -> `HTTP` to much common * lms udp port should be udp protocol * resolve some conflicts * clear port 80 conficts * clean 3000 and 5000 port conflicts * more conflict cleaning * more conflict cleaning * more cleanup * more * cleanup * Avoid confclicts with official apps
This commit is contained in:
@@ -143,7 +143,7 @@ questions:
|
||||
description: "This port exposes the container port on the service"
|
||||
schema:
|
||||
type: int
|
||||
default: 80
|
||||
default: 10008
|
||||
editable: true
|
||||
required: true
|
||||
- variable: advanced
|
||||
@@ -205,7 +205,7 @@ questions:
|
||||
description: "This port exposes the container port on the service"
|
||||
schema:
|
||||
type: int
|
||||
default: 443
|
||||
default: 10001
|
||||
editable: true
|
||||
required: true
|
||||
- variable: advanced
|
||||
@@ -267,7 +267,7 @@ questions:
|
||||
description: "This port exposes the container port on the service"
|
||||
schema:
|
||||
type: int
|
||||
default: 5900
|
||||
default: 10002
|
||||
editable: true
|
||||
required: true
|
||||
- variable: advanced
|
||||
|
||||
@@ -48,21 +48,21 @@ service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 80
|
||||
port: 10008
|
||||
targetPort: 80
|
||||
websocket:
|
||||
enabled: true
|
||||
ports:
|
||||
websocket:
|
||||
enabled: true
|
||||
port: 443
|
||||
port: 10001
|
||||
targetPort: 443
|
||||
vnc:
|
||||
enabled: true
|
||||
ports:
|
||||
vnc:
|
||||
enabled: true
|
||||
port: 5900
|
||||
port: 10002
|
||||
targetPort: 5900
|
||||
|
||||
# -- Configure persistence settings for the chart under this key.
|
||||
|
||||
Reference in New Issue
Block a user