blob: 729571fd6533f1b9c5a57f1494549d79e7619dda [file] [log] [blame]
/*
* Copyright 2022 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"
v08 "github.com/kiegroup/kogito-serverless-operator/api/v1alpha08"
)
// NewCreateAction returns a 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.KogitoServerlessPlatform) bool {
return platform.Status.Phase == v08.PlatformPhaseCreating
}
func (action *createAction) Handle(ctx context.Context, platform *v08.KogitoServerlessPlatform) (*v08.KogitoServerlessPlatform, error) {
//TODO: Perform the actions needed for the Platform creation
platform.Status.Phase = v08.PlatformPhaseReady
return platform, nil
}