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"
|
||||
schema:
|
||||
type: int
|
||||
default: 10200
|
||||
default: 9000
|
||||
editable: true
|
||||
required: true
|
||||
- variable: tcp
|
||||
|
|
|
@ -139,7 +139,7 @@ service:
|
|||
type: LoadBalancer
|
||||
ports:
|
||||
main:
|
||||
port: 10200
|
||||
port: 9000
|
||||
targetPort: 9000
|
||||
protocol: HTTP
|
||||
tcp:
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
# Default values for Bitwarden.
|
||||
|
||||
image:
|
||||
repository: ghcr.io/authelia/authelia
|
||||
pullPolicy: IfNotPresent
|
||||
|
|
|
@ -81,7 +81,7 @@ stringData:
|
|||
APP_DATA_PATH = /data
|
||||
DOMAIN = {{ $DOMAIN }}
|
||||
ENABLE_PPROF = false
|
||||
HTTP_PORT = {{ .Values.service.main.ports.main.port }}
|
||||
HTTP_PORT = {{ .Values.service.main.ports.main.targetPort }}
|
||||
PROTOCOL = http
|
||||
{{- if and ( .Values.ingress.main.enabled ) ( gt (len .Values.ingress.main.hosts) 0 ) }}
|
||||
ROOT_URL = {{ printf "https://%s" $DOMAIN }}
|
||||
|
|
|
@ -125,7 +125,7 @@ questions:
|
|||
description: "This port exposes the container port on the service"
|
||||
schema:
|
||||
type: int
|
||||
default: 10108
|
||||
default: 32400
|
||||
editable: true
|
||||
required: true
|
||||
- variable: advanced
|
||||
|
|
|
@ -9,7 +9,7 @@ service:
|
|||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 10108
|
||||
port: 32400
|
||||
targetPort: 32400
|
||||
|
||||
persistence:
|
||||
|
|
|
@ -22,7 +22,7 @@ service:
|
|||
ports:
|
||||
comm:
|
||||
enabled: true
|
||||
port: 10101
|
||||
port: 8080
|
||||
targetPort: 8080
|
||||
stun:
|
||||
enabled: true
|
||||
|
|
Loading…
Reference in New Issue