Merge pull request #3154 from haircommander/tutorial-conmon
Fixup conmon documentation
This commit is contained in:
commit
18a953918e
|
|
@ -67,7 +67,7 @@ The plan is to use OCI projects and best of breed libraries for different aspect
|
|||
- Storage: Container and image storage is managed by [containers/storage](https://github.com/containers/storage)
|
||||
- Networking: Networking support through use of [CNI](https://github.com/containernetworking/cni)
|
||||
- Builds: Builds are supported via [Buildah](https://github.com/containers/buildah).
|
||||
- Conmon: [Conmon](https://github.com/cri-o/cri-o) is a tool for monitoring OCI runtimes. It is part of the CRI-O package
|
||||
- Conmon: [Conmon](https://github.com/containers/conmon) is a tool for monitoring OCI runtimes.
|
||||
|
||||
## Podman Information for Developers
|
||||
|
||||
|
|
|
|||
|
|
@ -188,13 +188,12 @@ export PATH=$GOPATH/bin:$PATH
|
|||
#### conmon
|
||||
|
||||
The latest version of `conmon` is expected to be installed on the system. Conmon is used to monitor OCI Runtimes.
|
||||
To build from source, use the following (if not already executed above, run `export GOPATH=~/go && mkdir -p $GOPATH`):
|
||||
To build from source, use the following:
|
||||
|
||||
```bash
|
||||
git clone https://github.com/cri-o/cri-o $GOPATH/src/github.com/cri-o/cri-o
|
||||
cd $GOPATH/src/github.com/cri-o/cri-o
|
||||
mkdir bin
|
||||
make bin/conmon
|
||||
git clone https://github.com/containers/conmon
|
||||
cd conmon
|
||||
make
|
||||
sudo install -D -m 755 bin/conmon /usr/libexec/podman/conmon
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue