-
Notifications
You must be signed in to change notification settings - Fork 55
/
deployment.go
159 lines (152 loc) · 5.21 KB
/
deployment.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
//
// Copyright (c) 2019-2020 Red Hat, Inc.
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0
// which is available at https://www.eclipse.org/legal/epl-2.0/
//
// SPDX-License-Identifier: EPL-2.0
//
// Contributors:
// Red Hat, Inc. - initial API and implementation
//
package asyncstorage
import (
"github.com/devfile/devworkspace-operator/controllers/workspace/provision"
"github.com/devfile/devworkspace-operator/internal/images"
appsv1 "k8s.io/api/apps/v1"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/equality"
k8sErrors "k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/api/resource"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
"sigs.k8s.io/controller-runtime/pkg/client"
)
func SyncWorkspaceSyncDeploymentToCluster(namespace string, sshConfigMap *corev1.ConfigMap, storage *corev1.PersistentVolumeClaim, clusterAPI provision.ClusterAPI) (*appsv1.Deployment, error) {
specDeployment := getWorkspaceSyncDeploymentSpec(namespace, sshConfigMap, storage)
clusterDeployment, err := GetWorkspaceSyncDeploymentCluster(namespace, clusterAPI)
if err != nil {
if !k8sErrors.IsNotFound(err) {
return nil, err
}
err := clusterAPI.Client.Create(clusterAPI.Ctx, specDeployment)
if err != nil && !k8sErrors.IsAlreadyExists(err) {
return nil, err
}
return nil, NotReadyError
}
if !equality.Semantic.DeepDerivative(specDeployment.Spec, clusterDeployment.Spec) {
err := clusterAPI.Client.Patch(clusterAPI.Ctx, specDeployment, client.Merge)
if err != nil && !k8sErrors.IsConflict(err) {
return nil, err
}
return nil, NotReadyError
}
if clusterDeployment.Status.ReadyReplicas > 0 {
return clusterDeployment, nil
}
return nil, NotReadyError
}
func getWorkspaceSyncDeploymentSpec(namespace string, sshConfigMap *corev1.ConfigMap, storage *corev1.PersistentVolumeClaim) *appsv1.Deployment {
replicas := int32(1)
terminationGracePeriod := int64(1)
modeReadOnly := int32(0640)
deployment := &appsv1.Deployment{
ObjectMeta: metav1.ObjectMeta{
Name: asyncServerDeploymentName,
Namespace: namespace,
Labels: asyncServerLabels,
},
Spec: appsv1.DeploymentSpec{
Replicas: &replicas,
Selector: &metav1.LabelSelector{
MatchLabels: asyncServerLabels,
},
Strategy: appsv1.DeploymentStrategy{
Type: appsv1.RecreateDeploymentStrategyType,
},
Template: corev1.PodTemplateSpec{
ObjectMeta: metav1.ObjectMeta{
Name: "async-storage-server",
Namespace: namespace,
Labels: asyncServerLabels,
},
Spec: corev1.PodSpec{
Containers: []corev1.Container{
{
Name: "async-storage-server",
Image: images.GetAsyncStorageServerImage(),
Ports: []corev1.ContainerPort{
{
ContainerPort: rsyncPort,
Protocol: corev1.ProtocolTCP,
},
},
Resources: corev1.ResourceRequirements{
Limits: map[corev1.ResourceName]resource.Quantity{
corev1.ResourceMemory: resource.MustParse(asyncServerMemoryLimit),
},
Requests: map[corev1.ResourceName]resource.Quantity{
corev1.ResourceMemory: resource.MustParse(asyncServerMemoryRequest),
},
},
VolumeMounts: []corev1.VolumeMount{
{
Name: "async-storage-data",
MountPath: "/async-storage",
},
{
// TODO: mounting a configmap with SubPath prevents changes from being propagated into the
// container and not using a subpath replaces all files in the directory and mounts it as a
// read-only filesystem.
// As a workaround, we could mount the whole configmap to some other directory and copy
// the file on startup, but this would require changes in the che-workspace-data-sync-storage
// container
// See issue https://github.com/kubernetes/kubernetes/issues/50345 for more info
Name: "async-storage-config",
MountPath: "/.ssh/authorized_keys",
ReadOnly: true,
SubPath: "authorized_keys",
},
},
},
},
Volumes: []corev1.Volume{
{
Name: "async-storage-data",
VolumeSource: corev1.VolumeSource{
PersistentVolumeClaim: &corev1.PersistentVolumeClaimVolumeSource{
ClaimName: storage.Name,
},
},
},
{
Name: "async-storage-config",
VolumeSource: corev1.VolumeSource{
ConfigMap: &corev1.ConfigMapVolumeSource{
LocalObjectReference: corev1.LocalObjectReference{
Name: sshConfigMap.Name,
},
DefaultMode: &modeReadOnly,
},
},
},
},
TerminationGracePeriodSeconds: &terminationGracePeriod,
SecurityContext: provision.GetDevWorkspaceSecurityContext(),
AutomountServiceAccountToken: nil,
},
},
},
}
return deployment
}
func GetWorkspaceSyncDeploymentCluster(namespace string, clusterAPI provision.ClusterAPI) (*appsv1.Deployment, error) {
deploy := &appsv1.Deployment{}
namespacedName := types.NamespacedName{
Name: "async-storage", // TODO
Namespace: namespace,
}
err := clusterAPI.Client.Get(clusterAPI.Ctx, namespacedName, deploy)
return deploy, err
}