iQQBot 52a7727b4f
[node-labeler] Refactor node labeling to use taints instead of labels (#20652)
* [node-labeler] Refactor node labeling to use taints instead of labels

* [agent-smith] Add toleration to daemonset

* Add workspace component tolerations to various Gitpod components if it running in Full installation

* Apply suggestions from code review

Co-authored-by: Kyle Brennan <kyle@gitpod.io>

* Update components/node-labeler/cmd/run.go

Co-authored-by: Kyle Brennan <kyle@gitpod.io>

---------

Co-authored-by: Kyle Brennan <kyle@gitpod.io>
2025-03-11 03:30:39 -04:00

220 lines
6.4 KiB
Go

// Copyright (c) 2021 Gitpod GmbH. All rights reserved.
// Licensed under the GNU Affero General Public License (AGPL).
// See License.AGPL.txt in the project root for license information.
package wsproxy
import (
"github.com/gitpod-io/gitpod/common-go/baseserver"
"github.com/gitpod-io/gitpod/installer/pkg/cluster"
"github.com/gitpod-io/gitpod/installer/pkg/common"
wsmanagermk2 "github.com/gitpod-io/gitpod/installer/pkg/components/ws-manager-mk2"
appsv1 "k8s.io/api/apps/v1"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/resource"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/util/intstr"
"k8s.io/utils/pointer"
)
func deployment(ctx *common.RenderContext) ([]runtime.Object, error) {
labels := common.CustomizeLabel(ctx, Component, common.TypeMetaDeployment)
configHash, err := common.ObjectHash(configmap(ctx))
if err != nil {
return nil, err
}
volumes := []corev1.Volume{
{
Name: "config-certificates",
VolumeSource: corev1.VolumeSource{
Secret: &corev1.SecretVolumeSource{
SecretName: ctx.Config.Certificate.Name,
},
},
},
}
volumeMounts := []corev1.VolumeMount{
{
Name: "config-certificates",
MountPath: "/mnt/certificates"},
}
if ctx.Config.SSHGatewayHostKey != nil {
volumes = append(volumes, corev1.Volume{
Name: "host-key",
VolumeSource: corev1.VolumeSource{
Secret: &corev1.SecretVolumeSource{
SecretName: ctx.Config.SSHGatewayHostKey.Name,
},
},
})
volumeMounts = append(volumeMounts, corev1.VolumeMount{
Name: "host-key",
MountPath: "/mnt/host-key",
})
}
if ctx.Config.SSHGatewayCAKey != nil {
volumes = append(volumes, corev1.Volume{
Name: "ca-key",
VolumeSource: corev1.VolumeSource{
Secret: &corev1.SecretVolumeSource{
SecretName: ctx.Config.SSHGatewayCAKey.Name,
Optional: pointer.Bool(true),
},
},
})
volumeMounts = append(volumeMounts, corev1.VolumeMount{
Name: "ca-key",
MountPath: "/mnt/ca-key/ca.key",
SubPath: "ca.key",
ReadOnly: true,
})
}
podSpec := corev1.PodSpec{
PriorityClassName: common.SystemNodeCritical,
Affinity: cluster.WithNodeAffinityHostnameAntiAffinity(Component, cluster.AffinityLabelServices),
TopologySpreadConstraints: cluster.WithHostnameTopologySpread(Component),
EnableServiceLinks: pointer.Bool(false),
ServiceAccountName: Component,
SecurityContext: &corev1.PodSecurityContext{
RunAsUser: pointer.Int64(31002),
},
TerminationGracePeriodSeconds: pointer.Int64(360),
Volumes: append([]corev1.Volume{
{
Name: "config",
VolumeSource: corev1.VolumeSource{
ConfigMap: &corev1.ConfigMapVolumeSource{
LocalObjectReference: corev1.LocalObjectReference{Name: Component},
},
},
},
{
Name: "ws-manager-client-tls-certs",
VolumeSource: corev1.VolumeSource{
Secret: &corev1.SecretVolumeSource{
SecretName: wsmanagermk2.TLSSecretNameClient,
},
},
},
common.CAVolume(),
}, volumes...),
Containers: []corev1.Container{{
Name: Component,
Args: []string{"run", "/config/config.json"},
Image: ctx.ImageName(ctx.Config.Repository, Component, ctx.VersionManifest.Components.WSProxy.Version),
ImagePullPolicy: corev1.PullIfNotPresent,
Resources: common.ResourceRequirements(ctx, Component, Component, corev1.ResourceRequirements{
Requests: corev1.ResourceList{
"cpu": resource.MustParse("100m"),
"memory": resource.MustParse("32Mi"),
},
}),
Ports: []corev1.ContainerPort{{
Name: HTTPProxyPortName,
ContainerPort: HTTPProxyPort,
}, {
Name: HTTPSProxyPortName,
ContainerPort: HTTPSProxyPort,
}, {
Name: baseserver.BuiltinMetricsPortName,
ContainerPort: baseserver.BuiltinMetricsPort,
}, {
Name: SSHPortName,
ContainerPort: SSHServicePort,
}},
SecurityContext: &corev1.SecurityContext{
Privileged: pointer.Bool(false),
AllowPrivilegeEscalation: pointer.Bool(false),
},
Env: common.CustomizeEnvvar(ctx, Component, common.MergeEnv(
common.DefaultEnv(&ctx.Config),
common.WorkspaceTracingEnv(ctx, Component),
common.AnalyticsEnv(&ctx.Config),
// ws-proxy and proxy may not in the same cluster
common.ConfigcatEnvOutOfCluster(ctx),
)),
ReadinessProbe: &corev1.Probe{
InitialDelaySeconds: int32(2),
PeriodSeconds: int32(5),
FailureThreshold: int32(10),
ProbeHandler: corev1.ProbeHandler{
HTTPGet: &corev1.HTTPGetAction{
Path: "/readyz",
Port: intstr.IntOrString{IntVal: ReadinessPort},
},
},
},
LivenessProbe: &corev1.Probe{
InitialDelaySeconds: int32(2),
PeriodSeconds: int32(5),
FailureThreshold: int32(10),
SuccessThreshold: int32(1),
TimeoutSeconds: int32(2),
ProbeHandler: corev1.ProbeHandler{
HTTPGet: &corev1.HTTPGetAction{
Path: "/healthz",
Port: intstr.IntOrString{IntVal: ReadinessPort},
},
},
},
VolumeMounts: append([]corev1.VolumeMount{
{
Name: "config",
MountPath: "/config",
ReadOnly: true,
},
{
Name: "ws-manager-client-tls-certs",
MountPath: "/ws-manager-client-tls-certs",
ReadOnly: true,
},
common.CAVolumeMount(),
}, volumeMounts...),
},
*common.KubeRBACProxyContainer(ctx),
},
Tolerations: common.WithTolerationWorkspaceComponentNotReady(ctx),
}
return []runtime.Object{
&appsv1.Deployment{
TypeMeta: common.TypeMetaDeployment,
ObjectMeta: metav1.ObjectMeta{
Name: Component,
Namespace: ctx.Namespace,
Labels: labels,
Annotations: common.CustomizeAnnotation(ctx, Component, common.TypeMetaDeployment),
},
Spec: appsv1.DeploymentSpec{
Selector: &metav1.LabelSelector{MatchLabels: common.DefaultLabels(Component)},
Replicas: common.Replicas(ctx, Component),
Strategy: common.DeploymentStrategy,
Template: corev1.PodTemplateSpec{
ObjectMeta: metav1.ObjectMeta{
Name: Component,
Namespace: ctx.Namespace,
Labels: labels,
Annotations: common.CustomizeAnnotation(ctx, Component, common.TypeMetaDeployment, func() map[string]string {
return map[string]string{
common.AnnotationConfigChecksum: configHash,
}
}),
},
Spec: podSpec,
},
},
},
}, nil
}