https://github.com/cilium/cilium
Raw File
Tip revision: ddb1395278d8d1f84da528367648a63bdb808399 authored by André Martins on 15 November 2021, 13:24:40 UTC
Prepare for release v1.11.0-rc1
Tip revision: ddb1395
provider_azure_register.go
// SPDX-License-Identifier: Apache-2.0
// Copyright 2017-2020 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