fix(apps): correct some ports mistakes (#1416)
* fix(apps): correct some ports mistakes * Some fixes and cleanup
This commit is contained in:
parent
b1e5faa4c4
commit
5b84caa715
|
@ -570,7 +570,7 @@ questions:
|
||||||
label: "Entrypoints Port"
|
label: "Entrypoints Port"
|
||||||
schema:
|
schema:
|
||||||
type: int
|
type: int
|
||||||
default: 10200
|
default: 9000
|
||||||
editable: true
|
editable: true
|
||||||
required: true
|
required: true
|
||||||
- variable: tcp
|
- variable: tcp
|
||||||
|
|
|
@ -139,7 +139,7 @@ service:
|
||||||
type: LoadBalancer
|
type: LoadBalancer
|
||||||
ports:
|
ports:
|
||||||
main:
|
main:
|
||||||
port: 10200
|
port: 9000
|
||||||
targetPort: 9000
|
targetPort: 9000
|
||||||
protocol: HTTP
|
protocol: HTTP
|
||||||
tcp:
|
tcp:
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
# Default values for Bitwarden.
|
|
||||||
|
|
||||||
image:
|
image:
|
||||||
repository: ghcr.io/authelia/authelia
|
repository: ghcr.io/authelia/authelia
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
|
@ -81,7 +81,7 @@ stringData:
|
||||||
APP_DATA_PATH = /data
|
APP_DATA_PATH = /data
|
||||||
DOMAIN = {{ $DOMAIN }}
|
DOMAIN = {{ $DOMAIN }}
|
||||||
ENABLE_PPROF = false
|
ENABLE_PPROF = false
|
||||||
HTTP_PORT = {{ .Values.service.main.ports.main.port }}
|
HTTP_PORT = {{ .Values.service.main.ports.main.targetPort }}
|
||||||
PROTOCOL = http
|
PROTOCOL = http
|
||||||
{{- if and ( .Values.ingress.main.enabled ) ( gt (len .Values.ingress.main.hosts) 0 ) }}
|
{{- if and ( .Values.ingress.main.enabled ) ( gt (len .Values.ingress.main.hosts) 0 ) }}
|
||||||
ROOT_URL = {{ printf "https://%s" $DOMAIN }}
|
ROOT_URL = {{ printf "https://%s" $DOMAIN }}
|
||||||
|
|
|
@ -125,7 +125,7 @@ questions:
|
||||||
description: "This port exposes the container port on the service"
|
description: "This port exposes the container port on the service"
|
||||||
schema:
|
schema:
|
||||||
type: int
|
type: int
|
||||||
default: 10108
|
default: 32400
|
||||||
editable: true
|
editable: true
|
||||||
required: true
|
required: true
|
||||||
- variable: advanced
|
- variable: advanced
|
||||||
|
|
|
@ -9,7 +9,7 @@ service:
|
||||||
main:
|
main:
|
||||||
ports:
|
ports:
|
||||||
main:
|
main:
|
||||||
port: 10108
|
port: 32400
|
||||||
targetPort: 32400
|
targetPort: 32400
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
|
|
|
@ -22,7 +22,7 @@ service:
|
||||||
ports:
|
ports:
|
||||||
comm:
|
comm:
|
||||||
enabled: true
|
enabled: true
|
||||||
port: 10101
|
port: 8080
|
||||||
targetPort: 8080
|
targetPort: 8080
|
||||||
stun:
|
stun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
Loading…
Reference in New Issue