Skip to content

Commit

Permalink
Enforce distribution name, major and minor version
Browse files Browse the repository at this point in the history
Signed-off-by: desmax74 <[email protected]>
  • Loading branch information
desmax74 committed Sep 25, 2024
1 parent 8f4dcdb commit 4c62c8d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions roles/tpa_single_node/tasks/podman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,24 @@
register: podman_login_result
changed_when: '"Already logged in" not in podman_login_result'

- name: "Create Manifests/Configs Directory"
- name: Create Manifests/Configs Directory
ansible.builtin.file:
state: directory
dest: "{{ item }}"
mode: "0700"
loop:
- "{{ tpa_single_node_kube_manifest_dir }}"

- name: "Create RHTPA network"
- name: Create RHTPA network
containers.podman.podman_network:
name: "{{ tpa_single_node_podman_network }}"

- name: "Pull trustification image from registry.redhat.io"
- name: Pull trustification image from registry.redhat.io
when: isRhel
containers.podman.podman_image:
name: "{{ tpa_single_node_trustification_image }}"

- name: "Pull Guac image from registry.redhat.io"
- name: Pull Guac image from registry.redhat.io
when: isRhel
containers.podman.podman_image:
name: "{{ tpa_single_node_guac_image }}"

0 comments on commit 4c62c8d

Please sign in to comment.