forked from kubevirt/kubevirt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds the guestagent connected test. Work based on work done by rmohr. Remove GuestAgent event When calling the event callback event can be nil. Added condition for this case. Unify functional tests for agent Final grooming for the guestagent tests Signed-off-by: Petr Kotas <[email protected]>
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,14 +21,15 @@ FROM fedora:27 | |
LABEL maintainer="The KubeVirt Project <[email protected]>" | ||
ENV container docker | ||
|
||
RUN dnf install -y nginx \ | ||
RUN dnf install -y nginx qemu-guest-agent \ | ||
&& dnf -y clean all | ||
|
||
RUN mkdir -p /usr/share/nginx/html/images \ | ||
&& curl http://dl-cdn.alpinelinux.org/alpine/v3.7/releases/x86_64/alpine-virt-3.7.0-x86_64.iso > /usr/share/nginx/html/images/alpine.iso \ | ||
&& rm -f /etc/nginx/nginx.conf | ||
|
||
RUN cp /usr/bin/qemu-ga /usr/share/nginx/html/ | ||
|
||
ADD nginx.conf /etc/nginx/ | ||
|
||
EXPOSE 80 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters