https://github.com/cilium/cilium
Raw File
Tip revision: a1d7fbd43b563c809330b1c3e28165a3e7ff43aa authored by Michi Mutsuzaki on 12 February 2024, 23:51:30 UTC
Prepare for release v1.12.19
Tip revision: a1d7fbd
provider_azure_register.go
// SPDX-License-Identifier: Apache-2.0
// Copyright Authors of Cilium

//go: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