1
0
mirror of https://github.com/rancher/types.git synced 2025-09-25 12:21:24 +00:00

Set default to true

This commit is contained in:
Darren Shepherd
2018-01-19 21:43:37 -07:00
parent 094ae74c93
commit 0378557695

View File

@@ -110,7 +110,7 @@ type MachineSpec struct {
ClusterName string `json:"clusterName,omitempty" norman:"type=reference[cluster],noupdate,required"`
Role []string `json:"role,omitempty" norman:"noupdate,type=array[enum],options=etcd|worker|controlplane"`
MachineTemplateName string `json:"machineTemplateName,omitempty" norman:"type=reference[machineTemplate],noupdate"`
UseInternalIPAddress bool `json:"useInternalIpAddress,omitempty"`
UseInternalIPAddress bool `json:"useInternalIpAddress,omitempty" norman:"default=true"`
}
type MachineCommonParams struct {