fix(apps): correct some ports mistakes (#1416)

* fix(apps): correct some ports mistakes

* Some fixes and cleanup
This commit is contained in:
Kjeld Schouten-Lebbing 2021-11-28 10:44:06 +01:00 committed by GitHub
parent b1e5faa4c4
commit 5b84caa715
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 6 additions and 8 deletions

View File

@ -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

View File

@ -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:

View File

@ -1,5 +1,3 @@
# Default values for Bitwarden.
image: image:
repository: ghcr.io/authelia/authelia repository: ghcr.io/authelia/authelia
pullPolicy: IfNotPresent pullPolicy: IfNotPresent

View File

@ -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 }}

View File

@ -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

View File

@ -9,7 +9,7 @@ service:
main: main:
ports: ports:
main: main:
port: 10108 port: 32400
targetPort: 32400 targetPort: 32400
persistence: persistence:

View File

@ -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