blob: 3b7a185c9c4883746578835e41643672e228e773 [file] [log] [blame]
/*
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 build
import (
"context"
"github.com/apache/camel-k/pkg/apis/camel/v1alpha1"
corev1 "k8s.io/api/core/v1"
)
// NewMonitorPodAction creates a new monitor action for scheduled pod
func NewMonitorPodAction() Action {
return &monitorPodAction{}
}
type monitorPodAction struct {
baseAction
}
// Name returns a common name of the action
func (action *monitorPodAction) Name() string {
return "monitor-pod"
}
// CanHandle tells whether this action can handle the build
func (action *monitorPodAction) CanHandle(build *v1alpha1.Build) bool {
return (build.Status.Phase == v1alpha1.BuildPhasePending ||
build.Status.Phase == v1alpha1.BuildPhaseRunning) &&
build.Spec.Platform.Build.BuildStrategy == v1alpha1.IntegrationPlatformBuildStrategyPod
}
// Handle handles the builds
func (action *monitorPodAction) Handle(ctx context.Context, build *v1alpha1.Build) (*v1alpha1.Build, error) {
// Get the build pod
pod, err := getBuilderPod(ctx, action.client, build)
if err != nil {
return nil, err
}
var buildPhase v1alpha1.BuildPhase
switch {
case pod == nil:
build.Status.Phase = v1alpha1.BuildPhaseScheduling
case pod.Status.Phase == corev1.PodSucceeded:
buildPhase = v1alpha1.BuildPhaseSucceeded
case pod.Status.Phase == corev1.PodFailed:
buildPhase = v1alpha1.BuildPhaseFailed
default:
buildPhase = build.Status.Phase
}
if build.Status.Phase == buildPhase {
// Status is already up-to-date
return nil, nil
}
build.Status.Phase = buildPhase
return build, nil
}