20 lines
498 B
Go
20 lines
498 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package loader
|
|
|
|
import (
|
|
"github.com/hashicorp/nomad/plugins/base"
|
|
"github.com/hashicorp/nomad/plugins/device"
|
|
"github.com/hashicorp/nomad/plugins/drivers"
|
|
)
|
|
|
|
var (
|
|
// AgentSupportedApiVersions is the set of API versions supported by the
|
|
// Nomad agent by plugin type.
|
|
AgentSupportedApiVersions = map[string][]string{
|
|
base.PluginTypeDevice: {device.ApiVersion010},
|
|
base.PluginTypeDriver: {drivers.ApiVersion010},
|
|
}
|
|
)
|