From Fedora Project Wiki
(Created page with " = Description = A simple validation test case for Podman on Fedora IoT Edition. = Setup = This testcase can be run on either an image or installation, on hardware or in virtu...")
 
No edit summary
Line 38: Line 38:


Run container
Run container
  podman run -d -p 80:80 f26-httpd
  podman run -d -p 80:80 f29-httpd


Firewalld commands
Firewalld commands

Revision as of 20:46, 11 March 2019

Description

A simple validation test case for Podman on Fedora IoT Edition.

Setup

This testcase can be run on either an image or installation, on hardware or in virtualization.

How to test

Boot image or Installation and log in locally or SSH into booted image.

Check if podman is installed

 rpm -q podman

Check to see if you can pull an image from the registry

podman pull fedora

Run hello-world to test

podman run -it fedora echo Hello-World

Basic image test

podman run -it --rm fedora bash

Optional custom container

For this test you can install the Fedora dockerfiles package (rpm-ostree install fedora-dockerfiles) or use the example dockerfile below:

vi Dockerfile
FROM fedora:latest
RUN /usr/bin/dnf install -y httpd
EXPOSE 80
CMD ["-D", "FOREGROUND"]
ENTRYPOINT ["/usr/sbin/httpd"]

Build an image

sudo podman build $(pwd) -t f29-httpd

Verify the image

podman images

Run container

podman run -d -p 80:80 f29-httpd

Firewalld commands

firewall-cmd --permanent --zone=trusted --add-interface=cni0
firewall-cmd --permanent --zone=trusted --add-port=80/tcp

Test apache is working

curl http://localhost/

Open a web browser and test the page is visible

Results

  1. Latest image pulled successfully from the Registry
  2. podman is installed
  3. Hello World is displayed
  4. Image booted to a bash shell
  5. Custom container created, httpd test page visible on a browser or using curl.