kanidm: fix probes and use 443 port by default

This commit is contained in:
ace
2025-04-11 16:01:20 +03:00
parent 0d91f6f91d
commit 399eae0f1a
3 changed files with 17 additions and 9 deletions

View File

@@ -4,6 +4,9 @@
replicaCount: 1
strategy:
type: Recreate
image:
repository: docker.io/kanidm/server
pullPolicy: IfNotPresent
@@ -15,9 +18,9 @@ nameOverride: ""
fullnameOverride: ""
kanidm:
bindaddress: "[::]:8443"
bindaddress: "[::]:{{ .Values.service.port }}"
domain: "idm.example.com"
#origin: "https://{{ .Values.kanidm.domain }}:8443
#origin: "https://{{ .Values.kanidm.domain }}:{{ .Values.service.port }}"
trust_x_forward_for: true
db_path: "/data/kanidm.db"
#db_fs_type: "zfs"
@@ -63,7 +66,7 @@ securityContext: {}
service:
type: ClusterIP
port: 8443
port: 443
ingress:
enabled: false
@@ -116,12 +119,12 @@ resources: {}
livenessProbe:
httpGet:
scheme: HTTPS
path: /
path: /status
port: http
readinessProbe:
httpGet:
scheme: HTTPS
path: /
path: /status
port: http
autoscaling: