forked from kubernetes-sigs/kind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
createoption.go
126 lines (107 loc) · 4.16 KB
/
createoption.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
Copyright 2019 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cluster
import (
"time"
"sigs.k8s.io/kind/pkg/apis/config/v1alpha4"
internalcreate "sigs.k8s.io/kind/pkg/cluster/internal/create"
internalencoding "sigs.k8s.io/kind/pkg/internal/apis/config/encoding"
)
// CreateOption is a Provider.Create option
type CreateOption interface {
apply(*internalcreate.ClusterOptions) error
}
type createOptionAdapter func(*internalcreate.ClusterOptions) error
func (c createOptionAdapter) apply(o *internalcreate.ClusterOptions) error {
return c(o)
}
// CreateWithConfigFile configures the config file path to use
func CreateWithConfigFile(path string) CreateOption {
return createOptionAdapter(func(o *internalcreate.ClusterOptions) error {
var err error
o.Config, err = internalencoding.Load(path)
return err
})
}
// CreateWithRawConfig configures the config to use from raw (yaml) bytes
func CreateWithRawConfig(raw []byte) CreateOption {
return createOptionAdapter(func(o *internalcreate.ClusterOptions) error {
var err error
o.Config, err = internalencoding.Parse(raw)
return err
})
}
// CreateWithV1Alpha4Config configures the cluster with a v1alpha4 config
func CreateWithV1Alpha4Config(config *v1alpha4.Cluster) CreateOption {
return createOptionAdapter(func(o *internalcreate.ClusterOptions) error {
o.Config = internalencoding.V1Alpha4ToInternal(config)
return nil
})
}
// CreateWithNodeImage overrides the image on all nodes in config
// as an easy way to change the Kubernetes version
func CreateWithNodeImage(nodeImage string) CreateOption {
return createOptionAdapter(func(o *internalcreate.ClusterOptions) error {
o.NodeImage = nodeImage
return nil
})
}
// CreateWithRetain disables deletion of nodes and any other cleanup
// that would normally occur after a failure to create
// This is mainly used for debugging purposes
func CreateWithRetain(retain bool) CreateOption {
return createOptionAdapter(func(o *internalcreate.ClusterOptions) error {
o.Retain = retain
return nil
})
}
// CreateWithWaitForReady configures a maximum wait time for the control plane
// node(s) to be ready. By default no waiting is performed
func CreateWithWaitForReady(waitTime time.Duration) CreateOption {
return createOptionAdapter(func(o *internalcreate.ClusterOptions) error {
o.WaitForReady = waitTime
return nil
})
}
// CreateWithKubeconfigPath sets the explicit --kubeconfig path
func CreateWithKubeconfigPath(explicitPath string) CreateOption {
return createOptionAdapter(func(o *internalcreate.ClusterOptions) error {
o.KubeconfigPath = explicitPath
return nil
})
}
// CreateWithStopBeforeSettingUpKubernetes enables skipping setting up
// kubernetes (kubeadm init etc.) after creating node containers
// This generally shouldn't be used and is only lightly supported, but allows
// provisioning node containers for experimentation
func CreateWithStopBeforeSettingUpKubernetes(stopBeforeSettingUpKubernetes bool) CreateOption {
return createOptionAdapter(func(o *internalcreate.ClusterOptions) error {
o.StopBeforeSettingUpKubernetes = stopBeforeSettingUpKubernetes
return nil
})
}
// CreateWithDisplayUsage enables displaying usage if displayUsage is true
func CreateWithDisplayUsage(displayUsage bool) CreateOption {
return createOptionAdapter(func(o *internalcreate.ClusterOptions) error {
o.DisplayUsage = displayUsage
return nil
})
}
// CreateWithDisplaySalutation enables display a salutation at the end of create
// cluster if displaySalutation is true
func CreateWithDisplaySalutation(displaySalutation bool) CreateOption {
return createOptionAdapter(func(o *internalcreate.ClusterOptions) error {
o.DisplaySalutation = displaySalutation
return nil
})
}