611e971295
codecentric/keycloak(18.4.0, WildFly 기반, appVersion 17.0.1-legacy)이 bitnami/postgresql 서브차트를 조건부 의존성으로 포함해 bitnami 무료 배포 정책 변경 문제가 그대로 전이됐다. codecentric은 이 WildFly 차트를 더 이상 갱신하지 않고 Quarkus 기반 Keycloak(17+)용 별도 차트 keycloakx를 제공하며, keycloakx는 서브차트 의존성이 전혀 없어(Chart.yaml에 dependencies 없음) 문제가 근본적으로 해소된다. 실제 소비자가 없어(문서 예시 표 한 줄 외 참조 없음) phased 전환 없이 keycloak/18.4.0을 같은 커밋에서 제거했다. custom-values.yaml 작성 시 확인한 핵심 사항 — 이 차트의 http.relativePath 기본값이 구버전 WildFly Keycloak 호환용 "/auth"라, 명시적으로 "/"로 오버라이드해야 한다(안 하면 OIDC issuer/admin API 경로가 소비 앱들의 경로 접미사 없음 가정과 어긋난다). database.existingSecret/existingSecretKey 로 kubernetes.io/basic-auth 시크릿을 그대로 참조 가능함도 helm template로 확인했다. Closes #1 Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
243 lines
8.8 KiB
YAML
243 lines
8.8 KiB
YAML
apiVersion: apps/v1
|
|
kind: StatefulSet
|
|
metadata:
|
|
name: {{ include "keycloak.fullname" . }}
|
|
namespace: {{ include "keycloak.namespace" . }}
|
|
{{- with .Values.statefulsetAnnotations }}
|
|
annotations:
|
|
{{- range $key, $value := . }}
|
|
{{- printf "%s: %s" $key (tpl $value $ | quote) | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
labels:
|
|
{{- include "keycloak.labels" . | nindent 4 }}
|
|
{{- range $key, $value := .Values.statefulsetLabels }}
|
|
{{- printf "%s: %s" $key (tpl $value $ | quote) | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
{{- include "keycloak.selectorLabels" . | nindent 6 }}
|
|
{{- if not .Values.autoscaling.enabled }}
|
|
replicas: {{ .Values.replicas }}
|
|
{{- end }}
|
|
serviceName: {{ include "keycloak.fullname" . }}-headless
|
|
podManagementPolicy: {{ .Values.podManagementPolicy }}
|
|
updateStrategy:
|
|
type: {{ .Values.updateStrategy }}
|
|
{{- if not (eq (.Values.revisionHistoryLimit | toString) "") }}
|
|
revisionHistoryLimit: {{ .Values.revisionHistoryLimit }}
|
|
{{- end }}
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
checksum/config-startup: {{ include (print .Template.BasePath "/configmap-startup.yaml") . | sha256sum }}
|
|
checksum/secrets: {{ tpl (toYaml .Values.secrets) . | sha256sum }}
|
|
{{- range $key, $value := .Values.podAnnotations }}
|
|
{{- printf "%s: %s" $key (tpl $value $ | quote) | nindent 8 }}
|
|
{{- end }}
|
|
labels:
|
|
{{- include "keycloak.selectorLabels" . | nindent 8 }}
|
|
{{- range $key, $value := .Values.podLabels }}
|
|
{{- printf "%s: %s" $key (tpl $value $ | quote) | nindent 8 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- if not .Values.skipInitContainers }}
|
|
{{- if or .Values.dbchecker.enabled .Values.extraInitContainers }}
|
|
initContainers:
|
|
{{- if and .Values.dbchecker.enabled }}
|
|
- name: dbchecker
|
|
image: "{{ .Values.dbchecker.image.repository }}{{- if (.Values.dbchecker.image.digest) -}}@{{ .Values.dbchecker.image.digest }}{{- else -}}:{{ .Values.dbchecker.image.tag }} {{- end }}"
|
|
imagePullPolicy: {{ .Values.dbchecker.image.pullPolicy }}
|
|
securityContext:
|
|
{{- toYaml .Values.dbchecker.securityContext | nindent 12 }}
|
|
command:
|
|
- sh
|
|
- -c
|
|
- |
|
|
echo 'Waiting for Database to become ready...'
|
|
|
|
until printf "." && nc -z -w 2 {{ required ".Values.database.hostname is required if dbchecker is enabled!" .Values.database.hostname }} {{ required ".Values.database.port is required if dbchecker is enabled!" .Values.database.port }}; do
|
|
sleep 2;
|
|
done;
|
|
|
|
echo 'Database OK ✓'
|
|
resources:
|
|
{{- toYaml .Values.dbchecker.resources | nindent 12 }}
|
|
{{- end }}
|
|
{{- with .Values.extraInitContainers }}
|
|
{{- tpl . $ | nindent 8 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
containers:
|
|
- name: keycloak
|
|
securityContext:
|
|
{{- toYaml .Values.securityContext | nindent 12 }}
|
|
image: "{{ .Values.image.repository }}{{- if (.Values.image.digest) -}}@{{ .Values.image.digest }}{{- else -}}:{{ .Values.image.tag | default .Chart.AppVersion }} {{- end }}"
|
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
{{- if .Values.command }}
|
|
command:
|
|
{{- toYaml .Values.command | nindent 12 }}
|
|
{{- end }}
|
|
{{- if .Values.args }}
|
|
args:
|
|
{{- toYaml .Values.args | nindent 12 }}
|
|
{{- end }}
|
|
{{- with .Values.lifecycleHooks }}
|
|
lifecycle:
|
|
{{- tpl . $ | nindent 12 }}
|
|
{{- end }}
|
|
env:
|
|
{{- if and (.Values.http.relativePath) (eq .Values.http.relativePath "/") }}
|
|
- name: KC_HTTP_RELATIVE_PATH
|
|
value: {{ tpl .Values.http.relativePath $ }}
|
|
{{ else }}
|
|
- name: KC_HTTP_RELATIVE_PATH
|
|
value: {{ tpl .Values.http.relativePath $ | trimSuffix "/" }}
|
|
{{- end }}
|
|
{{- if eq .Values.cache.stack "default" }}
|
|
- name: KC_CACHE
|
|
value: "ispn"
|
|
- name: KC_CACHE_STACK
|
|
value: "jdbc-ping"
|
|
{{- end }}
|
|
{{- if .Values.proxy.enabled }}
|
|
- name: KC_PROXY_HEADERS
|
|
value: {{ .Values.proxy.mode }}
|
|
{{- end }}
|
|
{{- if .Values.proxy.http.enabled }}
|
|
- name: KC_HTTP_ENABLED
|
|
value: "true"
|
|
{{- end }}
|
|
{{- if .Values.database.vendor }}
|
|
- name: KC_DB
|
|
value: {{ .Values.database.vendor }}
|
|
{{- end }}
|
|
{{- if .Values.database.hostname }}
|
|
- name: KC_DB_URL_HOST
|
|
value: {{ .Values.database.hostname }}
|
|
{{- end }}
|
|
{{- if .Values.database.port }}
|
|
- name: KC_DB_URL_PORT
|
|
value: {{ .Values.database.port | quote }}
|
|
{{- end }}
|
|
{{- if .Values.database.database }}
|
|
- name: KC_DB_URL_DATABASE
|
|
value: {{ .Values.database.database }}
|
|
{{- end }}
|
|
{{- if .Values.database.username }}
|
|
- name: KC_DB_USERNAME
|
|
value: {{ .Values.database.username }}
|
|
{{- end }}
|
|
{{- if or .Values.database.password .Values.database.existingSecret -}}
|
|
{{- include "keycloak.databasePasswordEnv" . | nindent 12 }}
|
|
{{- end }}
|
|
{{- if .Values.metrics.enabled }}
|
|
- name: KC_METRICS_ENABLED
|
|
value: "true"
|
|
{{- end }}
|
|
{{- if .Values.health.enabled }}
|
|
- name: KC_HEALTH_ENABLED
|
|
value: "true"
|
|
{{- end }}
|
|
{{- with .Values.extraEnv }}
|
|
{{- tpl . $ | nindent 12 }}
|
|
{{- end }}
|
|
envFrom:
|
|
{{- with .Values.extraEnvFrom }}
|
|
{{- tpl . $ | nindent 12 }}
|
|
{{- end }}
|
|
ports:
|
|
- name: http
|
|
containerPort: 8080
|
|
protocol: TCP
|
|
- name: '{{ .Values.http.internalPort }}'
|
|
containerPort: 9000
|
|
protocol: TCP
|
|
{{- if .Values.service.httpsPort }}
|
|
- name: https
|
|
containerPort: 8443
|
|
protocol: TCP
|
|
{{- end }}
|
|
{{- with .Values.extraPorts }}
|
|
{{- toYaml . | nindent 12 }}
|
|
{{- end }}
|
|
{{- if .Values.health.enabled }}
|
|
{{- with .Values.livenessProbe }}
|
|
livenessProbe:
|
|
{{- tpl . $ | nindent 12 }}
|
|
{{- end }}
|
|
{{- if .Values.metrics.enabled }}
|
|
{{- with .Values.readinessProbe }}
|
|
readinessProbe:
|
|
{{- tpl . $ | nindent 12 }}
|
|
{{- end }}
|
|
{{- end}}
|
|
{{- with .Values.startupProbe }}
|
|
startupProbe:
|
|
{{- tpl . $ | nindent 12 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
resources:
|
|
{{- toYaml .Values.resources | nindent 12 }}
|
|
volumeMounts:
|
|
{{- with .Values.extraVolumeMounts }}
|
|
{{- tpl . $ | nindent 12 }}
|
|
{{- end }}
|
|
{{- with .Values.extraContainers }}
|
|
{{- tpl . $ | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.imagePullSecrets }}
|
|
imagePullSecrets:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
serviceAccountName: {{ include "keycloak.serviceAccountName" . }}
|
|
securityContext:
|
|
{{- toYaml .Values.podSecurityContext | nindent 8 }}
|
|
{{- with .Values.hostAliases }}
|
|
hostAliases:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
enableServiceLinks: {{ .Values.enableServiceLinks }}
|
|
restartPolicy: {{ .Values.restartPolicy }}
|
|
{{- with .Values.nodeSelector }}
|
|
nodeSelector:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.affinity }}
|
|
affinity:
|
|
{{- tpl . $ | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.topologySpreadConstraints }}
|
|
topologySpreadConstraints:
|
|
{{- tpl . $ | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.tolerations }}
|
|
tolerations:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.priorityClassName }}
|
|
priorityClassName: {{ . }}
|
|
{{- end }}
|
|
terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }}
|
|
volumes:
|
|
{{- with .Values.startupScripts }}
|
|
- name: startup
|
|
configMap:
|
|
name: {{ include "keycloak.fullname" $ }}-startup
|
|
defaultMode: 0555
|
|
items:
|
|
{{- range $key, $value := . }}
|
|
- key: {{ $key }}
|
|
path: {{ $key }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- with .Values.extraVolumes }}
|
|
{{- tpl . $ | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.volumeClaimTemplates }}
|
|
volumeClaimTemplates:
|
|
{{- tpl . $ | nindent 4 }}
|
|
{{- end }}
|