mirror of
https://github.com/kubevela/kubevela.git
synced 2026-03-05 11:11:28 +00:00
* Workflow WIP (#1934) * interface * add model value * walk fields * provider * stdlin * tasks * add stdlib * Adjust TaskGenerator * Unified configmap format * development completed * fix import cycle * demo passing * upgrade action * add value test cases * format * apis * add context test cases * fmt * fmt * add context to taskGenerator (#1942) * fix configmap test * add workflow integration test * upgrade code * initial workflow commit * interface * add model value * walk fields * provider * stdlin * tasks * add stdlib * Adjust TaskGenerator * Unified configmap format * development completed * fix import cycle * demo passing * upgrade action * add value test cases * format * apis * add context test cases * fmt * fmt * add context to taskGenerator (#1942) * fix configmap test * add workflow integration test * lint code * improve pkg[value、context] testing coverage * Improve testing coverage(#1957) * add license * add test cases Co-authored-by: Jian.Li <74582607+leejanee@users.noreply.github.com> Co-authored-by: Jian.Li <lj176172@alibaba-inc.com>
127 lines
3.1 KiB
Go
127 lines
3.1 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 (
|
|
"context"
|
|
|
|
"github.com/pkg/errors"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
|
|
"github.com/oam-dev/kubevela/apis/core.oam.dev/common"
|
|
oamcore "github.com/oam-dev/kubevela/apis/core.oam.dev/v1beta1"
|
|
wfContext "github.com/oam-dev/kubevela/pkg/workflow/context"
|
|
wfTypes "github.com/oam-dev/kubevela/pkg/workflow/types"
|
|
)
|
|
|
|
type workflow struct {
|
|
app *oamcore.Application
|
|
cli client.Client
|
|
}
|
|
|
|
// NewWorkflow returns a Workflow implementation.
|
|
func NewWorkflow(app *oamcore.Application, cli client.Client) Workflow {
|
|
return &workflow{
|
|
app: app,
|
|
cli: cli,
|
|
}
|
|
}
|
|
|
|
// ExecuteSteps process workflow step in order.
|
|
func (w *workflow) ExecuteSteps(ctx context.Context, rev string, taskRunners []wfTypes.TaskRunner) (bool, error) {
|
|
if w.app.Spec.Workflow == nil {
|
|
return true, nil
|
|
}
|
|
|
|
steps := w.app.Spec.Workflow.Steps
|
|
if len(steps) == 0 {
|
|
return true, nil
|
|
}
|
|
|
|
if w.app.Status.Workflow == nil || w.app.Status.Workflow.AppRevision != rev {
|
|
w.app.Status.Workflow = &common.WorkflowStatus{
|
|
AppRevision: rev,
|
|
Steps: []common.WorkflowStepStatus{},
|
|
}
|
|
}
|
|
|
|
wfStatus := w.app.Status.Workflow
|
|
|
|
if len(taskRunners) <= wfStatus.StepIndex || wfStatus.Terminated || wfStatus.Suspend {
|
|
return true, nil
|
|
}
|
|
|
|
w.app.Status.Phase = common.ApplicationRunningWorkflow
|
|
var (
|
|
wfCtx wfContext.Context
|
|
err error
|
|
)
|
|
|
|
if wfStatus.ContextBackend != nil {
|
|
wfCtx, err = wfContext.LoadContext(w.cli, w.app.Namespace, rev)
|
|
if err != nil {
|
|
return false, errors.WithMessage(err, "load context")
|
|
}
|
|
} else {
|
|
wfCtx, err = wfContext.NewContext(w.cli, w.app.Namespace, rev)
|
|
if err != nil {
|
|
return false, errors.WithMessage(err, "new context")
|
|
}
|
|
wfStatus.ContextBackend = wfCtx.StoreRef()
|
|
}
|
|
|
|
for _, run := range taskRunners[wfStatus.StepIndex:] {
|
|
status, operation, err := run(wfCtx)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
var conditionUpdated bool
|
|
for i := range wfStatus.Steps {
|
|
if wfStatus.Steps[i].Name == status.Name {
|
|
wfStatus.Steps[i] = status
|
|
conditionUpdated = true
|
|
break
|
|
}
|
|
}
|
|
|
|
if !conditionUpdated {
|
|
wfStatus.Steps = append(wfStatus.Steps, status)
|
|
}
|
|
|
|
if operation != nil {
|
|
wfStatus.Terminated = operation.Terminated
|
|
wfStatus.Suspend = operation.Suspend
|
|
}
|
|
|
|
if status.Phase != common.WorkflowStepPhaseSucceeded {
|
|
return false, nil
|
|
}
|
|
|
|
if err := wfCtx.Commit(); err != nil {
|
|
return false, errors.WithMessage(err, "commit workflow context")
|
|
}
|
|
wfStatus.StepIndex++
|
|
|
|
if wfStatus.Terminated || wfStatus.Suspend {
|
|
return true, nil
|
|
}
|
|
}
|
|
|
|
return true, nil // all steps done
|
|
}
|