Add support for more http-related configs

* keycloak_quarkus_http_relative_path var now populate http-relative-path config [breaking change]
* http-relative-path defaults to / [breaking change]
* enable configuration of hostname-url and hostname-admin-url
This commit is contained in:
Giovanni Toraldo 2023-10-09 09:59:51 +02:00
commit 316cde4759
No known key found for this signature in database
GPG key ID: 535A83AB8FE360A7
6 changed files with 27 additions and 11 deletions

View file

@ -97,6 +97,10 @@ argument_specs:
default: -1
description: "The port used by the proxy when exposing the hostname"
type: "int"
keycloak_quarkus_path:
default: ""
description: "This should be set if proxy uses a different context-path for Keycloak"
type: "str"
keycloak_quarkus_http_enabled:
default: true
description: "Enable listener on HTTP port"
@ -149,14 +153,16 @@ argument_specs:
description: "Enable auto configuration for database backend"
type: "str"
keycloak_quarkus_http_relative_path:
# line 41 of defaults/main.yml
default: "auth"
description: "Service context path"
type: "str"
keycloak_quarkus_frontend_url:
# line 41 of defaults/main.yml
default: "http://localhost:8080/auth"
description: "Service public URL"
default: ""
type: "str"
keycloak_quarkus_admin_url:
description: "Service URL for the admin console"
default: ""
type: "str"
keycloak_quarkus_metrics_enabled:
# line 43 of defaults/main.yml