Oleksandr Kozachenko | b009349 | 2023-09-06 21:43:47 +0200 | [diff] [blame] | 1 | # 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 | |
| 15 | keycloak_helm_release_name: keycloak |
| 16 | keycloak_helm_chart_path: "../../charts/keycloak/" |
| 17 | keycloak_helm_chart_ref: /usr/local/src/keycloak |
| 18 | |
| 19 | keycloak_helm_release_namespace: auth-system |
Austin Talbot | 78a774a | 2024-09-25 10:15:36 -0600 | [diff] [blame] | 20 | keycloak_helm_kubeconfig: "{{ kubeconfig_path | default('/etc/kubernetes/admin.conf') }}" |
Oleksandr Kozachenko | b009349 | 2023-09-06 21:43:47 +0200 | [diff] [blame] | 21 | keycloak_helm_values: {} |
| 22 | |
| 23 | keycloak_host: "{{ undef('You must specify a Keycloak host using keycloak_host') }}" |
| 24 | keycloak_ingress_annotations: {} |
| 25 | keycloak_ingress_class_name: "{{ atmosphere_ingress_class_name }}" |
Oleksandr K. | d49adf8 | 2024-07-29 15:54:24 +0200 | [diff] [blame] | 26 | keycloak_ingress_cluster_issuer: "{{ atmosphere_ingress_cluster_issuer }}" |
Oleksandr Kozachenko | b009349 | 2023-09-06 21:43:47 +0200 | [diff] [blame] | 27 | |
| 28 | keycloak_admin_username: admin |
| 29 | keycloak_admin_password: "{{ undef(hint='You must specify a Keycloak admin password using keycloak_admin_password') }}" |
| 30 | |
| 31 | keycloak_database_username: keycloak |
| 32 | keycloak_database_password: "{{ undef('You must specify a Keycloak database password using keycloak_database_password') }}" |
| 33 | keycloak_database_name: keycloak |
Michiel Piscaer | 4ea5220 | 2023-09-11 17:29:29 +0200 | [diff] [blame] | 34 | keycloak_host_tls_secret_name: "{{ openstack_helm_ingress_secret_name | default(keycloak_host + '-tls')}}" |