mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
* [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>
65 lines
2.2 KiB
Go
65 lines
2.2 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 migrations
|
|
|
|
import (
|
|
"github.com/gitpod-io/gitpod/installer/pkg/common"
|
|
|
|
batchv1 "k8s.io/api/batch/v1"
|
|
corev1 "k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/utils/pointer"
|
|
)
|
|
|
|
func job(ctx *common.RenderContext) ([]runtime.Object, error) {
|
|
if disableMigration := common.IsDatabaseMigrationDisabled(ctx); disableMigration {
|
|
return nil, nil
|
|
}
|
|
|
|
objectMeta := metav1.ObjectMeta{
|
|
Name: Component,
|
|
Namespace: ctx.Namespace,
|
|
Labels: common.CustomizeLabel(ctx, Component, common.TypeMetaBatchJob),
|
|
Annotations: common.CustomizeAnnotation(ctx, Component, common.TypeMetaBatchJob),
|
|
}
|
|
|
|
return []runtime.Object{&batchv1.Job{
|
|
TypeMeta: common.TypeMetaBatchJob,
|
|
ObjectMeta: objectMeta,
|
|
Spec: batchv1.JobSpec{
|
|
TTLSecondsAfterFinished: pointer.Int32(60),
|
|
Template: corev1.PodTemplateSpec{
|
|
ObjectMeta: objectMeta,
|
|
Spec: corev1.PodSpec{
|
|
RestartPolicy: corev1.RestartPolicyNever,
|
|
ServiceAccountName: Component,
|
|
EnableServiceLinks: pointer.Bool(false),
|
|
// The init container is designed to emulate Helm hooks
|
|
InitContainers: []corev1.Container{*common.DatabaseWaiterContainer(ctx)},
|
|
Containers: []corev1.Container{{
|
|
Name: Component,
|
|
Image: ctx.ImageName(ctx.Config.Repository, "db-migrations", ctx.VersionManifest.Components.DBMigrations.Version),
|
|
ImagePullPolicy: corev1.PullIfNotPresent,
|
|
Env: common.CustomizeEnvvar(ctx, Component, common.MergeEnv(
|
|
common.DatabaseEnv(&ctx.Config),
|
|
common.DefaultEnv(&ctx.Config),
|
|
)),
|
|
SecurityContext: &corev1.SecurityContext{
|
|
AllowPrivilegeEscalation: pointer.Bool(false),
|
|
},
|
|
Command: []string{
|
|
"sh",
|
|
"-c",
|
|
"cd /app/node_modules/@gitpod/gitpod-db && yarn run wait-for-db && yarn run typeorm migration:show || true && yarn run typeorm migration:run",
|
|
},
|
|
}},
|
|
Tolerations: common.WithTolerationWorkspaceComponentNotReady(ctx),
|
|
},
|
|
},
|
|
},
|
|
}}, nil
|
|
}
|