fix(authentik): enable services/ports and disable geoip by default (#3424)

* fix(authentik): enable services/ports and disable geoip by default

* dedupe port names
This commit is contained in:
Stavros Kois
2022-08-10 10:32:53 +03:00
committed by GitHub
parent 47abf4e998
commit 187da84006
4 changed files with 9 additions and 9 deletions

View File

@@ -27,7 +27,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/authentik
- https://github.com/goauthentik/authentik
- https://goauthentik.io/docs/
version: 3.0.0
version: 3.0.1
annotations:
truecharts.org/catagories: |
- authentication

View File

@@ -294,7 +294,7 @@ questions:
description: "Enables GeoIP container"
schema:
type: boolean
default: true
default: false
show_subquestions_if: true
subquestions:
- variable: account_id
@@ -519,7 +519,7 @@ questions:
schema:
type: int
default: 6636
- variable: metrics
- variable: ldap-metrics
label: "LDAP metrics Service Port Configuration"
schema:
additional_attrs: true

View File

@@ -17,7 +17,7 @@ ports:
- containerPort: 6636
{{ if .Values.outposts.ldap.metrics }}
- containerPort: 9300
name: metrics
name: ldap-metrics
{{ end }}
readinessProbe:
exec:

View File

@@ -140,18 +140,18 @@ service:
port: 10231
targetPort: 9301
ldap:
enabled: false
enabled: true
ports:
ldap1:
enabled: false
enabled: true
port: 389
targetPort: 3389
ldap2:
enabled: false
enabled: true
port: 636
targetPort: 6636
metrics:
enabled: false
ldap-metrics:
enabled: true
port: 10232
protocol: HTTP
targetPort: 9300