We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c7c1902 + 3ff527d commit 9397ea5Copy full SHA for 9397ea5
pkg/corral/node.go
@@ -1,9 +1,9 @@
1
package corral
2
3
type Node struct {
4
- Name string `yaml:"name,omitempty"`
5
- User string `yaml:"user,omitempty"`
6
- Address string `yaml:"address,omitempty"`
7
- BastionAddress string `yaml:"bastion_address,omitempty"`
8
- OverlayRoot string `yaml:"overlay_root"`
+ Name string `json:"name,omitempty" yaml:"name,omitempty"`
+ User string `json:"user,omitempty" yaml:"user,omitempty"`
+ Address string `json:"address,omitempty" yaml:"address,omitempty"`
+ BastionAddress string `json:"bastion_address,omitempty" yaml:"bastion_address,omitempty"`
+ OverlayRoot string `json:"overlay_root" yaml:"overlay_root"`
9
}
0 commit comments