fix: keycloak_frontend_url needs scheme
parent
1b44b47d1c
commit
5fa9243bcd
|
@ -3,7 +3,7 @@ dependency:
|
||||||
name: shell
|
name: shell
|
||||||
command: ansible-galaxy collection install -r molecule/default/requirements.yml -p $HOME/.ansible/collections --force-with-deps
|
command: ansible-galaxy collection install -r molecule/default/requirements.yml -p $HOME/.ansible/collections --force-with-deps
|
||||||
driver:
|
driver:
|
||||||
name: docker
|
name: podman
|
||||||
platforms:
|
platforms:
|
||||||
- name: instance
|
- name: instance
|
||||||
image: registry.access.redhat.com/ubi8/ubi-init:latest
|
image: registry.access.redhat.com/ubi8/ubi-init:latest
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
- name: Prepare
|
- name: Prepare
|
||||||
hosts: all
|
hosts: all
|
||||||
tasks:
|
tasks:
|
||||||
|
- name: Disable beta repos
|
||||||
|
command: yum config-manager --disable '*beta*'
|
||||||
- name: Install sudo
|
- name: Install sudo
|
||||||
yum:
|
yum:
|
||||||
name: sudo
|
name: sudo
|
||||||
|
|
|
@ -47,7 +47,7 @@ The following variables are _required_ only when `keycloak_ha_enabled` is True:
|
||||||
| Variable | Description | Default |
|
| Variable | Description | Default |
|
||||||
|:---------|:------------|:---------|
|
|:---------|:------------|:---------|
|
||||||
|`keycloak_modcluster_url` | URL for the modcluster reverse proxy | `localhost` |
|
|`keycloak_modcluster_url` | URL for the modcluster reverse proxy | `localhost` |
|
||||||
|`keycloak_frontend_url` | frontend URL for keycloak endpoints when a reverse proxy is used | `localhost` |
|
|`keycloak_frontend_url` | frontend URL for keycloak endpoints when a reverse proxy is used | `http://localhost` |
|
||||||
|`keycloak_jdbc_engine` | backend database flavour when db is enabled: [ postgres, mariadb ] | `postgres` |
|
|`keycloak_jdbc_engine` | backend database flavour when db is enabled: [ postgres, mariadb ] | `postgres` |
|
||||||
|`infinispan_url` | URL for the infinispan remote-cache server | `localhost:11122` |
|
|`infinispan_url` | URL for the infinispan remote-cache server | `localhost:11122` |
|
||||||
|`infinispan_user` | username for connecting to infinispan | `supervisor` |
|
|`infinispan_user` | username for connecting to infinispan | `supervisor` |
|
||||||
|
|
|
@ -50,7 +50,7 @@ keycloak_force_install: False
|
||||||
|
|
||||||
### mod_cluster reverse proxy
|
### mod_cluster reverse proxy
|
||||||
keycloak_modcluster_url: localhost
|
keycloak_modcluster_url: localhost
|
||||||
keycloak_frontend_url: localhost
|
keycloak_frontend_url: http://localhost
|
||||||
|
|
||||||
### infinispan remote caches access (hotrod)
|
### infinispan remote caches access (hotrod)
|
||||||
infinispan_user: supervisor
|
infinispan_user: supervisor
|
||||||
|
|
Loading…
Reference in New Issue