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
allocator_providers.go
// SPDX-License-Identifier: Apache-2.0
// Copyright Authors of Cilium

package cmd

import (
	"github.com/cilium/cilium/pkg/ipam/allocator"
)

var (
	allocatorProviders = make(map[string]allocator.AllocatorProvider)
)
back to top