https://github.com/cilium/cilium
Raw File
Tip revision: 4c9a6302c9423e821c00930ca00f8eb6a34e9313 authored by Joe Stringer on 15 August 2022, 23:29:39 UTC
Prepare for release v1.12.1
Tip revision: 4c9a630
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