github.com/hernad/nomad@v1.6.112/helper/pluginutils/loader/api_versions.go (about) 1 // Copyright (c) HashiCorp, Inc. 2 // SPDX-License-Identifier: MPL-2.0 3 4 package loader 5 6 import ( 7 "github.com/hernad/nomad/plugins/base" 8 "github.com/hernad/nomad/plugins/device" 9 "github.com/hernad/nomad/plugins/drivers" 10 ) 11 12 var ( 13 // AgentSupportedApiVersions is the set of API versions supported by the 14 // Nomad agent by plugin type. 15 AgentSupportedApiVersions = map[string][]string{ 16 base.PluginTypeDevice: {device.ApiVersion010}, 17 base.PluginTypeDriver: {drivers.ApiVersion010}, 18 } 19 )