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

Commit dd26e9e

Browse files
committed
Improve documentation of use with Podman
Replace: #39 Originally submitted by @omarc1492 Signed-off-by: Daniel J Walsh <[email protected]>
1 parent 19b5b1c commit dd26e9e

File tree

2 files changed

+81
-9
lines changed

2 files changed

+81
-9
lines changed

README_PODMAN.md

+33-9
Original file line numberDiff line numberDiff line change
@@ -17,25 +17,49 @@ Using your package manager, install the *dnsmasq* package. For Fedora, this wou
1717
## Build and install
1818

1919
1. using git, clone the *github.com/containers/dnsname* repository.
20-
2. make install PREFIX=/usr -- this will install the dnsname plugin into /usr/libexec/cni where your CNI plugins
21-
should already exist.
20+
2. make install PREFIX=/usr -- this will install the dnsname plugin into /usr/libexec/cni where
21+
your CNI plugins should already exist.
2222

2323
## Configure a CNI network for Podman
2424

2525
1. Create a new network using `podman network create`. For example, `podman network create foobar` will suffice.
2626

27-
The following example [configuration file](example/cni-podman1.conflist) shows a usable example for Podman.
27+
The following example [configuration file](example/foobar.conflist) shows a usable example for Podman.
28+
29+
2. (optional)+The configuration will be automatically enabled for newly created networks via
30+
`podman network create`. If you want to add this feature to an exisiting network add the needed
31+
lines to `/etc/cni/net.d/foobar.conflist` using your favorite editor. For example:
32+
33+
```
34+
{
35+
"cniVersion": "0.4.0",
36+
"name": "foobar",
37+
"plugins": [
38+
...
39+
{
40+
"type": "dnsname",
41+
"domainName": "dns.podman"
42+
"capabilities": {
43+
"aliases": true
44+
}
45+
}
46+
]
47+
}
48+
```
2849

2950
## Example: container name resolution
3051

31-
1. sudo podman run -dt --name web --network foobar quay.io/libpod/alpine_nginx:latest
32-
5139d65d22135e9ecab511559d863754550894a32285befd94dab231017048c2
52+
In this test image, the nginx server will
53+
respond with *podman rulez* on an http request.
54+
**Note**: we use the --network foobar here.
3355

34-
Note: we use the --network foobar here. Also, in this test image, the nginx server will respond with
35-
*podman rulez* on an http request.
36-
2. sudo podman run -it --name client --network cni-podman1 quay.io/libpod/alpine_nginx:latest curl http://web/
37-
podman rulez
56+
```console
57+
sudo podman run -dt --name web --network foobar quay.io/libpod/alpine_nginx:latest
58+
5139d65d22135e9ecab511559d863754550894a32285befd94dab231017048c2
3859

60+
sudo podman run -it --name client --network foobar quay.io/libpod/alpine_nginx:latest curl http://web/
61+
podman rulez
62+
```
3963

4064
## Enabling name resolution on the default Podman network
4165
After making sure the *dnsplugin* is functioning properly, you can add name resolution to your default Podman

example/foobar.conflist

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"cniVersion": "0.4.0",
3+
"name": "foobar",
4+
"plugins": [
5+
{
6+
"type": "bridge",
7+
"bridge": "cni-podman1",
8+
"isGateway": true,
9+
"ipMasq": true,
10+
"hairpinMode": true,
11+
"ipam": {
12+
"type": "host-local",
13+
"routes": [
14+
{
15+
"dst": "0.0.0.0/0"
16+
}
17+
],
18+
"ranges": [
19+
[
20+
{
21+
"subnet": "10.89.0.0/24"
22+
}
23+
]
24+
]
25+
}
26+
},
27+
{
28+
"type": "portmap",
29+
"capabilities": {
30+
"portMappings": true
31+
}
32+
},
33+
{
34+
"type": "firewall",
35+
"backend": ""
36+
},
37+
{
38+
"type": "tuning"
39+
},
40+
{
41+
"type": "dnsname",
42+
"domainName": "dns.podman",
43+
"capabilities": {
44+
"aliases": true
45+
}
46+
}
47+
]
48+
}

0 commit comments

Comments
 (0)