Marcelo Guerrero Viveros d71d0f2da1 Fix revive linter errors
Golangci-lint is now running version 1.52.1. This introduced some errors.

Signed-off-by: Marcelo Guerrero Viveros <marguerr@redhat.com>
2023-03-24 21:04:39 +01:00
..
2023-03-24 21:04:39 +01:00
2023-03-24 21:04:39 +01:00

title, description, date, toc, draft, weight
title description date toc draft weight
dummy plugin plugins/main/dummy/README.md 2022-05-12 true true 200

Overview

dummy is a useful feature for routing packets through the Linux kernel without transmitting.

Like loopback, it is a purely virtual interface that allows packets to be routed to a designated IP address. Unlike loopback, the IP address can be arbitrary and is not restricted to the 127.0.0.0/8 range.

Example configuration

{
	"name": "mynet",
	"type": "dummy",
	"ipam": {
		"type": "host-local",
		"subnet": "10.1.2.0/24"
	}
}

Network configuration reference

  • name (string, required): the name of the network.
  • type (string, required): "dummy".
  • ipam (dictionary, required): IPAM configuration to be used for this network.

Notes

  • dummy does not transmit packets. Therefore the container will not be able to reach any external network. This solution is designed to be used in conjunction with other CNI plugins (e.g., bridge) to provide an internal non-loopback address for applications to use.