Rebase CreateClusterOptions

This commit is contained in:
Thomas Peitz 2017-01-30 18:54:24 +01:00
parent 4f30a40f0a
commit 510ec842c7
1 changed files with 23 additions and 23 deletions

View File

@ -37,29 +37,29 @@ import (
) )
type CreateClusterOptions struct { type CreateClusterOptions struct {
ClusterName string ClusterName string
Yes bool Yes bool
Target string Target string
Models string Models string
Cloud string Cloud string
Zones string Zones []string
MasterZones string MasterZones []string
NodeSize string NodeSize string
MasterSize string MasterSize string
NodeCount int32 NodeCount int32
Project string Project string
KubernetesVersion string KubernetesVersion string
OutDir string OutDir string
Image string Image string
SSHPublicKey string SSHPublicKey string
VPCID string VPCID string
NetworkCIDR string NetworkCIDR string
DNSZone string DNSZone string
AdminAccess []string AdminAccess []string
Networking string Networking string
NodeSecurityGroupIDs string NodeSecurityGroups []string
MasterSecurityGroupIDs string MasterSecurityGroups []string
AssociatePublicIP *bool AssociatePublicIP *bool
// Channel is the location of the api.Channel to use for our defaults // Channel is the location of the api.Channel to use for our defaults
Channel string Channel string