-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.go
121 lines (103 loc) · 2.9 KB
/
utils.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
/*
Copyright 2021 The Dapr 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 utils
import (
"flag"
"path/filepath"
"regexp"
"strings"
"time"
corev1 "k8s.io/api/core/v1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
"k8s.io/client-go/tools/clientcmd"
"k8s.io/client-go/util/homedir"
)
var (
clientSet *kubernetes.Clientset
kubeConfig *rest.Config
envRegexp = regexp.MustCompile(`(?m)(,)\s*[a-zA-Z\_][a-zA-Z0-9\_]*=`)
)
func initKubeConfig() {
kubeConfig = GetConfig()
clientset, err := kubernetes.NewForConfig(kubeConfig)
if err != nil {
panic(err)
}
clientSet = clientset
}
// GetConfig gets a kubernetes rest config.
func GetConfig() *rest.Config {
if kubeConfig != nil {
return kubeConfig
}
var kubeconfig *string
if home := homedir.HomeDir(); home != "" {
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()
conf, err := rest.InClusterConfig()
if err != nil {
conf, err = clientcmd.BuildConfigFromFlags("", *kubeconfig)
if err != nil {
panic(err)
}
}
return conf
}
// GetKubeClient gets a kubernetes client.
func GetKubeClient() *kubernetes.Clientset {
if clientSet == nil {
initKubeConfig()
}
return clientSet
}
// ToISO8601DateTimeString converts dateTime to ISO8601 Format
// ISO8601 Format: 2020-01-01T01:01:01.10101Z.
func ToISO8601DateTimeString(dateTime time.Time) string {
return dateTime.UTC().Format("2006-01-02T15:04:05.999999Z")
}
// add env-vars from annotations.
func ParseEnvString(envStr string) []corev1.EnvVar {
indexes := envRegexp.FindAllStringIndex(envStr, -1)
lastEnd := len(envStr)
parts := make([]string, len(indexes)+1)
for i := len(indexes) - 1; i >= 0; i-- {
parts[i+1] = strings.TrimSpace(envStr[indexes[i][0]+1 : lastEnd])
lastEnd = indexes[i][0]
}
parts[0] = envStr[0:lastEnd]
envVars := make([]corev1.EnvVar, 0)
for _, s := range parts {
pairs := strings.Split(strings.TrimSpace(s), "=")
if len(pairs) != 2 {
continue
}
envVars = append(envVars, corev1.EnvVar{
Name: pairs[0],
Value: pairs[1],
})
}
return envVars
}
// StringSliceContains return true if an array containe the "str" string.
func StringSliceContains(needle string, haystack []string) bool {
for _, item := range haystack {
if item == needle {
return true
}
}
return false
}