Skip to content
This repository was archived by the owner on Jun 12, 2023. It is now read-only.

Commit 2bb9e1c

Browse files
authored
Merge pull request #157 from ksimon1/update-ansible-operator
update ansible operator to latest version
2 parents 1f665b7 + 199bf6a commit 2bb9e1c

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ before_script:
5454
- sudo mount --make-rshared /
5555

5656
- bash -x ci/ci/extra/get-kubevirt-releases
57-
5857
- bash -x ci/prepare-host $CPLATFORM
5958
- bash -x ci/prepare-host virtctl
6059
- bash -x ci/start-cluster $CPLATFORM $CVER

build/Dockerfile

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
FROM quay.io/operator-framework/ansible-operator:v0.15.2
1+
FROM quay.io/operator-framework/ansible-operator:v0.16.0
22

33
LABEL org.kubevirt.hco.csv-generator.v1="/usr/bin/csv-generator"
44

5+
COPY requirements.yml ${HOME}/requirements.yml
6+
RUN ansible-galaxy collection install -r ${HOME}/requirements.yml \
7+
&& chmod -R ug+rwx ${HOME}/.ansible
8+
59
COPY roles/ ${HOME}/roles/
610
COPY playbooks/ ${HOME}/
711
COPY watches.yaml ${HOME}/watches.yaml

requirements.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
collections:
2+
- operator_sdk.util

0 commit comments

Comments
 (0)