Files
nomad/client/devicemanager/state/state.go
2023-04-10 15:36:59 +00:00

15 lines
425 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package state
import pstructs "github.com/hashicorp/nomad/plugins/shared/structs"
// PluginState is used to store the device manager's state across restarts of the
// agent
type PluginState struct {
// ReattachConfigs are the set of reattach configs for plugins launched by
// the device manager
ReattachConfigs map[string]*pstructs.ReattachConfig
}