mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-12 12:27:41 +00:00
* Feat: add registry command * Refactor: comp/trait command combine with registry * Feat: refactor `vela comp/trait` * Fix: import * Fix: fix if type is autodetects.core.oam.dev * Fix: fix list from url * Fix: test * Feat: add test * Fix: remove dup test * Fix: test * Fix: test * Fix: fix label filter * Fix: reviewable * Fix test * fix personal repo in test * Fix test * Fix test * add some boundary check * reviewable
58 lines
1.2 KiB
Go
58 lines
1.2 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 plugins
|
|
|
|
import (
|
|
"github.com/oam-dev/kubevela/apis/types"
|
|
)
|
|
|
|
var (
|
|
deployment = types.Capability{
|
|
Name: "deployment",
|
|
Type: types.TypeComponentDefinition,
|
|
Parameters: []types.Parameter{
|
|
{
|
|
Name: "image",
|
|
Short: "i",
|
|
Required: true,
|
|
},
|
|
},
|
|
}
|
|
statefulset = types.Capability{
|
|
Name: "statefulset",
|
|
Type: types.TypeComponentDefinition,
|
|
Parameters: []types.Parameter{
|
|
{
|
|
Name: "image",
|
|
Short: "i",
|
|
Required: true,
|
|
},
|
|
},
|
|
}
|
|
route = types.Capability{
|
|
Name: "route",
|
|
Type: types.TypeTrait,
|
|
Parameters: []types.Parameter{
|
|
{
|
|
Name: "domain",
|
|
Short: "d",
|
|
Required: true,
|
|
},
|
|
},
|
|
}
|
|
)
|