Files
kubevela/pkg/workflow/context/interface.go
Jian.Li 9d6aaa6044 Workflow Support op.# ApplyComponent and op.#ApplyRemaining (#1993)
* add cap

* workflow

* add docs

* upgrade op.#ApplyComponent

* lint

* bytes to string
2021-07-31 07:14:00 +08:00

36 lines
1.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 context
import (
corev1 "k8s.io/api/core/v1"
"github.com/oam-dev/kubevela/pkg/cue/model/value"
)
// Context is workflow context interface
type Context interface {
GetComponent(name string) (*ComponentManifest, error)
GetComponents() map[string]*ComponentManifest
PatchComponent(name string, patchValue *value.Value) error
GetVar(paths ...string) (*value.Value, error)
SetVar(v *value.Value, paths ...string) error
Commit() error
MakeParameter(parameter map[string]interface{}) (*value.Value, error)
StoreRef() *corev1.ObjectReference
}