From 93d77fbdd0a72e4ebeefcdf181ad69569710363e Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Sat, 24 Sep 2022 15:52:58 +0200 Subject: [PATCH] docs(keycloak): Update helm chart README --- charts/keycloak/Chart.yaml | 2 +- charts/keycloak/README.md | 15 ++++++++------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/charts/keycloak/Chart.yaml b/charts/keycloak/Chart.yaml index 54595f121..910a621ab 100644 --- a/charts/keycloak/Chart.yaml +++ b/charts/keycloak/Chart.yaml @@ -7,5 +7,5 @@ icon: https://www.keycloak.org/resources/images/keycloak_icon_512px.svg sources: - https://git.shivering-isles.com/shivering-isles/infrastructure-gitops - https://github.com/keycloak/keycloak -version: 0.1.5 +version: 0.1.6 appVersion: "19.0.2" diff --git a/charts/keycloak/README.md b/charts/keycloak/README.md index 121b78714..403584ae8 100644 --- a/charts/keycloak/README.md +++ b/charts/keycloak/README.md @@ -1,8 +1,8 @@ # keycloak -   +   -A Helm chart for Keycloak on Kubernetes +(Alpha) A Helm chart for Keycloak on Kubernetes **Homepage:** <https://www.keycloak.org/> @@ -21,9 +21,9 @@ A Helm chart for Keycloak on Kubernetes | autoscaling.minReplicas | int | `1` | | | autoscaling.targetCPUUtilizationPercentage | int | `80` | | | fullnameOverride | string | `""` | | -| image.pullPolicy | string | `"IfNotPresent"` | | -| image.repository | string | `"quay.io/keycloak/keycloak"` | | -| image.tag | string | `""` | | +| image.pullPolicy | string | `"IfNotPresent"` | pull policy used for the keycloak container | +| image.repository | string | `"quay.io/keycloak/keycloak"` | Keycloak image to be used | +| image.tag | string | `""` | Overrides the image tag whose default is the chart appVersion. | | imagePullSecrets | list | `[]` | | | ingress.annotations | object | `{}` | | | ingress.className | string | `""` | | @@ -33,11 +33,11 @@ A Helm chart for Keycloak on Kubernetes | ingress.hosts[0].paths[0].pathType | string | `"ImplementationSpecific"` | | | ingress.tls | list | `[]` | | | keycloak.database.password | string | `nil` | password of the database user | -| keycloak.database.type | string | `"dev-file"` | Type of the database, see `db` at https://www.keycloak.org/server/db#_configuring_a_database | +| keycloak.database.type | string | `"postgres"` | Type of the database, see `db` at https://www.keycloak.org/server/db#_configuring_a_database | | keycloak.database.url | string | `nil` | database URL, see `db-url` at https://www.keycloak.org/server/db#_configuring_a_database jdbc:postgresql://localhost/keycloak | | keycloak.database.username | string | `nil` | username of the database user | | keycloak.features | list | `[]` | list of features that should be enabled on the keycloak instance. See `features` at https://www.keycloak.org/server/containers#_relevant_options | -| keycloak.hostname | string | `nil` | | +| keycloak.hostname | string | `"keycloak.example.com"` | Hostname used for the keycloak installation | | keycloak.proxy | string | `"edge"` | proxy configuration, See https://www.keycloak.org/server/reverseproxy | | metrics.enabled | bool | `false` | | | metrics.interval | string | `nil` | | @@ -51,6 +51,7 @@ A Helm chart for Keycloak on Kubernetes | resources.limits.memory | string | `"1.5Gi"` | | | resources.requests.cpu | string | `"100m"` | | | resources.requests.memory | string | `"1Gi"` | | +| securityContext.allowPrivilegeEscalation | bool | `false` | | | securityContext.capabilities.drop[0] | string | `"ALL"` | | | securityContext.runAsNonRoot | bool | `true` | | | service.port | int | `80` | | -- GitLab