fix: correct unifi port names to be unique (#947)

This commit is contained in:
Kjeld Schouten-Lebbing
2021-09-09 17:22:37 +02:00
committed by GitHub
parent 75e54e76a0
commit 6a6dc7e71a
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -21,4 +21,4 @@ sources:
- https://github.com/jacobalberty/unifi-docker - https://github.com/jacobalberty/unifi-docker
- https://unifi-network.ui.com - https://unifi-network.ui.com
type: application type: application
version: 6.12.0 version: 6.12.1
+3 -3
View File
@@ -389,7 +389,7 @@ questions:
schema: schema:
type: dict type: dict
attrs: attrs:
- variable: tcp - variable: comm
label: "TCP Service Port Configuration" label: "TCP Service Port Configuration"
schema: schema:
type: dict type: dict
@@ -485,7 +485,7 @@ questions:
schema: schema:
type: dict type: dict
attrs: attrs:
- variable: udp - variable: stun
label: "TCP Service Port Configuration" label: "TCP Service Port Configuration"
schema: schema:
type: dict type: dict
@@ -580,7 +580,7 @@ questions:
schema: schema:
type: dict type: dict
attrs: attrs:
- variable: tcp - variable: speedtest
label: "TCP Service Port Configuration" label: "TCP Service Port Configuration"
schema: schema:
type: dict type: dict
+3 -3
View File
@@ -22,7 +22,7 @@ service:
comm: comm:
enabled: true enabled: true
ports: ports:
tcp: comm:
enabled: true enabled: true
port: 8080 port: 8080
targetPort: 8080 targetPort: 8080
@@ -30,7 +30,7 @@ service:
stun: stun:
enabled: true enabled: true
ports: ports:
udp: stun:
enabled: true enabled: true
port: 3478 port: 3478
targetPort: 3478 targetPort: 3478
@@ -38,7 +38,7 @@ service:
speedtest: speedtest:
enabled: false enabled: false
ports: ports:
tcp: speedtest:
enabled: true enabled: true
port: 6789 port: 6789
targetPort: 6789 targetPort: 6789