guilhermesteinmuller | d534062 | 2023-01-24 17:57:10 +0000 | [diff] [blame] | 1 | # Copyright (c) 2023 VEXXHOST, Inc. |
Mohammed Naser | ab033e1 | 2022-03-13 21:07:28 -0400 | [diff] [blame] | 2 | # |
guilhermesteinmuller | d534062 | 2023-01-24 17:57:10 +0000 | [diff] [blame] | 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 |
okozachenko | 564a2ac | 2022-05-27 19:03:19 +1000 | [diff] [blame] | 6 | # |
guilhermesteinmuller | d534062 | 2023-01-24 17:57:10 +0000 | [diff] [blame] | 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 | |
Mohammed Naser | 2145fc3 | 2023-01-29 23:23:03 +0000 | [diff] [blame] | 15 | keystone_helm_release_name: keystone |
Mohammed Naser | 574d650 | 2023-03-21 23:34:48 +0000 | [diff] [blame] | 16 | keystone_helm_chart_path: "../../charts/keystone/" |
Mohammed Naser | 2145fc3 | 2023-01-29 23:23:03 +0000 | [diff] [blame] | 17 | keystone_helm_chart_ref: /usr/local/src/keystone |
guilhermesteinmuller | d534062 | 2023-01-24 17:57:10 +0000 | [diff] [blame] | 18 | |
Mohammed Naser | 2145fc3 | 2023-01-29 23:23:03 +0000 | [diff] [blame] | 19 | keystone_helm_release_namespace: openstack |
| 20 | keystone_helm_values: {} |
guilhermesteinmuller | d534062 | 2023-01-24 17:57:10 +0000 | [diff] [blame] | 21 | |
| 22 | # List of annotations to apply to the Ingress |
Mohammed Naser | 2145fc3 | 2023-01-29 23:23:03 +0000 | [diff] [blame] | 23 | keystone_ingress_annotations: {} |
Oleksandr Kozachenko | b009349 | 2023-09-06 21:43:47 +0200 | [diff] [blame] | 24 | |
| 25 | # The following set of variables can be used for simple setups where you can |
| 26 | # only need a single domain and realm. You can use the `keystone_domains` |
| 27 | # variable to configure more complex setups. |
| 28 | keystone_keycloak_server_url: "https://{{ keycloak_host }}" |
| 29 | keystone_keycloak_server_internal_url: http://keycloak.auth-system.svc |
| 30 | keystone_keycloak_user_realm_name: master |
| 31 | keystone_keycloak_admin_client_id: admin-cli |
| 32 | keystone_keycloak_admin_user: admin |
| 33 | keystone_keycloak_admin_password: "{{ keycloak_admin_password }}" |
| 34 | keystone_keycloak_realm: atmosphere |
| 35 | keystone_keycloak_realm_name: Atmosphere |
| 36 | keystone_keycloak_client_id: keystone |
| 37 | # keystone_keycloak_client_secret: |
| 38 | keystone_keycloak_scopes: "openid email profile" |
| 39 | |
| 40 | # This variable can be used for more complex setups that require multiple |
| 41 | # domains that are mapped to multiple realms. If you are looking to use a |
| 42 | # single domain and realm, you can skip this section. |
| 43 | keystone_domains: |
| 44 | - name: "{{ keystone_keycloak_realm }}" # Domain name |
| 45 | label: "{{ keystone_keycloak_realm_name }}" # Realm display name + Horizon label |
| 46 | keycloak_server_url: "{{ keystone_keycloak_server_url }}" # Public Keycloak URL |
| 47 | keycloak_server_internal_url: "{{ keystone_keycloak_server_internal_url }}" # Internal Keycloak URL |
| 48 | keycloak_user_realm_name: "{{ keystone_keycloak_user_realm_name }}" # Keycloak realm name |
| 49 | keycloak_admin_client_id: "{{ keystone_keycloak_admin_client_id }}" # Keycloak admin client ID |
| 50 | keycloak_admin_user: "{{ keystone_keycloak_admin_user }}" # Keycloak admin username |
| 51 | keycloak_admin_password: "{{ keystone_keycloak_admin_password }}" # Keycloak admin password |
| 52 | keycloak_realm: "{{ keystone_keycloak_realm }}" # Keycloak realm name |
| 53 | keycloak_client_id: "{{ keystone_keycloak_client_id }}" # Keycloak client ID |
| 54 | keycloak_client_secret: "{{ keystone_keycloak_client_secret }}" # Keycloak client secret |
| 55 | keycloak_scopes: "{{ keystone_keycloak_scopes }}" # Keycloak scopes |
| 56 | |
| 57 | # Keystone OpenID Connect settings (defaults to Keycloak for Atmosphere) |
| 58 | keystone_oidc_ssl_validate_server: "{{ (cluster_issuer_type == 'self-signed') | ternary('Off', 'On') }}" |
| 59 | keystone_oidc_crypto_passphrase: "{{ undef('You must specify a Keystone OIDC client secret using keystone_oidc_crypto_passphrase') }}" |
| 60 | keystone_oidc_redirect_uri: "https://{{ openstack_helm_endpoints_keystone_api_host }}/v3/auth/OS-FEDERATION/identity_providers/redirect" |
| 61 | keystone_oidc_redirect_urls_allowed: |
| 62 | - "^https://{{ openstack_helm_endpoints_keystone_api_host }}/v3/auth/OS-FEDERATION/identity_providers/({{ keystone_domains | map(attribute='name') | join('|') }})/protocols/openid/websso" # noqa: yaml[line-length] |
| 63 | - "^https://{{ openstack_helm_endpoints_horizon_api_host }}/auth/logout/$" |