blob: edeaee3475be5ff6ecba58a5408ee5c23f426f46 [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"
"github.com/kiegroup/kogito-serverless-operator/constants"
)
// NewMonitorAction returns an action that monitors the build platform after it's fully initialized.
func NewMonitorAction() Action {
return &monitorAction{}
}
type monitorAction struct {
baseAction
}
func (action *monitorAction) Name() string {
return "monitor"
}
func (action *monitorAction) CanHandle(platform *v08.KogitoServerlessPlatform) bool {
return platform.Status.Phase == v08.PlatformPhaseReady
}
func (action *monitorAction) Handle(ctx context.Context, platform *v08.KogitoServerlessPlatform) (*v08.KogitoServerlessPlatform, error) {
// Just track the version of the operator in the platform resource
if platform.Status.Version != constants.VERSION {
platform.Status.Version = constants.VERSION
action.Logger.Info("Platform version updated", "version", platform.Status.Version)
}
// Refresh applied configuration
if err := ConfigureDefaults(ctx, action.client, platform, false); err != nil {
return nil, err
}
return platform, nil
}