-
Notifications
You must be signed in to change notification settings - Fork 1
/
create-dummy-containers.go
76 lines (67 loc) · 2.26 KB
/
create-dummy-containers.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
package main
import (
"flag"
"fmt"
"path/filepath"
"strconv"
"time"
core "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/tools/clientcmd"
"k8s.io/client-go/util/homedir"
)
func main() {
var kubeconfig *string
if home := homedir.HomeDir(); home != "" { // check if machine has home directory.
// read kubeconfig flag. if not provided use config file $HOME/.kube/config
kubeconfig = flag.String("kubeconfig", filepath.Join(home, ".kube", "config"), "(optional) absolute path to the kubeconfig file")
} else {
kubeconfig = flag.String("kubeconfig", "", "absolute path to the kubeconfig file")
}
flag.Parse()
config, err := clientcmd.BuildConfigFromFlags("", *kubeconfig)
if err != nil {
panic(err)
}
clientset, err := kubernetes.NewForConfig(config)
if err != nil {
panic(err)
}
for i := 0; i < 50; i++ {
// build the pod defination we want to deploy
pod := getPodObject(strconv.Itoa(i))
// now create the pod in kubernetes cluster using the clientset
pod, err = clientset.CoreV1().Pods(pod.Namespace).Create(pod)
if err != nil {
panic(err)
}
fmt.Println("Pod %d created successfully...", i)
time.Sleep(5 * time.Second)
}
}
func getPodObject(number string) *core.Pod {
return &core.Pod{
ObjectMeta: metav1.ObjectMeta{
Name: "my-test-pod-" + number,
Namespace: "default",
Labels: map[string]string{
"app": "demo",
"number": number,
},
},
Spec: core.PodSpec{
Containers: []core.Container{
{
Name: "busybox",
Image: "busybox",
ImagePullPolicy: core.PullIfNotPresent,
Command: []string{
"sleep",
"3600",
},
},
},
},
}
}