Skip to content

Commit

Permalink
Merge pull request #13 from trustification/s3
Browse files Browse the repository at this point in the history
S3 provider
  • Loading branch information
desmax74 authored Aug 31, 2024
2 parents 6b32c40 + 7eb0e78 commit 78323ed
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
1 change: 1 addition & 0 deletions play.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
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
tpa_single_node_s3: quay.io/minio/minio:RELEASE.2023-06-19T19-52-50Z
vars_files:
# vars.yml should contain:
# * tpa_single_node_oidc_issuers
Expand Down
13 changes: 10 additions & 3 deletions roles/tpa_single_node/tasks/podman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,33 @@
name: "{{ tpa_single_node_guac_image }}"

# REMOVE THE FOLLOWING CONTAINERS TO USE EXTERNAL SERVICES
- name: Pull SSO image from registry.redhat.io
- name: Pull Keycloack image from Quay
when:
- ansible_facts['distribution'] == 'RedHat'
- ansible_facts['distribution_major_version'] == '9'
containers.podman.podman_image:
name: "{{ tpa_single_node_sso_image }}"

- name: Pull Postgresql 15 image from registry.redhat.io
- name: Pull Postgresql 15 image from docker.io
when:
- ansible_facts['distribution'] == 'RedHat'
- ansible_facts['distribution_major_version'] == '9'
containers.podman.podman_image:
name: "{{ tpa_single_node_postgresql }}"

- name: Pull Streams for Apache Kafka from registry.redhat.io
- name: Pull Kafka from docker.io
when:
- ansible_facts['distribution'] == 'RedHat'
- ansible_facts['distribution_major_version'] == '9'
containers.podman.podman_image:
name: "{{ tpa_single_node_streams_kafka }}"

- name: Pull Streams for S3 Minio from quay
when:
- ansible_facts['distribution'] == 'RedHat'
- ansible_facts['distribution_major_version'] == '9'
containers.podman.podman_image:
name: "{{ tpa_single_node_S3 }}"

- name: Configure/Deploy guac
ansible.builtin.include_tasks: podman/guac.yml

0 comments on commit 78323ed

Please sign in to comment.