https://github.com/cilium/cilium
Raw File
Tip revision: 0ec4b14420496524fd95ccaba4758779588e272b authored by Bill Mulligan on 16 September 2022, 11:25:03 UTC
gradutation docs update
Tip revision: 0ec4b14
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