| /* |
| 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" |
| |
| apierrors "k8s.io/apimachinery/pkg/api/errors" |
| "k8s.io/utils/pointer" |
| |
| v1 "github.com/apache/camel-k/v2/pkg/apis/camel/v1" |
| traitv1 "github.com/apache/camel-k/v2/pkg/apis/camel/v1/trait" |
| "github.com/apache/camel-k/v2/pkg/install" |
| "github.com/apache/camel-k/v2/pkg/platform" |
| "github.com/apache/camel-k/v2/pkg/util/defaults" |
| "github.com/apache/camel-k/v2/pkg/util/openshift" |
| image "github.com/apache/camel-k/v2/pkg/util/registry" |
| ) |
| |
| type platformTrait struct { |
| BasePlatformTrait |
| traitv1.PlatformTrait `property:",squash"` |
| } |
| |
| func newPlatformTrait() Trait { |
| return &platformTrait{ |
| BasePlatformTrait: NewBasePlatformTrait("platform", 100), |
| } |
| } |
| |
| func (t *platformTrait) Configure(e *Environment) (bool, *TraitCondition, error) { |
| if e.Integration == nil { |
| return false, nil, nil |
| } |
| |
| if !e.IntegrationInPhase(v1.IntegrationPhaseNone, v1.IntegrationPhaseWaitingForPlatform) { |
| return false, nil, nil |
| } |
| |
| if !pointer.BoolDeref(t.Auto, false) { |
| if e.Platform == nil { |
| if t.CreateDefault == nil { |
| // Calculate if the platform should be automatically created when missing. |
| if ocp, err := openshift.IsOpenShift(t.Client); err != nil { |
| return false, nil, err |
| } else if ocp { |
| t.CreateDefault = &ocp |
| } else if addr, err := image.GetRegistryAddress(e.Ctx, t.Client); err != nil { |
| return false, nil, err |
| } else if addr != nil { |
| t.CreateDefault = pointer.Bool(true) |
| } |
| } |
| if t.Global == nil { |
| globalOperator := platform.IsCurrentOperatorGlobal() |
| t.Global = &globalOperator |
| } |
| } |
| } |
| |
| return true, nil, nil |
| } |
| |
| func (t *platformTrait) Apply(e *Environment) error { |
| initial := e.Integration.DeepCopy() |
| |
| pl, err := t.getOrCreatePlatform(e) |
| // Do not change to Initialization phase within the trait |
| switch { |
| case err != nil: |
| e.Integration.Status.Phase = v1.IntegrationPhaseWaitingForPlatform |
| if initial.Status.Phase != e.Integration.Status.Phase { |
| e.Integration.Status.SetErrorCondition( |
| v1.IntegrationConditionPlatformAvailable, |
| v1.IntegrationConditionPlatformAvailableReason, |
| err) |
| |
| if pl != nil { |
| e.Integration.SetIntegrationPlatform(pl) |
| } |
| } |
| case pl == nil: |
| e.Integration.Status.Phase = v1.IntegrationPhaseWaitingForPlatform |
| case pl.Status.Phase != v1.IntegrationPlatformPhaseReady: |
| e.Integration.Status.Phase = v1.IntegrationPhaseWaitingForPlatform |
| if initial.Status.Phase != e.Integration.Status.Phase { |
| e.Integration.SetIntegrationPlatform(pl) |
| } |
| default: |
| // In success case, phase should be reset to none |
| e.Integration.Status.Phase = v1.IntegrationPhaseNone |
| e.Integration.SetIntegrationPlatform(pl) |
| } |
| |
| return nil |
| } |
| |
| func (t *platformTrait) getOrCreatePlatform(e *Environment) (*v1.IntegrationPlatform, error) { |
| pl, err := platform.GetOrFindForResource(e.Ctx, t.Client, e.Integration, false) |
| if err != nil && apierrors.IsNotFound(err) && pointer.BoolDeref(t.CreateDefault, false) { |
| platformName := e.Integration.Status.Platform |
| if platformName == "" { |
| platformName = defaults.OperatorID() |
| } |
| |
| if platformName == "" { |
| platformName = platform.DefaultPlatformName |
| } |
| namespace := e.Integration.Namespace |
| if pointer.BoolDeref(t.Global, false) { |
| operatorNamespace := platform.GetOperatorNamespace() |
| if operatorNamespace != "" { |
| namespace = operatorNamespace |
| } |
| } |
| defaultPlatform := v1.NewIntegrationPlatform(namespace, platformName) |
| if defaultPlatform.Labels == nil { |
| defaultPlatform.Labels = make(map[string]string) |
| } |
| defaultPlatform.Labels["app"] = "camel-k" |
| defaultPlatform.Labels["camel.apache.org/platform.generated"] = True |
| // Cascade the operator id in charge to reconcile the Integration |
| if v1.GetOperatorIDAnnotation(e.Integration) != "" { |
| defaultPlatform.SetOperatorID(v1.GetOperatorIDAnnotation(e.Integration)) |
| } |
| pl = &defaultPlatform |
| e.Resources.Add(pl) |
| |
| // Make sure that IntegrationPlatform installed in operator namespace can be seen by others |
| if err := install.IntegrationPlatformViewerRole(e.Ctx, t.Client, namespace); err != nil && !apierrors.IsAlreadyExists(err) { |
| t.L.Info(fmt.Sprintf("Cannot install global IntegrationPlatform viewer role in namespace '%s': skipping.", namespace)) |
| } |
| |
| return pl, nil |
| } |
| |
| return pl, err |
| } |
| |
| // RequiresIntegrationPlatform overrides base class method. |
| func (t *platformTrait) RequiresIntegrationPlatform() bool { |
| return false |
| } |