https://github.com/cilium/cilium
Raw File
Tip revision: 04ea6202637d246af09b6edfec2857bc86a3c180 authored by Maxim Mikityanskiy on 17 January 2024, 18:26:48 UTC
Prepare for release v1.12.18
Tip revision: 04ea620
allocator_providers.go
// SPDX-License-Identifier: Apache-2.0
// Copyright Authors of Cilium

package main

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

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