diff --git a/play.yml b/play.yml index 5f27c75..0622f0b 100644 --- a/play.yml +++ b/play.yml @@ -9,17 +9,22 @@ tpa_single_node_kube_configmap_dir: "{{ tpa_single_node_config_dir }}/configs" # * tpa_single_node_registry_username # * get at https://access.redhat.com/terms-based-registry - tpa_single_node_registry_username: + tpa_single_node_registry_username: # * tpa_single_node_registry_password # * get at https://access.redhat.com/terms-based-registry - tpa_single_node_registry_password: - tpa_single_node_podman_network: rhtpanet - tpa_single_node_trustification_image: - tpa_single_node_guac_image: + tpa_single_node_registry_password: + tpa_single_node_podman_network: tcnet + tpa_single_node_trustification_image: registry.redhat.io/rhtpa/rhtpa-trustification-service-rhel9:e5a9440a40a8e84279202c75425415840d988959 + tpa_single_node_guac_image: registry.redhat.io/rhtpa/rhtpa-guac-rhel9:f0688194637cc759052e02c350c38dbabc19484e # REMOVE TO USE EXTERNAl SERVICES - tpa_single_node_sso_image: - tpa_single_node_postgresql: - tpa_single_node_streams_kafka: + tpa_single_node_sso_image: quay.io/keycloak/keycloak:20.0.0 + tpa_single_node_postgresql: docker.io/library/postgres:16 + tpa_single_node_streams_kafka: docker.io/bitnami/kafka@sha256:8fedaa492f1f570cade60f5ff09978cd841307b1e9f93fe6216136ca165fcc2d + vars_files: + # vars.yml should contain: + # * tpa_single_node_oidc_issuers + # * tpa_single_node_issuer_url + - vars.yml tasks: - name: Include TPA single node ansible.builtin.include_role: diff --git a/vm-testing/rhel9-vm/Vagrantfile b/vm-testing/rhel9-vm/Vagrantfile index d5dc50d..a7101c6 100644 --- a/vm-testing/rhel9-vm/Vagrantfile +++ b/vm-testing/rhel9-vm/Vagrantfile @@ -22,7 +22,7 @@ Vagrant.configure("2") do |config| end main_server.vm.provision "ansible" do |ansible| - ansible.verbose = "v" + ansible.verbose = "vvvv" ansible.compatibility_mode = "2.0" ansible.playbook = "./../../play.yml" ansible.galaxy_role_file = "./../../requirements.yml"