Skip to content
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

Add .ci-operator.yaml, upgrade pip3 #34

Closed
wants to merge 4 commits into from
Closed
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
4 changes: 4 additions & 0 deletions .ci-operator.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
image_stream_tag:
name: release
namespace: openshift
tag: rhel-9-release-golang-1.23-openshift-4.19
5 changes: 3 additions & 2 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ RUN dnf -y install \
&& dnf clean all

# Install ansible and ansible-lint
RUN pip3 install --no-cache-dir \
RUN pip3 install --upgrade pip && \
pip3 install --no-cache-dir \
ansible \
ansible-lint

Expand All @@ -17,7 +18,7 @@ COPY . ./eco-ci-cd
WORKDIR /eco-ci-cd

# Install requirements
RUN ansible-galaxy collection install -r requirements.yml
RUN ansible-galaxy collection install -r requirements.yml -vv

# Set entrypoint to bash
ENTRYPOINT ["/bin/bash"]
1 change: 0 additions & 1 deletion requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ collections:
- name: community.libvirt
version: "1.3.0"
- name: redhatci.ocp
version: "0.24.1736348776"
Loading