blob: ae1f82ba6458a5c30ed5b7eb69ac82bf594647df [file] [log] [blame]
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +02001# Copyright (c) 2023 VEXXHOST, Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
15keycloak_helm_release_name: keycloak
16keycloak_helm_chart_path: "../../charts/keycloak/"
17keycloak_helm_chart_ref: /usr/local/src/keycloak
18
19keycloak_helm_release_namespace: auth-system
Austin Talbot78a774a2024-09-25 10:15:36 -060020keycloak_helm_kubeconfig: "{{ kubeconfig_path | default('/etc/kubernetes/admin.conf') }}"
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +020021keycloak_helm_values: {}
22
23keycloak_host: "{{ undef('You must specify a Keycloak host using keycloak_host') }}"
24keycloak_ingress_annotations: {}
25keycloak_ingress_class_name: "{{ atmosphere_ingress_class_name }}"
Oleksandr K.d49adf82024-07-29 15:54:24 +020026keycloak_ingress_cluster_issuer: "{{ atmosphere_ingress_cluster_issuer }}"
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +020027
28keycloak_admin_username: admin
29keycloak_admin_password: "{{ undef(hint='You must specify a Keycloak admin password using keycloak_admin_password') }}"
30
31keycloak_database_username: keycloak
32keycloak_database_password: "{{ undef('You must specify a Keycloak database password using keycloak_database_password') }}"
33keycloak_database_name: keycloak
Michiel Piscaer4ea52202023-09-11 17:29:29 +020034keycloak_host_tls_secret_name: "{{ openstack_helm_ingress_secret_name | default(keycloak_host + '-tls')}}"