Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions store/nodegroup.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@ import (
)

type NodeGroup struct {
Name string
Driver string
Nodes []Node
Dynamic bool
DockerContext bool
Name string
Driver string
Nodes []Node
Dynamic bool

// skip the following fields from being saved in the store
DockerContext bool `json:"-"`
}

type Node struct {
Expand Down