mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 00:15:43 +03:00
20 lines
499 B
Go
20 lines
499 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
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},
|
|
}
|
|
)
|