https://github.com/cilium/cilium
Raw File
Tip revision: 506fcf67bbc2562c0fe60bca7a2fe5d751300185 authored by Joe Stringer on 15 July 2022, 17:05:01 UTC
Prepare for release v1.11.7
Tip revision: 506fcf6
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