github.com/cilium/cilium@v1.16.2/operator/cmd/provider_azure_register.go (about) 1 // SPDX-License-Identifier: Apache-2.0 2 // Copyright Authors of Cilium 3 4 //go:build ipam_provider_azure 5 6 package cmd 7 8 import ( 9 // These dependencies should be included only when this file is included in the build. 10 allocatorAzure "github.com/cilium/cilium/pkg/ipam/allocator/azure" // Azure allocator task. 11 ipamOption "github.com/cilium/cilium/pkg/ipam/option" 12 ) 13 14 func init() { 15 allocatorProviders[ipamOption.IPAMAzure] = &allocatorAzure.AllocatorAzure{} 16 }