Keycloak Helm Chart Configuration

To install Keycloak using Helm, use the following configuration:

# values.yaml
keycloak:
  image:
    repository: quay.io/keycloak/keycloak
    tag: "21.1"
  
  service:
    type: ClusterIP
    port: 8080
  
  ingress:
    enabled: true
    hosts:
      - keycloak.yourdomain.com
    tls:
      - hosts:
          - keycloak.yourdomain.com
        secretName: keycloak-tls
  
  postgresql:
    enabled: true
    auth:
      postgresPassword: "securePassword"
      password: "securePassword"

Install with:

helm repo add bitnami https://charts.bitnami.com/bitnami
helm install keycloak bitnami/keycloak -f values.yaml