8000 Issue #605: Fixed errors that are coming due to new buildah version by blesson-james · Pull Request #607 · dell/omnia · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Issue #605: Fixed errors that are coming due to new buildah version #607

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

Merged
merged 4 commits into from
Oct 1, 2021
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
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