Files
kubevela/pkg/workflow/template/load.go
T
a1f26b01af feat: wire CUE version-compatibility engine into kubevela template loader (#7215)
- Bump github.com/kubevela/pkg to v1.11.0 and github.com/kubevela/workflow to v0.7.0
- Remove local replace directives for both modules
- Wire EnableCUEVersionCompatibility as a pointer alias into the engine to eliminate data race
- Add --enable-cue-version-compatibility and --cue-compatibility-cache-size flags via CUEConfig
- Fix all call sites (webhooks, CLI def.go) to dereference the pointer alias correctly
- Add individual revive-compliant doc comments on re-exported types
- Add examples/legacy-upgrade-demo/ demonstrating runtime legacy list syntax rewriting

Signed-off-by: Brian Kane <briankane1@gmail.com>
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-03 08:51:18 -07:00

133 lines
4.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 template
import (
"context"
"embed"
"fmt"
"github.com/pkg/errors"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/meta"
"sigs.k8s.io/controller-runtime/pkg/client"
"github.com/kubevela/workflow/pkg/tasks/template"
wfTypes "github.com/kubevela/workflow/pkg/types"
"github.com/oam-dev/kubevela/apis/core.oam.dev/v1beta1"
"github.com/oam-dev/kubevela/apis/types"
"github.com/oam-dev/kubevela/pkg/appfile"
"github.com/oam-dev/kubevela/pkg/cue/upgrade"
)
var (
//go:embed static
templateFS embed.FS
)
const (
templateDir = "static"
)
// WorkflowStepLoader load workflowStep task definition template.
type WorkflowStepLoader struct {
loadCapabilityDefinition func(ctx context.Context, capName string) (*appfile.Template, error)
}
// LoadTemplate gets the workflowStep definition.
func (loader *WorkflowStepLoader) LoadTemplate(ctx context.Context, name string) (string, error) {
files, err := templateFS.ReadDir(templateDir)
if err != nil {
return "", err
}
if name == wfTypes.WorkflowStepTypeApplyComponent {
name = wfTypes.WorkflowStepTypeBuiltinApplyComponent
}
staticFilename := name + ".cue"
for _, file := range files {
if staticFilename == file.Name() {
fileName := fmt.Sprintf("%s/%s", templateDir, file.Name())
content, err := templateFS.ReadFile(fileName)
return string(content), err
}
}
templ, err := loader.loadCapabilityDefinition(ctx, name)
if err != nil {
return "", err
}
schematic := templ.WorkflowStepDefinition.Spec.Schematic
if schematic != nil && schematic.CUE != nil {
tmpl, _ := upgrade.EnsureCueVersionCompatibility(schematic.CUE.Template, name, upgrade.WorkflowStepKind, upgrade.TemplateAreaMain)
return tmpl, nil
}
return "", errors.New("custom workflowStep only support cue")
}
// NewWorkflowStepTemplateLoader create a task template loader.
func NewWorkflowStepTemplateLoader(client client.Client, annotations map[string]string) template.Loader {
return &WorkflowStepLoader{
loadCapabilityDefinition: func(ctx context.Context, capName string) (*appfile.Template, error) {
return appfile.LoadTemplate(ctx, client, capName, types.TypeWorkflowStep, annotations)
},
}
}
// NewWorkflowStepTemplateRevisionLoader create a task template loader from ApplicationRevision.
func NewWorkflowStepTemplateRevisionLoader(rev *v1beta1.ApplicationRevision, mapper meta.RESTMapper) template.Loader {
return &WorkflowStepLoader{
loadCapabilityDefinition: func(ctx context.Context, capName string) (*appfile.Template, error) {
return appfile.LoadTemplateFromRevision(capName, types.TypeWorkflowStep, rev, mapper)
},
}
}
// ViewLoader load view task definition template.
type ViewLoader struct {
client client.Client
namespace string
}
// LoadTemplate gets the workflowStep definition.
func (loader *ViewLoader) LoadTemplate(ctx context.Context, name string) (string, error) {
cm := new(corev1.ConfigMap)
cmKey := client.ObjectKey{Name: name, Namespace: loader.namespace}
if err := loader.client.Get(ctx, cmKey, cm); err != nil {
return "", errors.Wrapf(err, "fail to get view template %v from configMap", cmKey)
}
return cm.Data["template"], nil
}
// NewViewTemplateLoader create a view task template loader.
func NewViewTemplateLoader(client client.Client, namespace string) template.Loader {
return &ViewLoader{
client: client,
namespace: namespace,
}
}
// EchoLoader will load data from input as it is.
type EchoLoader struct {
}
// LoadTemplate gets the echo content exactly what it is .
func (ll *EchoLoader) LoadTemplate(_ context.Context, content string) (string, error) {
return content, nil
}