forked from jenkins-x/jx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
namespaces.go
120 lines (109 loc) · 3.08 KB
/
namespaces.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
package kube
import (
"fmt"
"github.com/jenkins-x/jx/pkg/apis/jenkins.io/v1"
"github.com/jenkins-x/jx/pkg/client/clientset/versioned"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
)
const (
LabelValueDevEnvironment = "dev"
LabelTeam = "team"
LabelEnvironment = "env"
)
func EnsureEnvironmentNamespaceSetup(kubeClient *kubernetes.Clientset, jxClient *versioned.Clientset, env *v1.Environment, ns string) error {
// lets create the namespace if we are on the same cluster
spec := &env.Spec
if spec.Cluster == "" && spec.Namespace != "" {
labels := map[string]string{
LabelTeam: ns,
LabelEnvironment: env.Name,
}
annotations := map[string]string{}
err := EnsureNamespaceCreated(kubeClient, spec.Namespace, labels, annotations)
if err != nil {
return err
}
}
// lets annotate the team namespace as being the developer environment
labels := map[string]string{
LabelTeam: ns,
LabelEnvironment: LabelValueDevEnvironment,
}
annotations := map[string]string{}
// lets check that the current namespace is marked as the dev environment
err := EnsureNamespaceCreated(kubeClient, ns, labels, annotations)
if err != nil {
return err
}
// lets ensure there is a dev Environment setup so that we can easily switch between all the environments
_, err = jxClient.JenkinsV1().Environments(ns).Get(LabelValueDevEnvironment, metav1.GetOptions{})
if err != nil {
// lets create a dev environment
env := &v1.Environment{
ObjectMeta: metav1.ObjectMeta{
Name: LabelValueDevEnvironment,
},
Spec: v1.EnvironmentSpec{
Namespace: ns,
Label: "Development",
PromotionStrategy: v1.PromotionStrategyTypeNever,
},
}
_, err = jxClient.JenkinsV1().Environments(ns).Create(env)
if err != nil {
return err
}
}
return nil
}
// Ensure that the namespace exists for the given name
func EnsureNamespaceCreated(kubeClient *kubernetes.Clientset, name string, labels map[string]string, annotations map[string]string) error {
n, err := kubeClient.CoreV1().Namespaces().Get(name, metav1.GetOptions{})
if err == nil {
// lets check if we have the labels setup
if n.Annotations == nil {
n.Annotations = map[string]string{}
}
if n.Labels == nil {
n.Labels = map[string]string{}
}
changed := false
if labels != nil {
for k, v := range labels {
if n.Labels[k] != v {
n.Labels[k] = v
changed = true
}
}
}
if annotations != nil {
for k, v := range annotations {
if n.Annotations[k] != v {
n.Annotations[k] = v
changed = true
}
}
}
if changed {
_, err = kubeClient.CoreV1().Namespaces().Update(n)
if err != nil {
return fmt.Errorf("Failed to label Namespace %s %s", name, err)
}
}
return nil
}
namespace := &corev1.Namespace{
ObjectMeta: metav1.ObjectMeta{
Name: name,
Labels: labels,
Annotations: annotations,
},
}
_, err = kubeClient.CoreV1().Namespaces().Create(namespace)
if err != nil {
return fmt.Errorf("Failed to create Namespace %s %s", name, err)
}
return err
}