labels.go 301 B

12345678910
  1. package ipamapi
  2. const (
  3. // Prefix constant marks the reserved label space for libnetwork
  4. Prefix = "com.docker.network"
  5. // AllocSerialPrefix constant marks the reserved label space for libnetwork ipam
  6. // allocation ordering.(serial/first available)
  7. AllocSerialPrefix = Prefix + ".ipam.serial"
  8. )