diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-01-16 17:33:56 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-01-27 06:48:20 +0000 |
commit | 3aa63b2b941aac40c5e3639b0880922b842052ab (patch) | |
tree | 83bc6337500b3f5ef0f94a0f94f87f6a3549f01b /install.md | |
parent | fb58b873981d2fd0d4f97036afab2aa2ce9e1633 (diff) | |
download | podman-3aa63b2b941aac40c5e3639b0880922b842052ab.tar.gz podman-3aa63b2b941aac40c5e3639b0880922b842052ab.tar.bz2 podman-3aa63b2b941aac40c5e3639b0880922b842052ab.zip |
Remove conmon, get package from CRI-O
conmon should not be built in two different places.
conmon is now a separate package in Fedora so we can just
add requires, for use on Ubuntu we can just require cri-o to
be installed.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Closes: #151
Approved by: mheon
Diffstat (limited to 'install.md')
-rw-r--r-- | install.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/install.md b/install.md index 498731c20..0973088d1 100644 --- a/install.md +++ b/install.md @@ -6,6 +6,10 @@ The latest version of `runc` is expected to be installed on the system. It is picked up as the default runtime by podman. +#### conmon installed + +The latest version of `conmon` is expected to be installed on the system. Conmon is used to monitor OCI Runtimes + #### Setup CNI networking A proper description of setting up CNI networking is given in the @@ -22,6 +26,7 @@ Fedora, CentOS, RHEL, and related distributions: ```bash yum install -y \ btrfs-progs-devel \ + conmon \ device-mapper-devel \ git \ glib2-devel \ @@ -45,6 +50,7 @@ Debian, Ubuntu, and related distributions: ```bash apt-get install -y \ btrfs-tools \ + cri-o \ git \ golang-go \ libassuan-dev \ |