https://github.com/cilium/cilium
Raw File
Tip revision: 5082f025455a101775bb1ae1ae579ed8402b45ec authored by Joe Stringer on 09 March 2022, 01:21:31 UTC
XXX: Move CIDR policy handling to new ipcache interface
Tip revision: 5082f02
provider_azure_register.go
// SPDX-License-Identifier: Apache-2.0
// Copyright Authors of Cilium

//go:build ipam_provider_azure
// +build ipam_provider_azure

package main

import (
	// These dependencies should be included only when this file is included in the build.
	allocatorAzure "github.com/cilium/cilium/pkg/ipam/allocator/azure" // Azure allocator task.
	ipamOption "github.com/cilium/cilium/pkg/ipam/option"
)

func init() {
	allocatorProviders[ipamOption.IPAMAzure] = &allocatorAzure.AllocatorAzure{}
}
back to top