Version: v1.2

Install Addon

You can get more capabilities from KubeVela ecosystem by installing addons.

List Addons

By default, the following command lists addons from a default addon registry (https://addons.kubevela.net) maintained by KubeVela team.

  1. $ vela addon list
  2. terraform Terraform Controller is a Kubernetes Controller for Terraform. disabled
  3. velaux The KubeVela User Experience (UX ). Dashboard Designed as an extensible, application-oriented delivery and management control panel. disabled
  4. ocm-cluster-manager ocm-cluster-manager can deploy an OCM hub cluster environment. disabled
  5. fluxcd Extended workload to do continuous and progressive delivery disabled
  6. terraform-aws Kubernetes Terraform Controller for AWS disabled
  7. observability An out of the box solution for KubeVela observability disabled
  8. terraform-alibaba Kubernetes Terraform Controller for Alibaba Cloud disabled
  9. terraform-azure Kubernetes Terraform Controller for Azure disabled

Install Addon

  1. $ vela addon enable fluxcd
  2. I0111 21:45:24.553174 89345 apply.go:106] "creating object" name="addon-fluxcd" resource="core.oam.dev/v1beta1, Kind=Application"
  3. I0111 21:45:25.258914 89345 apply.go:106] "creating object" name="helm" resource="core.oam.dev/v1beta1, Kind=ComponentDefinition"
  4. I0111 21:45:25.342731 89345 apply.go:106] "creating object" name="kustomize-json-patch" resource="core.oam.dev/v1beta1, Kind=TraitDefinition"
  5. I0111 21:45:25.382201 89345 apply.go:106] "creating object" name="kustomize-patch" resource="core.oam.dev/v1beta1, Kind=TraitDefinition"
  6. I0111 21:45:25.411723 89345 apply.go:106] "creating object" name="kustomize" resource="core.oam.dev/v1beta1, Kind=ComponentDefinition"
  7. I0111 21:45:25.625815 89345 apply.go:106] "creating object" name="kustomize-strategy-merge" resource="core.oam.dev/v1beta1, Kind=TraitDefinition"
  8. I0111 21:45:25.660129 89345 apply.go:106] "creating object" name="component-uischema-helm" resource="/v1, Kind=ConfigMap"
  9. Addon: fluxcd enabled Successfully.

You can view the new component or trait types added by vela component or vela trait. You can also find more details about built-in addon docs.

Uninstall Addon

Please make sure this addon along with the capabilities is no longer used in any of your applications.

  1. $ vela addon disable fluxcd
  2. Successfully disable addon:fluxcd

List Registry

  1. $ vela addon registry list
  2. Name Type URL
  3. KubeVela OSS https://addons.kubevela.net

Add Registry

  1. $ vela addon registry add experimental --type OSS --endpoint=https://addons.kubevela.net --path=experimental/
  2. Successfully add an addon registry experimental

Delete Registry

  1. $ vela addon registry delete experimental
  2. Successfully delete an addon registry experimental

Make your own addon

Refer to extension documents to learn how to make your own addon and registry.