Skip to content

Commit

Permalink
Fix build errors and standardize configs
Browse files Browse the repository at this point in the history
  • Loading branch information
branic committed Dec 12, 2024
1 parent 0765a4d commit f4053da
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 13 deletions.
8 changes: 5 additions & 3 deletions ansible-ee/execution-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 3

images:
base_image:
name: quay.io/fedora/fedora-minimal:latest
name: quay.io/fedora/fedora:latest

additional_build_files:
- dest: configs
Expand All @@ -18,8 +18,8 @@ dependencies:
ansible_runner:
package_pip: ansible-runner
system:
- openssh-clients [platform:rpm]
- sshpass [platform:rpm]
- openssh-clients
- sshpass
python:
- kubernetes >= 12.0.0
galaxy:
Expand All @@ -41,6 +41,8 @@ dependencies:
roles: []

additional_build_steps:
prepend_base:
- RUN dnf install -y python3 python3-pip python3-libdnf5
prepend_galaxy:
- ADD _build/configs/ansible.cfg /etc/ansible/ansible.cfg
- ARG ANSIBLE_GALAXY_SERVER_AUTOMATION_HUB_TOKEN
Expand Down
6 changes: 4 additions & 2 deletions aws-ee/execution-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 3

images:
base_image:
name: quay.io/fedora/fedora-minimal:latest
name: quay.io/fedora/fedora:latest

additional_build_files:
- dest: configs
Expand All @@ -18,7 +18,7 @@ dependencies:
ansible_runner:
package_pip: ansible-runner
system:
- unzip [platform:rpm]
- unzip
galaxy:
collections:
- name: amazon.aws
Expand All @@ -27,6 +27,8 @@ dependencies:
roles: []

additional_build_steps:
prepend_base:
- RUN dnf install -y python3 python3-pip python3-libdnf5
prepend_galaxy:
- ADD _build/configs/ansible.cfg /etc/ansible/ansible.cfg
- ARG ANSIBLE_GALAXY_SERVER_AUTOMATION_HUB_TOKEN
Expand Down
10 changes: 6 additions & 4 deletions development-ee/execution-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 3

images:
base_image:
name: quay.io/fedora/fedora-minimal:latest
name: quay.io/fedora/fedora:latest

additional_build_files:
- dest: configs
Expand All @@ -18,9 +18,9 @@ dependencies:
ansible_runner:
package_pip: ansible-runner
system:
- openssh-clients [platform:rpm]
- sshpass [platform:rpm]
- unzip [platform:rpm]
- openssh-clients
- sshpass
- unzip
python:
- kubernetes >= 12.0.0
- ansible-lint
Expand All @@ -47,6 +47,8 @@ dependencies:
roles: []

additional_build_steps:
prepend_base:
- RUN dnf install -y python3 python3-pip python3-libdnf5
prepend_galaxy:
- ADD _build/configs/ansible.cfg /etc/ansible/ansible.cfg
- ARG ANSIBLE_GALAXY_SERVER_AUTOMATION_HUB_TOKEN
Expand Down
10 changes: 6 additions & 4 deletions rosa-ee/execution-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 3

images:
base_image:
name: quay.io/fedora/fedora-minimal:latest
name: quay.io/fedora/fedora:latest

additional_build_files:
- dest: configs
Expand All @@ -18,9 +18,9 @@ dependencies:
ansible_runner:
package_pip: ansible-runner
system:
- openssh-clients [platform:rpm]
- unzip [platform:rpm]
- tar [platform:rpm]
- openssh-clients
- unzip
- tar
python:
- kubernetes >= 12.0.0
galaxy:
Expand All @@ -34,6 +34,8 @@ dependencies:
roles: []

additional_build_steps:
prepend_base:
- RUN dnf install -y python3 python3-pip python3-libdnf5
prepend_galaxy:
- ADD _build/configs/ansible.cfg /etc/ansible/ansible.cfg
- ARG ANSIBLE_GALAXY_SERVER_AUTOMATION_HUB_TOKEN
Expand Down

0 comments on commit f4053da

Please sign in to comment.