https://github.com/cilium/cilium
Raw File
Tip revision: 1c466d26ff0edfb5021d024f755d4d00bc744792 authored by Quentin Monnet on 12 October 2022, 10:33:37 UTC
Prepare for release v1.12.3
Tip revision: 1c466d2
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