Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

registry images #7

Merged
merged 1 commit into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions play.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: <YOUR_USERNAME>
tpa_single_node_registry_username: <your Red Hat username>
# * tpa_single_node_registry_password
# * get at https://access.redhat.com/terms-based-registry
tpa_single_node_registry_password: <YOUR_PASSWORD>
tpa_single_node_podman_network: rhtpanet
tpa_single_node_trustification_image:
tpa_single_node_guac_image:
tpa_single_node_registry_password: <your Red Hat 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:
Expand Down
2 changes: 1 addition & 1 deletion vm-testing/rhel9-vm/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading