mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-20 16:23:24 +00:00
1. load component in arrary, so apply them in order addon's needNamespace will be apply firstly 2. apply application in controle plane will be first workflowStep 3. bigger application reconcile timeout context get avoid of time out
237 lines
7.3 KiB
Go
237 lines
7.3 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 types
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"cuelang.org/go/cue"
|
|
"github.com/getkin/kin-openapi/openapi3"
|
|
"github.com/spf13/pflag"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
|
|
"github.com/oam-dev/kubevela/apis/core.oam.dev/common"
|
|
"github.com/oam-dev/kubevela/apis/core.oam.dev/v1beta1"
|
|
"github.com/oam-dev/kubevela/pkg/apiserver/rest/utils"
|
|
)
|
|
|
|
// Source record the source of Capability
|
|
type Source struct {
|
|
RepoName string `json:"repoName"`
|
|
ChartName string `json:"chartName,omitempty"`
|
|
}
|
|
|
|
// CRDInfo record the CRD info of the Capability
|
|
type CRDInfo struct {
|
|
APIVersion string `json:"apiVersion"`
|
|
Kind string `json:"kind"`
|
|
}
|
|
|
|
// Chart defines all necessary information to install a whole chart
|
|
type Chart struct {
|
|
Repo string `json:"repo"`
|
|
URL string `json:"url"`
|
|
Name string `json:"name"`
|
|
Namespace string `json:"namespace,omitempty"`
|
|
Version string `json:"version"`
|
|
Values map[string]interface{} `json:"values"`
|
|
}
|
|
|
|
// Installation defines the installation method for this Capability, currently only helm is supported
|
|
type Installation struct {
|
|
Helm Chart `json:"helm"`
|
|
// TODO(wonderflow) add raw yaml file support for install capability
|
|
}
|
|
|
|
// CapType defines the type of capability
|
|
type CapType string
|
|
|
|
const (
|
|
// TypeComponentDefinition represents OAM ComponentDefinition
|
|
TypeComponentDefinition CapType = "componentDefinition"
|
|
// TypeWorkload represents OAM Workload
|
|
TypeWorkload CapType = "workload"
|
|
// TypeTrait represents OAM Trait
|
|
TypeTrait CapType = "trait"
|
|
// TypeScope represent OAM Scope
|
|
TypeScope CapType = "scope"
|
|
// TypeWorkflowStep represent OAM Workflow
|
|
TypeWorkflowStep CapType = "workflowstep"
|
|
// TypePolicy represent OAM Policy
|
|
TypePolicy CapType = "policy"
|
|
)
|
|
|
|
// CapabilityConfigMapNamePrefix is the prefix for capability ConfigMap name
|
|
const CapabilityConfigMapNamePrefix = "schema-"
|
|
|
|
const (
|
|
// OpenapiV3JSONSchema is the key to store OpenAPI v3 JSON schema in ConfigMap
|
|
OpenapiV3JSONSchema string = "openapi-v3-json-schema"
|
|
// UISchema is the key to store ui custom schema
|
|
UISchema string = "ui-schema"
|
|
)
|
|
|
|
// CapabilityCategory defines the category of a capability
|
|
type CapabilityCategory string
|
|
|
|
// categories of capability schematic
|
|
const (
|
|
TerraformCategory CapabilityCategory = "terraform"
|
|
|
|
HelmCategory CapabilityCategory = "helm"
|
|
|
|
KubeCategory CapabilityCategory = "kube"
|
|
|
|
CUECategory CapabilityCategory = "cue"
|
|
)
|
|
|
|
// Parameter defines a parameter for cli from capability template
|
|
type Parameter struct {
|
|
Name string `json:"name"`
|
|
Short string `json:"short,omitempty"`
|
|
Required bool `json:"required,omitempty"`
|
|
Default interface{} `json:"default,omitempty"`
|
|
Usage string `json:"usage,omitempty"`
|
|
Ignore bool `json:"ignore,omitempty"`
|
|
Type cue.Kind `json:"type,omitempty"`
|
|
Alias string `json:"alias,omitempty"`
|
|
JSONType string `json:"jsonType,omitempty"`
|
|
}
|
|
|
|
// SetFlagBy set cli flag from Parameter
|
|
func SetFlagBy(flags *pflag.FlagSet, v Parameter) {
|
|
name := v.Name
|
|
if v.Alias != "" {
|
|
name = v.Alias
|
|
}
|
|
// nolint:exhaustive
|
|
switch v.Type {
|
|
case cue.IntKind:
|
|
var vv int64
|
|
switch val := v.Default.(type) {
|
|
case int64:
|
|
vv = val
|
|
case json.Number:
|
|
vv, _ = val.Int64()
|
|
case int:
|
|
vv = int64(val)
|
|
case float64:
|
|
vv = int64(val)
|
|
}
|
|
flags.Int64P(name, v.Short, vv, v.Usage)
|
|
case cue.StringKind:
|
|
flags.StringP(name, v.Short, v.Default.(string), v.Usage)
|
|
case cue.BoolKind:
|
|
flags.BoolP(name, v.Short, v.Default.(bool), v.Usage)
|
|
case cue.NumberKind, cue.FloatKind:
|
|
var vv float64
|
|
switch val := v.Default.(type) {
|
|
case int64:
|
|
vv = float64(val)
|
|
case json.Number:
|
|
vv, _ = val.Float64()
|
|
case int:
|
|
vv = float64(val)
|
|
case float64:
|
|
vv = val
|
|
}
|
|
flags.Float64P(name, v.Short, vv, v.Usage)
|
|
default:
|
|
// other types not supported yet
|
|
}
|
|
}
|
|
|
|
// Capability defines the content of a capability
|
|
type Capability struct {
|
|
Name string `json:"name"`
|
|
Type CapType `json:"type"`
|
|
CueTemplate string `json:"template,omitempty"`
|
|
CueTemplateURI string `json:"templateURI,omitempty"`
|
|
Parameters []Parameter `json:"parameters,omitempty"`
|
|
CrdName string `json:"crdName,omitempty"`
|
|
Center string `json:"center,omitempty"`
|
|
Status string `json:"status,omitempty"`
|
|
Description string `json:"description,omitempty"`
|
|
Labels map[string]string `json:"labels,omitempty"`
|
|
Category CapabilityCategory `json:"category,omitempty"`
|
|
|
|
// trait only
|
|
AppliesTo []string `json:"appliesTo,omitempty"`
|
|
|
|
// Namespace represents it's a system-level or user-level capability.
|
|
Namespace string `json:"namespace,omitempty"`
|
|
|
|
// Plugin Source
|
|
Source *Source `json:"source,omitempty"`
|
|
Install *Installation `json:"install,omitempty"`
|
|
CrdInfo *CRDInfo `json:"crdInfo,omitempty"`
|
|
|
|
// Terraform
|
|
TerraformConfiguration string `json:"terraformConfiguration,omitempty"`
|
|
|
|
// KubeTemplate
|
|
KubeTemplate runtime.RawExtension `json:"kubetemplate,omitempty"`
|
|
KubeParameter []common.KubeParameter `json:"kubeparameter,omitempty"`
|
|
}
|
|
|
|
// Addon contains all information represent an addon
|
|
type Addon struct {
|
|
AddonMeta
|
|
|
|
APISchema *openapi3.Schema `json:"schema"`
|
|
UISchema []*utils.UIParameter `json:"uiSchema"`
|
|
|
|
// More details about the addon, e.g. README
|
|
Detail string `json:"detail,omitempty"`
|
|
Definitions []AddonElementFile `json:"definitions"`
|
|
Parameters string `json:"parameters"`
|
|
CUETemplates []AddonElementFile `json:"cue_templates"`
|
|
YAMLTemplates []AddonElementFile `json:"yaml_templates,omitempty"`
|
|
AppTemplate *v1beta1.Application `json:"app_template"`
|
|
}
|
|
|
|
// AddonMeta defines the format for a single addon
|
|
type AddonMeta struct {
|
|
Name string `json:"name" validate:"required"`
|
|
Version string `json:"version"`
|
|
Description string `json:"description"`
|
|
Icon string `json:"icon"`
|
|
URL string `json:"url,omitempty"`
|
|
Tags []string `json:"tags,omitempty"`
|
|
DeployTo *AddonDeployTo `json:"deployTo,omitempty"`
|
|
Dependencies []*AddonDependency `json:"dependencies,omitempty"`
|
|
NeedNamespace []string `json:"needNamespace,omitempty"`
|
|
}
|
|
|
|
// AddonDeployTo defines where the addon to deploy to
|
|
type AddonDeployTo struct {
|
|
ControlPlane bool `json:"control_plane"`
|
|
RuntimeCluster bool `json:"runtime_cluster"`
|
|
}
|
|
|
|
// AddonDependency defines the other addons it depends on
|
|
type AddonDependency struct {
|
|
Name string `json:"name,omitempty"`
|
|
}
|
|
|
|
// AddonElementFile can be addon's definition or addon's component
|
|
type AddonElementFile struct {
|
|
Data string
|
|
Name string
|
|
Path []string
|
|
}
|