pkg/trait/deployment.go (152 lines of code) (raw):

/* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You 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 trait import ( "fmt" "k8s.io/apimachinery/pkg/util/intstr" appsv1 "k8s.io/api/apps/v1" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" v1 "github.com/apache/camel-k/v2/pkg/apis/camel/v1" traitv1 "github.com/apache/camel-k/v2/pkg/apis/camel/v1/trait" ) const ( deploymentTraitID = "deployment" deploymentTraitOrder = 1100 deploymentStrategySelectorOrder = 10000 defaultProgressDeadline = int32(60) ) type deploymentTrait struct { BasePlatformTrait traitv1.DeploymentTrait `property:",squash"` } var _ ControllerStrategySelector = &deploymentTrait{} func newDeploymentTrait() Trait { return &deploymentTrait{ BasePlatformTrait: NewBasePlatformTrait(deploymentTraitID, deploymentTraitOrder), } } func (t *deploymentTrait) Configure(e *Environment) (bool, *TraitCondition, error) { if !e.IntegrationInRunningPhases() { return false, nil, nil } if e.IntegrationInPhase(v1.IntegrationPhaseRunning, v1.IntegrationPhaseError) { condition := e.Integration.Status.GetCondition(v1.IntegrationConditionDeploymentAvailable) return condition != nil && condition.Status == corev1.ConditionTrue, nil, nil } // Don't deploy when a different strategy is needed (e.g. Knative, Cron) strategy, err := e.DetermineControllerStrategy() if err != nil { return false, NewIntegrationCondition( "Deployment", v1.IntegrationConditionDeploymentAvailable, corev1.ConditionFalse, v1.IntegrationConditionDeploymentAvailableReason, err.Error(), ), err } if strategy != ControllerStrategyDeployment { return false, NewIntegrationCondition( "Deployment", v1.IntegrationConditionDeploymentAvailable, corev1.ConditionFalse, v1.IntegrationConditionDeploymentAvailableReason, "controller strategy: "+string(strategy), ), nil } return e.IntegrationInPhase(v1.IntegrationPhaseDeploying), nil, nil } func (t *deploymentTrait) SelectControllerStrategy(e *Environment) (*ControllerStrategy, error) { deploymentStrategy := ControllerStrategyDeployment return &deploymentStrategy, nil } func (t *deploymentTrait) ControllerStrategySelectorOrder() int { return deploymentStrategySelectorOrder } func (t *deploymentTrait) Apply(e *Environment) error { deployment := t.getDeploymentFor(e) e.Resources.Add(deployment) e.Integration.Status.SetCondition( v1.IntegrationConditionDeploymentAvailable, corev1.ConditionTrue, v1.IntegrationConditionDeploymentAvailableReason, fmt.Sprintf("deployment name is %s", deployment.Name), ) return nil } func (t *deploymentTrait) getDeploymentFor(e *Environment) *appsv1.Deployment { // create a copy to avoid sharing the underlying annotation map annotations := make(map[string]string) if e.Integration.Annotations != nil { for k, v := range filterTransferableAnnotations(e.Integration.Annotations) { annotations[k] = v } } deadline := defaultProgressDeadline if t.ProgressDeadlineSeconds != nil { deadline = *t.ProgressDeadlineSeconds } deployment := appsv1.Deployment{ TypeMeta: metav1.TypeMeta{ Kind: "Deployment", APIVersion: appsv1.SchemeGroupVersion.String(), }, ObjectMeta: metav1.ObjectMeta{ Name: e.Integration.Name, Namespace: e.Integration.Namespace, Labels: map[string]string{ v1.IntegrationLabel: e.Integration.Name, }, Annotations: annotations, }, Spec: appsv1.DeploymentSpec{ ProgressDeadlineSeconds: &deadline, Replicas: e.Integration.Spec.Replicas, Selector: &metav1.LabelSelector{ MatchLabels: map[string]string{ v1.IntegrationLabel: e.Integration.Name, }, }, Template: corev1.PodTemplateSpec{ ObjectMeta: metav1.ObjectMeta{ Labels: map[string]string{ v1.IntegrationLabel: e.Integration.Name, }, Annotations: annotations, }, Spec: corev1.PodSpec{ ServiceAccountName: e.Integration.Spec.ServiceAccountName, }, }, }, } switch t.Strategy { case appsv1.RecreateDeploymentStrategyType: deployment.Spec.Strategy = appsv1.DeploymentStrategy{ Type: t.Strategy, } case appsv1.RollingUpdateDeploymentStrategyType: deployment.Spec.Strategy = appsv1.DeploymentStrategy{ Type: t.Strategy, } if t.RollingUpdateMaxSurge != nil || t.RollingUpdateMaxUnavailable != nil { var maxSurge *intstr.IntOrString var maxUnavailable *intstr.IntOrString if t.RollingUpdateMaxSurge != nil { v := t.RollingUpdateMaxSurge maxSurge = v } if t.RollingUpdateMaxUnavailable != nil { v := t.RollingUpdateMaxUnavailable maxUnavailable = v } deployment.Spec.Strategy.RollingUpdate = &appsv1.RollingUpdateDeployment{ MaxSurge: maxSurge, MaxUnavailable: maxUnavailable, } } } // Reconcile the deployment replicas replicas := e.Integration.Spec.Replicas // Deployment replicas defaults to 1, so we avoid forcing // an update to nil that will result to another update cycle // back to that default value by the Deployment controller. if replicas == nil { one := int32(1) replicas = &one } deployment.Spec.Replicas = replicas return &deployment }