https://github.com/cilium/cilium
Raw File
Tip revision: 701acde56b8cc28bb175dc2038b2fb0492d31fd3 authored by Joe Stringer on 16 December 2022, 00:03:30 UTC
Prepare for release v1.12.5
Tip revision: 701acde
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