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:
Stavros Kois
2021-11-28 10:26:31 +01:00
committed by GitHub
parent c3d7106214
commit b1e5faa4c4
204 changed files with 215 additions and 221 deletions
+3 -3
View File
@@ -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
+3 -3
View File
@@ -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.