2019-06-14 03:05:57 +00:00
|
|
|
package allocrunner
|
|
|
|
|
|
|
|
import (
|
2019-09-04 20:33:25 +00:00
|
|
|
"context"
|
|
|
|
|
2019-06-14 03:05:57 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
|
|
"github.com/hashicorp/nomad/plugins/drivers"
|
|
|
|
)
|
|
|
|
|
|
|
|
// NetworkConfigurator sets up and tears down the interfaces, routes, firewall
|
|
|
|
// rules, etc for the configured networking mode of the allocation.
|
|
|
|
type NetworkConfigurator interface {
|
2019-09-04 20:33:25 +00:00
|
|
|
Setup(context.Context, *structs.Allocation, *drivers.NetworkIsolationSpec) error
|
|
|
|
Teardown(context.Context, *structs.Allocation, *drivers.NetworkIsolationSpec) error
|
2019-06-14 03:05:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// hostNetworkConfigurator is a noop implementation of a NetworkConfigurator for
|
|
|
|
// when the alloc join's a client host's network namespace and thus does not
|
|
|
|
// require further configuration
|
|
|
|
type hostNetworkConfigurator struct{}
|
|
|
|
|
2019-09-04 20:33:25 +00:00
|
|
|
func (h *hostNetworkConfigurator) Setup(context.Context, *structs.Allocation, *drivers.NetworkIsolationSpec) error {
|
2019-06-14 03:05:57 +00:00
|
|
|
return nil
|
|
|
|
}
|
2019-09-04 20:33:25 +00:00
|
|
|
func (h *hostNetworkConfigurator) Teardown(context.Context, *structs.Allocation, *drivers.NetworkIsolationSpec) error {
|
2019-06-14 03:05:57 +00:00
|
|
|
return nil
|
|
|
|
}
|