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 07:32:53 +00:00
committed by GitHub
parent 47abf4e998
commit 187da84006
4 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/authentik - https://github.com/truecharts/charts/tree/master/charts/incubator/authentik
- https://github.com/goauthentik/authentik - https://github.com/goauthentik/authentik
- https://goauthentik.io/docs/ - https://goauthentik.io/docs/
version: 3.0.0 version: 3.0.1
annotations: annotations:
truecharts.org/catagories: | truecharts.org/catagories: |
- authentication - authentication
+2 -2
View File
@@ -294,7 +294,7 @@ questions:
description: "Enables GeoIP container" description: "Enables GeoIP container"
schema: schema:
type: boolean type: boolean
default: true default: false
show_subquestions_if: true show_subquestions_if: true
subquestions: subquestions:
- variable: account_id - variable: account_id
@@ -519,7 +519,7 @@ questions:
schema: schema:
type: int type: int
default: 6636 default: 6636
- variable: metrics - variable: ldap-metrics
label: "LDAP metrics Service Port Configuration" label: "LDAP metrics Service Port Configuration"
schema: schema:
additional_attrs: true additional_attrs: true
@@ -17,7 +17,7 @@ ports:
- containerPort: 6636 - containerPort: 6636
{{ if .Values.outposts.ldap.metrics }} {{ if .Values.outposts.ldap.metrics }}
- containerPort: 9300 - containerPort: 9300
name: metrics name: ldap-metrics
{{ end }} {{ end }}
readinessProbe: readinessProbe:
exec: exec:
+5 -5
View File
@@ -140,18 +140,18 @@ service:
port: 10231 port: 10231
targetPort: 9301 targetPort: 9301
ldap: ldap:
enabled: false enabled: true
ports: ports:
ldap1: ldap1:
enabled: false enabled: true
port: 389 port: 389
targetPort: 3389 targetPort: 3389
ldap2: ldap2:
enabled: false enabled: true
port: 636 port: 636
targetPort: 6636 targetPort: 6636
metrics: ldap-metrics:
enabled: false enabled: true
port: 10232 port: 10232
protocol: HTTP protocol: HTTP
targetPort: 9300 targetPort: 9300