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>
601 lines
12 KiB
JSON
601 lines
12 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/schema#",
|
|
"type": "object",
|
|
"required": [
|
|
"image"
|
|
],
|
|
"definitions": {
|
|
"httpRoute": {
|
|
"type": "object",
|
|
"properties": {
|
|
"annotations": {
|
|
"type": "object"
|
|
},
|
|
"enabled": {
|
|
"type": "boolean"
|
|
},
|
|
"labels": {
|
|
"type": "object"
|
|
},
|
|
"parentRefs": {
|
|
"type": "array",
|
|
"items": {
|
|
"properties": {
|
|
"name": {
|
|
"type": "string"
|
|
},
|
|
"sectionName": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"hostnames": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"rules": {
|
|
"type": "array",
|
|
"items": {
|
|
"$comment": "don't allow additionalProperties to make sure backendRefs isn't set by the user",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"matches": {
|
|
"type": "array",
|
|
"items": {
|
|
"$comment": "don't allow additionalProperties, only path matcher supported",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"path": {
|
|
"type": "object"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"filters": {
|
|
"type": "array"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"image": {
|
|
"type": "object",
|
|
"required": [
|
|
"repository",
|
|
"tag"
|
|
],
|
|
"properties": {
|
|
"pullPolicy": {
|
|
"type": "string",
|
|
"pattern": "^(Always|Never|IfNotPresent)$"
|
|
},
|
|
"repository": {
|
|
"type": "string"
|
|
},
|
|
"tag": {
|
|
"type": ["string", "integer"]
|
|
},
|
|
"digest": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"imagePullSecrets": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"properties": {
|
|
"affinity": {
|
|
"type": "string"
|
|
},
|
|
"args": {
|
|
"type": "array"
|
|
},
|
|
"clusterDomain": {
|
|
"type": "string"
|
|
},
|
|
"command": {
|
|
"type": "array"
|
|
},
|
|
"enableServiceLinks": {
|
|
"type": "boolean"
|
|
},
|
|
"extraContainers": {
|
|
"type": "string"
|
|
},
|
|
"extraEnv": {
|
|
"type": "string"
|
|
},
|
|
"extraEnvFrom": {
|
|
"type": "string"
|
|
},
|
|
"extraInitContainers": {
|
|
"type": "string"
|
|
},
|
|
"extraPorts": {
|
|
"type": "array"
|
|
},
|
|
"extraVolumeMounts": {
|
|
"type": "string"
|
|
},
|
|
"extraVolumes": {
|
|
"type": "string"
|
|
},
|
|
"volumeClaimTemplates": {
|
|
"type": "string"
|
|
},
|
|
"fullnameOverride": {
|
|
"type": "string"
|
|
},
|
|
"hostAliases": {
|
|
"type": "array"
|
|
},
|
|
"http": {
|
|
"relativePath": "string",
|
|
"internalPort": "string",
|
|
"internalScheme": "string"
|
|
},
|
|
"httpRoute": {
|
|
"allOf": [
|
|
{ "$ref": "#/definitions/httpRoute" },
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"servicePort": {
|
|
"type": "integer"
|
|
},
|
|
"console": {
|
|
"$ref": "#/definitions/httpRoute"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"image": {
|
|
"$ref": "#/definitions/image"
|
|
},
|
|
"imagePullSecrets": {
|
|
"$ref": "#/definitions/imagePullSecrets"
|
|
},
|
|
"ingress": {
|
|
"type": "object",
|
|
"properties": {
|
|
"annotations": {
|
|
"type": "object"
|
|
},
|
|
"enabled": {
|
|
"type": "boolean"
|
|
},
|
|
"labels": {
|
|
"type": "object"
|
|
},
|
|
"rules": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"host": {
|
|
"type": "string"
|
|
},
|
|
"paths": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"path": {
|
|
"type": "string"
|
|
},
|
|
"pathType": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"servicePort": {
|
|
"anyOf": [
|
|
{
|
|
"type": "integer"
|
|
},
|
|
{
|
|
"type": "string"
|
|
}
|
|
]
|
|
},
|
|
"tls": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"hosts": {
|
|
"type": "array",
|
|
"items": {
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"secretName": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"lifecycleHooks": {
|
|
"type": "string"
|
|
},
|
|
"livenessProbe": {
|
|
"type": "string"
|
|
},
|
|
"nameOverride": {
|
|
"type": "string"
|
|
},
|
|
"namespaceOverride": {
|
|
"type": "string"
|
|
},
|
|
"nodeSelector": {
|
|
"type": "object"
|
|
},
|
|
"dbchecker": {
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean"
|
|
},
|
|
"image": {
|
|
"$ref": "#/definitions/image"
|
|
},
|
|
"resources": {
|
|
"type": "object",
|
|
"properties": {
|
|
"limits": {
|
|
"type": "object",
|
|
"properties": {
|
|
"cpu": {
|
|
"type": "string"
|
|
},
|
|
"memory": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"requests": {
|
|
"type": "object",
|
|
"properties": {
|
|
"cpu": {
|
|
"type": "string"
|
|
},
|
|
"memory": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"securityContext": {
|
|
"type": "object"
|
|
}
|
|
}
|
|
},
|
|
"podAnnotations": {
|
|
"type": "object"
|
|
},
|
|
"podDisruptionBudget": {
|
|
"type": "object"
|
|
},
|
|
"podLabels": {
|
|
"type": "object"
|
|
},
|
|
"podManagementPolicy": {
|
|
"type": "string"
|
|
},
|
|
"updateStrategy": {
|
|
"type": "string"
|
|
},
|
|
"podSecurityContext": {
|
|
"type": "object"
|
|
},
|
|
"cache": {
|
|
"type": "object",
|
|
"properties": {
|
|
"stack": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"proxy": {
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean"
|
|
},
|
|
"mode": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"metrics": {
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean"
|
|
}
|
|
}
|
|
},
|
|
"health": {
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean"
|
|
}
|
|
}
|
|
},
|
|
"database": {
|
|
"type": "object",
|
|
"properties": {
|
|
"vendor": {
|
|
"type": "string"
|
|
},
|
|
"hostname": {
|
|
"type": "string"
|
|
},
|
|
"port": {
|
|
"type": "integer"
|
|
},
|
|
"username": {
|
|
"type": "string"
|
|
},
|
|
"password": {
|
|
"type": "string"
|
|
},
|
|
"database": {
|
|
"type": "string"
|
|
},
|
|
"existingSecret": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"priorityClassName": {
|
|
"type": "string"
|
|
},
|
|
"prometheusRule": {
|
|
"type": "object"
|
|
},
|
|
"serviceMonitor": {
|
|
"type": "object"
|
|
},
|
|
"extraServiceMonitor": {
|
|
"type": "object"
|
|
},
|
|
"readinessProbe": {
|
|
"type": "string"
|
|
},
|
|
"replicas": {
|
|
"type": "integer"
|
|
},
|
|
"resources": {
|
|
"type": "object"
|
|
},
|
|
"restartPolicy": {
|
|
"type": "string"
|
|
},
|
|
"route": {
|
|
"type": "object",
|
|
"properties": {
|
|
"annotations": {
|
|
"type": "object"
|
|
},
|
|
"enabled": {
|
|
"type": "boolean"
|
|
},
|
|
"host": {
|
|
"type": "string"
|
|
},
|
|
"labels": {
|
|
"type": "object"
|
|
},
|
|
"path": {
|
|
"type": "string"
|
|
},
|
|
"tls": {
|
|
"type": "object"
|
|
}
|
|
}
|
|
},
|
|
"secrets": {
|
|
"type": "object"
|
|
},
|
|
"securityContext": {
|
|
"type": "object"
|
|
},
|
|
"service": {
|
|
"type": "object",
|
|
"properties": {
|
|
"annotations": {
|
|
"type": "object"
|
|
},
|
|
"extraPorts": {
|
|
"type": "array"
|
|
},
|
|
"loadBalancerSourceRanges": {
|
|
"type": "array"
|
|
},
|
|
"httpNodePort": {
|
|
"anyOf": [
|
|
{
|
|
"type": "integer"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"httpPort": {
|
|
"type": "integer"
|
|
},
|
|
"httpsNodePort": {
|
|
"anyOf": [
|
|
{
|
|
"type": "integer"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"httpsPort": {
|
|
"type": "integer"
|
|
},
|
|
"labels": {
|
|
"type": "object"
|
|
},
|
|
"nodePort": {
|
|
"anyOf": [
|
|
{
|
|
"type": "integer"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"type": {
|
|
"type": "string"
|
|
},
|
|
"loadBalancerIP": {
|
|
"type": "string"
|
|
},
|
|
"internalTrafficPolicy": {
|
|
"type": "string"
|
|
},
|
|
"sessionAffinity": {
|
|
"type": "string"
|
|
},
|
|
"sessionAffinityConfig": {
|
|
"type": "object"
|
|
}
|
|
}
|
|
},
|
|
"serviceHeadless": {
|
|
"type": "object",
|
|
"properties": {
|
|
"annotations": {
|
|
"type": "object"
|
|
},
|
|
"extraPorts": {
|
|
"type": "array"
|
|
},
|
|
"labels": {
|
|
"type": "object"
|
|
}
|
|
}
|
|
},
|
|
"serviceAccount": {
|
|
"type": "object",
|
|
"properties": {
|
|
"annotations": {
|
|
"type": "object"
|
|
},
|
|
"create": {
|
|
"type": "boolean"
|
|
},
|
|
"allowReadPods": {
|
|
"type": "boolean"
|
|
},
|
|
"imagePullSecrets": {
|
|
"$ref": "#/definitions/imagePullSecrets"
|
|
},
|
|
"labels": {
|
|
"type": "object"
|
|
},
|
|
"name": {
|
|
"type": "string"
|
|
},
|
|
"automountServiceAccountToken": {
|
|
"type": "boolean"
|
|
}
|
|
}
|
|
},
|
|
"rbac": {
|
|
"type": "object",
|
|
"properties": {
|
|
"create": {
|
|
"type": "boolean"
|
|
},
|
|
"rules": {
|
|
"type": "array"
|
|
}
|
|
}
|
|
},
|
|
"statefulsetAnnotations": {
|
|
"type": "object"
|
|
},
|
|
"statefulsetLabels": {
|
|
"type": "object"
|
|
},
|
|
"terminationGracePeriodSeconds": {
|
|
"type": "integer"
|
|
},
|
|
"autoscaling": {
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean"
|
|
},
|
|
"labels": {
|
|
"type": "object"
|
|
},
|
|
"minReplicas": {
|
|
"type": "integer"
|
|
},
|
|
"maxReplicas": {
|
|
"type": "integer"
|
|
},
|
|
"metrics": {
|
|
"type": "array"
|
|
},
|
|
"behavior": {
|
|
"type": "object"
|
|
}
|
|
}
|
|
},
|
|
"test": {
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean"
|
|
},
|
|
"image": {
|
|
"$ref": "#/definitions/image"
|
|
},
|
|
"podSecurityContext": {
|
|
"type": "object"
|
|
},
|
|
"securityContext": {
|
|
"type": "object"
|
|
}
|
|
}
|
|
},
|
|
"tolerations": {
|
|
"type": "array"
|
|
}
|
|
}
|
|
}
|
|
}
|