Skip to content

Commit

Permalink
Merge pull request #607 from blesson-james/devel
Browse files Browse the repository at this point in the history
Issue #605: Fixed errors that are coming due to new buildah version
  • Loading branch information
j0hnL authored Oct 1, 2021
2 parents 26ca4d6 + cbb197d commit 92d67a3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
verbosity: 2

- name: Inspect the mngmnt_network_container image
command: "buildah images {{ mngmnt_network_image_name }}"
command: "buildah images"
register: mngmnt_network_container_image_result
failed_when: false
changed_when: false
Expand All @@ -55,7 +55,7 @@
- name: Update mngmnt_network_container image status
set_fact:
mngmnt_network_container_image_status: true
when: "'No such image' not in mngmnt_network_container_image_result.stderr"
when: mngmnt_network_image_name in mngmnt_network_container_image_result.stdout
tags: install

- name: Update mngmnt_network_container container status
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
verbosity: 2

- name: Inspect the infiniband_container image
command: "buildah images {{ infiniband_image_name }}"
command: "buildah images"
register: infiniband_container_image_result
failed_when: false
changed_when: false
Expand All @@ -56,11 +56,11 @@
- name: Update infiniband_container image status
set_fact:
infiniband_container_image_status: true
when: "'No such image' not in infiniband_container_image_result.stderr"
when: infiniband_image_name in infiniband_container_image_result.stdout
tags: install

- name: Update infiniband_container container status
set_fact:
infiniband_container_status: true
when: "'infiniband-container' in infiniband_container_result.stdout"
tags: install
tags: install
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
when: "'cobbler' not in k8s_namespaces.stdout"

- name: Inspect the cobbler image
command: "buildah images {{ cobbler_image_name }}"
command: "buildah images"
register: cobbler_image_result
failed_when: false
changed_when: false
Expand All @@ -66,7 +66,7 @@
- name: Update cobbler image status
set_fact:
cobbler_image_status: true
when: "'No such image' not in cobbler_image_result.stderr"
when: cobbler_image_name in cobbler_image_result.stdout
tags: install

- name: Update cobbler container status
Expand Down Expand Up @@ -103,4 +103,4 @@
- cobbler_container_status
- "'CentOS' in cobbler_profile_list.stdout"
- "'* * * * * /usr/bin/ansible-playbook /root/tftp.yml' in crontab_list.stdout"
- "'*/5 * * * * /usr/bin/ansible-playbook /root/inventory_creation.yml' in crontab_list.stdout"
- "'*/5 * * * * /usr/bin/ansible-playbook /root/inventory_creation.yml' in crontab_list.stdout"
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ AWX | Apache-2.0 | 19.1.0 | Web-based User Interface
AWX.AWX | Apache-2.0 | 19.1.0 | Galaxy collection to perform awx configuration
AWXkit | Apache-2.0 | to be updated | To perform configuration through CLI commands
Cri-o | Apache-2.0 | 1.21 | Container Service
Buildah | Apache-2.0 | 1.19.8 | Tool to build and run container
Buildah | Apache-2.0 | 1.21.4 | Tool to build and run container
PostgreSQL | Copyright (c) 1996-2020, PostgreSQL Global Development Group | 10.15 | Database Management System
Redis | BSD-3-Clause License | 6.0.10 | In-memory database
NGINX | BSD-2-Clause License | 1.14 | -
Expand Down

0 comments on commit 92d67a3

Please sign in to comment.