| // Copyright 2023 Red Hat, Inc. and/or its affiliates |
| // |
| // Licensed 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 platform |
| |
| import ( |
| "context" |
| |
| "github.com/kiegroup/kogito-serverless-operator/api" |
| v08 "github.com/kiegroup/kogito-serverless-operator/api/v1alpha08" |
| ) |
| |
| // NewCreateAction returns an action that creates resources needed by the platform. |
| func NewCreateAction() Action { |
| return &createAction{} |
| } |
| |
| type createAction struct { |
| baseAction |
| } |
| |
| func (action *createAction) Name() string { |
| return "create" |
| } |
| |
| func (action *createAction) CanHandle(platform *v08.SonataFlowPlatform) bool { |
| return platform.Status.IsCreating() |
| } |
| |
| func (action *createAction) Handle(ctx context.Context, platform *v08.SonataFlowPlatform) (*v08.SonataFlowPlatform, error) { |
| //TODO: Perform the actions needed for the Platform creation |
| platform.Status.Manager().MarkTrue(api.SucceedConditionType) |
| |
| return platform, nil |
| } |