@@ -17,25 +17,49 @@ Using your package manager, install the *dnsmasq* package. For Fedora, this wou
17
17
## Build and install
18
18
19
19
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.
22
22
23
23
## Configure a CNI network for Podman
24
24
25
25
1 . Create a new network using ` podman network create ` . For example, ` podman network create foobar ` will suffice.
26
26
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
+ ```
28
49
29
50
## Example: container name resolution
30
51
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.
33
55
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
38
59
60
+ sudo podman run -it --name client --network foobar quay.io/libpod/alpine_nginx:latest curl http://web/
61
+ podman rulez
62
+ ```
39
63
40
64
## Enabling name resolution on the default Podman network
41
65
After making sure the * dnsplugin* is functioning properly, you can add name resolution to your default Podman
0 commit comments