Revision a2388a67d77ad51c95a0373ec96d010c104ceff6 authored by Tam Mach on 17 June 2024, 06:38:19 UTC, committed by Tam Mach on 17 June 2024, 11:20:51 UTC
This is to add enable-http-debug flag to capture more information in
case of failure. Additionally, the stop-on-failure flag is added for
faster feedback.

Signed-off-by: Tam Mach <tam.mach@cilium.io>
1 parent 7e7e77e
Raw File
provider_azure_register.go
// SPDX-License-Identifier: Apache-2.0
// Copyright Authors of Cilium

//go:build ipam_provider_azure

package cmd

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