blob: 324ab4355218ff815bdcb0b0d8e536c9e38ece3c [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
20keycloak_helm_values: {}
21
22keycloak_host: "{{ undef('You must specify a Keycloak host using keycloak_host') }}"
23keycloak_ingress_annotations: {}
24keycloak_ingress_class_name: "{{ atmosphere_ingress_class_name }}"
Oleksandr K.49e6e002024-07-29 21:06:14 +020025keycloak_ingress_cluster_issuer: "{{ atmosphere_ingress_cluster_issuer }}"
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +020026
27keycloak_admin_username: admin
28keycloak_admin_password: "{{ undef(hint='You must specify a Keycloak admin password using keycloak_admin_password') }}"
29
30keycloak_database_username: keycloak
31keycloak_database_password: "{{ undef('You must specify a Keycloak database password using keycloak_database_password') }}"
32keycloak_database_name: keycloak
Michiel Piscaer4ea52202023-09-11 17:29:29 +020033keycloak_host_tls_secret_name: "{{ openstack_helm_ingress_secret_name | default(keycloak_host + '-tls')}}"