Selaa lähdekoodia

check master realm instead of non-existing one

Grega Bremec 2 kuukautta sitten
vanhempi
commit
4f4531171f
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      playbooks/roles/deploy-rhbk/tasks/present.yml

+ 1 - 1
playbooks/roles/deploy-rhbk/tasks/present.yml

@@ -269,7 +269,7 @@
   ansible.builtin.uri:
     return_content: yes
     validate_certs: no
-    url: "https://{{ rhbk_fqdn }}/realms/{{ rhbk.realm | default('sample-realm') }}"
+    url: "https://{{ rhbk_fqdn }}/realms/master"
   register: rhbk_is_ready
   until: rhbk_is_ready.status == 200
   retries: 24