mirror of
https://github.com/kubevela/kubevela.git
synced 2026-03-05 11:11:28 +00:00
Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com> Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com>
56 lines
1.8 KiB
Go
56 lines
1.8 KiB
Go
/*
|
|
Copyright 2021 The KubeVela Authors.
|
|
|
|
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 workflow
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
workflowv1alpha1 "github.com/kubevela/workflow/api/v1alpha1"
|
|
wfTypes "github.com/kubevela/workflow/pkg/types"
|
|
|
|
"github.com/oam-dev/kubevela/apis/core.oam.dev/common"
|
|
oamcore "github.com/oam-dev/kubevela/apis/core.oam.dev/v1beta1"
|
|
)
|
|
|
|
var (
|
|
// DisableRecorder optimize workflow by disable recorder
|
|
DisableRecorder = false
|
|
)
|
|
|
|
// IsFailedAfterRetry check if application is hang due to FailedAfterRetry
|
|
func IsFailedAfterRetry(app *oamcore.Application) bool {
|
|
return app.Status.Workflow != nil && app.Status.Workflow.Message == wfTypes.MessageSuspendFailedAfterRetries
|
|
}
|
|
|
|
// ConvertWorkflowStatus convert workflow run status to workflow status
|
|
func ConvertWorkflowStatus(status workflowv1alpha1.WorkflowRunStatus, revision string) *common.WorkflowStatus {
|
|
return &common.WorkflowStatus{
|
|
AppRevision: revision,
|
|
Mode: fmt.Sprintf("%s-%s", status.Mode.Steps, status.Mode.SubSteps),
|
|
Phase: status.Phase,
|
|
Message: status.Message,
|
|
Suspend: status.Suspend,
|
|
SuspendState: status.SuspendState,
|
|
Terminated: status.Terminated,
|
|
Finished: status.Finished,
|
|
ContextBackend: status.ContextBackend,
|
|
Steps: status.Steps,
|
|
StartTime: status.StartTime,
|
|
EndTime: status.EndTime,
|
|
}
|
|
}
|