File tree Expand file tree Collapse file tree 4 files changed +10
-12
lines changed Expand file tree Collapse file tree 4 files changed +10
-12
lines changed Original file line number Diff line number Diff line change 1
- FROM quay.io/operator-framework/ansible-operator:v0.17.0
1
+ FROM quay.io/operator-framework/ansible-operator:v0.17.1
2
+ USER root
2
3
3
4
COPY requirements.yml ${HOME}/requirements.yml
4
- COPY image_resources/centos8-appstream.repo /etc/yum.repos.d/centos8-appstream.repo
5
5
RUN ansible-galaxy collection install -r ${HOME}/requirements.yml \
6
6
&& chmod -R ug+rwx ${HOME}/.ansible
7
7
8
- USER root
9
- RUN dnf install -y --nodocs redis --enablerepo=centos8-appstream && dnf clean all
10
-
11
- # Temporally workaround to fix https://github.com/operator-framework/operator-sdk/issues/2648
12
- RUN ln -s ${HOME}/.ansible /.ansible
8
+ RUN rpm --nodeps -i http://mirror.centos.org/centos/8-stream/BaseOS/x86_64/os/Packages/centos-repos-8.1-1.1911.0.9.el8.x86_64.rpm http://mirror.centos.org/centos/8-stream/BaseOS/x86_64/os/Packages/centos-gpg-keys-8.1-1.1911.0.7.el8.noarch.rpm
9
+ RUN dnf install -y --nodocs redis && dnf clean all
13
10
14
11
COPY group_vars/ ${HOME}/group_vars/
15
12
COPY roles/ ${HOME}/roles/
13
+ COPY meta/ ${HOME}/meta/
16
14
COPY watches.yaml ${HOME}/watches.yaml
17
15
COPY playbook.yml ${HOME}/playbook.yml
18
16
USER 1001
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ collections :
2
+ - community.kubernetes
3
+ - operator_sdk.util
Original file line number Diff line number Diff line change 1
1
- hosts : localhost
2
+ collections :
3
+ - operator_sdk.util
2
4
gather_facts : no
3
5
tasks :
4
6
You can’t perform that action at this time.
0 commit comments