Skip to main content
Version: v1.4

Built-in Trait Type

This documentation will walk through all the built-in trait types sorted alphabetically.

It was generated automatically by scripts, please don't update manually, last updated at 2022-07-28T17:57:01+08:00.

Affinity

Description

Affinity specifies affinity and toleration K8s pod for your workload which follows the pod spec in path 'spec.template'.

For now this trait is hidden from the VelaUX. Available when using CLI

Apply To Component Types

Component based on the following kinds of resources:

  • deployments.apps
  • statefulsets.apps
  • daemonsets.apps
  • jobs.batch

Specification (affinity)

NameDescriptionTypeRequiredDefault
podAffinitySpecify the pod affinity scheduling rules.podAffinityfalse
podAntiAffinitySpecify the pod anti-affinity scheduling rules.podAntiAffinityfalse
nodeAffinitySpecify the node affinity scheduling rules for the pod.nodeAffinityfalse
tolerationsSpecify tolerant taint.[]tolerationsfalse

podAffinity (affinity)

NameDescriptionTypeRequiredDefault
requiredSpecify the required during scheduling ignored during execution.[]requiredfalse
preferredSpecify the preferred during scheduling ignored during execution.[]preferredfalse
required (affinity)
NameDescriptionTypeRequiredDefault
labelSelectorlabelSelectorfalse
topologyKeystringtrue
namespaceSelectornamespaceSelectorfalse
namespaces[]stringfalse
labelSelector (affinity)
NameDescriptionTypeRequiredDefault
matchExpressions[]matchExpressionsfalse
matchLabelsmap[string]:stringfalse
matchExpressions (affinity)
NameDescriptionTypeRequiredDefault
keystringtrue
operatorstringfalseIn
values[]stringfalse
namespaceSelector (affinity)
NameDescriptionTypeRequiredDefault
matchExpressions[]matchExpressionsfalse
matchLabelsmap[string]:stringfalse
matchExpressions (affinity)
NameDescriptionTypeRequiredDefault
keystringtrue
operatorstringfalseIn
values[]stringfalse
preferred (affinity)
NameDescriptionTypeRequiredDefault
weightSpecify weight associated with matching the corresponding podAffinityTerm.inttrue
podAffinityTermSpecify a set of pods.podAffinityTermtrue
podAffinityTerm (affinity)
NameDescriptionTypeRequiredDefault
labelSelectorlabelSelectorfalse
topologyKeystringtrue
namespaceSelectornamespaceSelectorfalse
namespaces[]stringfalse
labelSelector (affinity)
NameDescriptionTypeRequiredDefault
matchExpressions[]matchExpressionsfalse
matchLabelsmap[string]:stringfalse
matchExpressions (affinity)
NameDescriptionTypeRequiredDefault
keystringtrue
operatorstringfalseIn
values[]stringfalse
namespaceSelector (affinity)
NameDescriptionTypeRequiredDefault
matchExpressions[]matchExpressionsfalse
matchLabelsmap[string]:stringfalse
matchExpressions (affinity)
NameDescriptionTypeRequiredDefault
keystringtrue
operatorstringfalseIn
values[]stringfalse

podAntiAffinity (affinity)

NameDescriptionTypeRequiredDefault
requiredSpecify the required during scheduling ignored during execution.[]requiredfalse
preferredSpecify the preferred during scheduling ignored during execution.[]preferredfalse
required (affinity)
NameDescriptionTypeRequiredDefault
labelSelectorlabelSelectorfalse
topologyKeystringtrue
namespaceSelectornamespaceSelectorfalse
namespaces[]stringfalse
labelSelector (affinity)
NameDescriptionTypeRequiredDefault
matchExpressions[]matchExpressionsfalse
matchLabelsmap[string]:stringfalse
matchExpressions (affinity)
NameDescriptionTypeRequiredDefault
keystringtrue
operatorstringfalseIn
values[]stringfalse
namespaceSelector (affinity)
NameDescriptionTypeRequiredDefault
matchExpressions[]matchExpressionsfalse
matchLabelsmap[string]:stringfalse
matchExpressions (affinity)
NameDescriptionTypeRequiredDefault
keystringtrue
operatorstringfalseIn
values[]stringfalse
preferred (affinity)
NameDescriptionTypeRequiredDefault
weightSpecify weight associated with matching the corresponding podAffinityTerm.inttrue
podAffinityTermSpecify a set of pods.podAffinityTermtrue
podAffinityTerm (affinity)
NameDescriptionTypeRequiredDefault
labelSelectorlabelSelectorfalse
topologyKeystringtrue
namespaceSelectornamespaceSelectorfalse
namespaces[]stringfalse
labelSelector (affinity)
NameDescriptionTypeRequiredDefault
matchExpressions[]matchExpressionsfalse
matchLabelsmap[string]:stringfalse
matchExpressions (affinity)
NameDescriptionTypeRequiredDefault
keystringtrue
operatorstringfalseIn
values[]stringfalse
namespaceSelector (affinity)
NameDescriptionTypeRequiredDefault
matchExpressions[]matchExpressionsfalse
matchLabelsmap[string]:stringfalse
matchExpressions (affinity)
NameDescriptionTypeRequiredDefault
keystringtrue
operatorstringfalseIn
values[]stringfalse

nodeAffinity (affinity)

NameDescriptionTypeRequiredDefault
requiredSpecify the required during scheduling ignored during execution.requiredfalse
preferredSpecify the preferred during scheduling ignored during execution.[]preferredfalse
required (affinity)
NameDescriptionTypeRequiredDefault
nodeSelectorTermsSpecify a list of node selector.[]nodeSelectorTermstrue
nodeSelectorTerms (affinity)
NameDescriptionTypeRequiredDefault
matchExpressions[]matchExpressionsfalse
matchFields[]matchFieldsfalse
matchExpressions (affinity)
NameDescriptionTypeRequiredDefault
keystringtrue
operatorstringfalseIn
values[]stringfalse
matchFields (affinity)
NameDescriptionTypeRequiredDefault
keystringtrue
operatorstringfalseIn
values[]stringfalse
preferred (affinity)
NameDescriptionTypeRequiredDefault
weightSpecify weight associated with matching the corresponding nodeSelector.inttrue
preferenceSpecify a node selector.preferencetrue
preference (affinity)
NameDescriptionTypeRequiredDefault
matchExpressions[]matchExpressionsfalse
matchFields[]matchFieldsfalse
matchExpressions (affinity)
NameDescriptionTypeRequiredDefault
keystringtrue
operatorstringfalseIn
values[]stringfalse
matchFields (affinity)
NameDescriptionTypeRequiredDefault
keystringtrue
operatorstringfalseIn
values[]stringfalse

tolerations (affinity)

NameDescriptionTypeRequiredDefault
keystringfalse
effectstringfalse
valuestringfalse
operatorstringfalseEqual
tolerationSecondsSpecify the period of time the toleration.intfalse

Annotations

Description

Add annotations on your workload. if it generates pod, add same annotations for generated pods.

For now this trait is hidden from the VelaUX. Available when using CLI

Apply To Component Types

All Component Types

Examples (annotations)

apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: myapp
spec:
components:
- name: express-server
type: webservice
properties:
image: crccheck/hello-world
port: 8000
traits:
- type: labels
properties:
"release": "stable"
- type: annotations
properties:
"description": "web application"

Specification (annotations)

NameDescriptionTypeRequiredDefault
-map[string]:(null|string)true

Command

Description

Add command on K8s pod for your workload which follows the pod spec in path 'spec.template'.

For now this trait is hidden from the VelaUX. Available when using CLI

Apply To Component Types

Component based on the following kinds of resources:

  • deployments.apps
  • statefulsets.apps
  • daemonsets.apps
  • jobs.batch

Examples (command)

apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: busybox
spec:
components:
- name: busybox
type: webservice
properties:
image: busybox
cmd: ["sleep", "86400"]
traits:
- type: sidecar
properties:
name: sidecar-nginx
image: nginx
- type: command
properties:
# you can use command to control multiple containers by filling `containers`
# NOTE: in containers, you must set the container name for each container
containers:
- containerName: busybox
command: ["sleep", "8640000"]
- containerName: sidecar-nginx
args: ["-q"]

Specification (command)

NameDescriptionTypeRequiredDefault
--Composition type.parameter: cannot use value C{containerName: ("" | string), command: (null | [, ...string]), args: (null | [, ...string]), addArgs: (null | [, ...string]), delArgs: (*null | [, ...string])} (type struct) as stringfalse

Container-Image

Description

Set the image of the container.

For now this trait is hidden from the VelaUX. Available when using CLI

Apply To Component Types

Component based on the following kinds of resources:

  • deployments.apps
  • statefulsets.apps
  • daemonsets.apps
  • jobs.batch

Examples (container-image)

apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: busybox
spec:
components:
- name: busybox
type: webservice
properties:
image: busybox
cmd: ["sleep", "86400"]
traits:
- type: sidecar
properties:
name: sidecar-nginx
image: nginx
- type: container-image
properties:
# you can use container-image to control multiple containers by filling `containers`
# NOTE: in containers, you must set the container name for each container
containers:
- containerName: busybox
image: busybox-1.34.0
imagePullPolicy: IfNotPresent
- containerName: sidecar-nginx
image: nginx-1.20

Specification (container-image)

NameDescriptionTypeRequiredDefault
--Composition type.parameter: cannot use value C{containerName: ("" | string), image: string, imagePullPolicy: ("" | "IfNotPresent" | "Always" | "Never")} (type struct) as stringfalse

Cpuscaler

Description

Automatically scale the component based on CPU usage.

For now this trait is hidden from the VelaUX. Available when using CLI

Apply To Component Types

Component based on the following kinds of resources:

  • deployments.apps
  • statefulsets.apps

Examples (cpuscaler)

apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: website
spec:
components:
- name: frontend
type: webservice
properties:
image: nginx
traits:
- type: cpuscaler
properties:
min: 1
max: 10
cpuPercent: 60

Specification (cpuscaler)

NameDescriptionTypeRequiredDefault
targetAPIVersionSpecify the apiVersion of scale target.stringfalseapps/v1
targetKindSpecify the kind of scale target.stringfalseDeployment
minSpecify the minimal number of replicas to which the autoscaler can scale down.intfalse1
maxSpecify the maximum number of of replicas to which the autoscaler can scale up.intfalse10
cpuUtilSpecify the average cpu utilization, for example, 50 means the CPU usage is 50%.intfalse50

Env

Description

Add env on K8s pod for your workload which follows the pod spec in path 'spec.template'.

For now this trait is hidden from the VelaUX. Available when using CLI

Apply To Component Types

Component based on the following kinds of resources:

  • deployments.apps
  • statefulsets.apps
  • daemonsets.apps
  • jobs.batch

Examples (env)

apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: busybox
spec:
components:
- name: busybox
type: webservice
properties:
image: busybox
cmd: ["sleep", "86400"]
traits:
- type: sidecar
properties:
name: sidecar-nginx
image: nginx
- type: env
properties:
# you can use env to control multiple containers by filling `containers`
# NOTE: in containers, you must set the container name for each container
containers:
- containerName: busybox
env:
key_for_busybox_first: value_first
key_for_busybox_second: value_second
- containerName: sidecar-nginx
env:
key_for_nginx_first: value_first
key_for_nginx_second: value_second

Specification (env)

NameDescriptionTypeRequiredDefault
--Composition type.parameter: cannot use value C{env: {[]: (_: string)->string, }, containerName: ("" | string), replace: (false | bool), unset: (*[] | [, ...string])} (type struct) as stringfalse

Expose

Description

Expose port to enable web traffic for your component.

For now this trait is hidden from the VelaUX. Available when using CLI

Apply To Component Types

Component based on the following kinds of resources:

  • deployments.apps
  • statefulsets.apps

Examples (expose)

apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: test-app
spec:
components:
- name: hello-world
type: webservice
properties:
image: crccheck/hello-world
traits:
- type: expose
properties:
port: [8000]

Specification (expose)

NameDescriptionTypeRequiredDefault
annotationsSpecify the annotaions of the exposed service.map[string]:stringtrue
portSpecify the exposion ports.[]inttrue
typeSpecify what kind of Service you want. options: "ClusterIP","NodePort","LoadBalancer","ExternalName".stringfalseClusterIP

Gateway

Description

Enable public web traffic for the component, the ingress API matches K8s v1.20+.

Apply To Component Types

Component based on the following kinds of resources:

  • deployments.apps
  • statefulsets.apps

Examples (gateway)

# vela-app.yaml
apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: first-vela-app
spec:
components:
- name: express-server
type: webservice
properties:
image: oamdev/hello-world
port: 8000
traits:
- type: gateway
properties:
domain: testsvc.example.com
http:
"/": 8000

Specification (gateway)

NameDescriptionTypeRequiredDefault
httpSpecify the mapping relationship between the http path and the workload port.map[string]:inttrue
classInSpecSet ingress class in '.spec.ingressClassName' instead of 'kubernetes.io/ingress.class' annotation.boolfalsefalse
classSpecify the class of ingress to use.stringfalsenginx
gatewayHostSpecify the host of the ingress gateway, which is used to generate the endpoints when the host is empty.stringfalse
secretNameSpecify the secret name you want to quote to use tls.stringfalse
domainSpecify the domain you want to expose.stringfalse

Hostalias

Description

Add host aliases on K8s pod for your workload which follows the pod spec in path 'spec.template'.

For now this trait is hidden from the VelaUX. Available when using CLI

Apply To Component Types

Component based on the following kinds of resources:

  • deployments.apps
  • statefulsets.apps
  • daemonsets.apps
  • jobs.batch

Examples (hostalias)

apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: application-with-hostalias
spec:
components:
- name: busybox-runner
type: worker
properties:
image: busybox
cmd:
- sleep
- '1000'
traits:
- type: hostalias
properties:
hostAliases:
- ip: 127.0.0.1
hostnames:
- localname
- locals

Specification (hostalias)

NameDescriptionTypeRequiredDefault
hostAliasesSpecify the hostAliases to add.[]hostAliasestrue

hostAliases (hostalias)

NameDescriptionTypeRequiredDefault
ipstringtrue
hostnames[]stringtrue

Import-Grafana-Dashboard

Description

Import dashboards to Grafana.

For now this trait is hidden from the VelaUX. Available when using CLI

Apply To Component Types

Component based on the following kinds of resources:

Specification (import-grafana-dashboard)

NameDescriptionTypeRequiredDefault
grafanaServiceNamestringtrue
grafanaServiceNamespacestringfalsedefault
credentialSecretstringtrue
credentialSecretNamespacestringfalsedefault
urls[]stringtrue

Init-Container

Description

add an init container and use shared volume with pod.

For now this trait is hidden from the VelaUX. Available when using CLI

Apply To Component Types

Component based on the following kinds of resources:

  • deployments.apps
  • statefulsets.apps
  • daemonsets.apps
  • jobs.batch

Examples (init-container)

apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: busybox
spec:
components:
- name: busybox
type: webservice
properties:
image: busybox
cmd: ["sleep", "86400"]
traits:
- type: init-container
properties:
name: init-busybox
image: busybox
cmd: ["echo", "hello"]
initMountPath: /data
appMountPath: /data-initialized

Specification (init-container)

NameDescriptionTypeRequiredDefault
nameSpecify the name of init container.stringtrue
cmdSpecify the commands run in the init container.[]stringfalse
envSpecify the env run in the init container.[]envfalse
mountNameSpecify the mount name of shared volume.stringfalseworkdir
appMountPathSpecify the mount path of app container.stringtrue
imageSpecify the image of init container.stringtrue
argsSpecify the args run in the init container.[]stringfalse
initMountPathSpecify the mount path of init container.stringtrue
extraVolumeMountsSpecify the extra volume mounts for the init container.[]extraVolumeMountstrue

env (init-container)

NameDescriptionTypeRequiredDefault
nameEnvironment variable name.stringtrue
valueThe value of the environment variable.stringfalse
valueFromSpecifies a source the value of this var should come from.valueFromfalse
valueFrom (init-container)
NameDescriptionTypeRequiredDefault
secretKeyRefSelects a key of a secret in the pod's namespace.secretKeyReffalse
configMapKeyRefSelects a key of a config map in the pod's namespace.configMapKeyReffalse
secretKeyRef (init-container)
NameDescriptionTypeRequiredDefault
nameThe name of the secret in the pod's namespace to select from.stringtrue
keyThe key of the secret to select from. Must be a valid secret key.stringtrue
configMapKeyRef (init-container)
NameDescriptionTypeRequiredDefault
nameThe name of the config map in the pod's namespace to select from.stringtrue
keyThe key of the config map to select from. Must be a valid secret key.stringtrue

extraVolumeMounts (init-container)

NameDescriptionTypeRequiredDefault
nameThe name of the volume to be mounted.stringtrue
mountPathThe mountPath for mount in the init container.stringtrue

Json-Merge-Patch

Description

Patch the output following Json Merge Patch strategy, following RFC 7396.

For now this trait is hidden from the VelaUX. Available when using CLI

Apply To Component Types

All Component Types

Specification (json-merge-patch)

NameDescriptionTypeRequiredDefault
-map[string]:(null|bool|string|bytes|{...}|[...]|number)true

Json-Patch

Description

Patch the output following Json Patch strategy, following RFC 6902.

For now this trait is hidden from the VelaUX. Available when using CLI

Apply To Component Types

All Component Types

Specification (json-patch)

NameDescriptionTypeRequiredDefault
operations[]operationstrue

operations (json-patch)

NameDescriptionTypeRequiredDefault
-map[string]:(null|bool|string|bytes|{...}|[...]|number)true

Labels

Description

Add labels on your workload. if it generates pod, add same label for generated pods.

For now this trait is hidden from the VelaUX. Available when using CLI

Apply To Component Types

All Component Types

Examples (labels)

apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: myapp
spec:
components:
- name: express-server
type: webservice
properties:
image: crccheck/hello-world
port: 8000
traits:
- type: labels
properties:
"release": "stable"
- type: annotations
properties:
"description": "web application"

Specification (labels)

NameDescriptionTypeRequiredDefault
-map[string]:(null|string)true

Lifecycle

Description

Add lifecycle hooks for every container of K8s pod for your workload which follows the pod spec in path 'spec.template'.

For now this trait is hidden from the VelaUX. Available when using CLI

Apply To Component Types

Component based on the following kinds of resources:

  • deployments.apps
  • statefulsets.apps
  • daemonsets.apps
  • jobs.batch

Examples (lifecycle)

apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: application-with-lifecycle
spec:
components:
- name: busybox-runner
type: worker
properties:
image: busybox
cmd:
- sleep
- '1000'
traits:
- type: lifecycle
properties:
postStart:
exec:
command:
- echo
- 'hello world'
preStop:
httpGet:
host: "www.aliyun.com"
scheme: "HTTPS"
port: 443

Specification (lifecycle)

NameDescriptionTypeRequiredDefault
postStartpostStartfalse
preStoppreStopfalse

postStart (lifecycle)

NameDescriptionTypeRequiredDefault
execexecfalse
httpGethttpGetfalse
tcpSockettcpSocketfalse
exec (lifecycle)
NameDescriptionTypeRequiredDefault
command[]stringtrue
httpGet (lifecycle)
NameDescriptionTypeRequiredDefault
pathstringfalse
portinttrue
hoststringfalse
schemestringfalseHTTP
httpHeaders[]httpHeadersfalse
httpHeaders (lifecycle)
NameDescriptionTypeRequiredDefault
namestringtrue
valuestringtrue
tcpSocket (lifecycle)
NameDescriptionTypeRequiredDefault
portinttrue
hoststringfalse

preStop (lifecycle)

NameDescriptionTypeRequiredDefault
execexecfalse
httpGethttpGetfalse
tcpSockettcpSocketfalse
exec (lifecycle)
NameDescriptionTypeRequiredDefault
command[]stringtrue
httpGet (lifecycle)
NameDescriptionTypeRequiredDefault
pathstringfalse
portinttrue
hoststringfalse
schemestringfalseHTTP
httpHeaders[]httpHeadersfalse
httpHeaders (lifecycle)
NameDescriptionTypeRequiredDefault
namestringtrue
valuestringtrue
tcpSocket (lifecycle)
NameDescriptionTypeRequiredDefault
portinttrue
hoststringfalse

Nocalhost

Description

nocalhost develop configuration.

For now this trait is hidden from the VelaUX. Available when using CLI

Apply To Component Types

Component based on the following kinds of resources:

  • deployments.apps
  • statefulsets.apps
  • daemonsets.apps
  • jobs.batch

Examples (nocalhost)

apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: bookinfo
spec:
components:
- name: productpage
type: webservice
properties:
image: nocalhost-docker.pkg.coding.net/nocalhost/bookinfo/productpage:latest
port: 9080
traits:
- type: nocalhost
properties:
port: 9080
gitUrl: https://github.com/nocalhost/bookinfo-productpage.git
image: nocalhost-docker.pkg.coding.net/nocalhost/dev-images/python:3.7.7-slim-productpage-with-pydevd
shell: "bash"
workDir: "/opt/work"
resources:
limits:
memory: 1Gi
cpu: "1"
requests:
memory: 512Mi
cpu: "0.5"
debug:
remoteDebugPort: 9009
hotReload: true
sync:
type: send
filePattern:
- ./
ignoreFilePattern:
- .git
- .idea
command:
run:
- sh
- run.sh
debug:
- sh
- debug.sh
env:
- name: "foo"
value: "bar"
portForward:
- 39080:9080

Specification (nocalhost)

NameDescriptionTypeRequiredDefault
env[]envfalse
portinttrue
serviceTypestringfalsedeployment
gitUrlstringfalse
imagestringtrue
shellstringfalsebash
workDirstringfalse/home/nocalhost-dev
storageClassstringfalse
resourcesresourcestrue
persistentVolumeDirs[]persistentVolumeDirsfalse
commandcommandtrue
debugdebugfalse
hotReloadboolfalsetrue
syncsynctrue
portForward[]stringfalse

env (nocalhost)

NameDescriptionTypeRequiredDefault
namestringtrue
valuestringtrue

resources (nocalhost)

NameDescriptionTypeRequiredDefault
limitslimitstrue
requestsrequeststrue
limits (nocalhost)
NameDescriptionTypeRequiredDefault
memorystringfalse2Gi
cpustringfalse2
requests (nocalhost)
NameDescriptionTypeRequiredDefault
memorystringfalse512Mi
cpustringfalse0.5

persistentVolumeDirs (nocalhost)

NameDescriptionTypeRequiredDefault
pathstringtrue
capacitystringtrue

command (nocalhost)

NameDescriptionTypeRequiredDefault
debug[...]true
run[...]true

debug (nocalhost)

NameDescriptionTypeRequiredDefault
remoteDebugPortintfalse

sync (nocalhost)

NameDescriptionTypeRequiredDefault
typestringfalsesend
filePattern[...]true
ignoreFilePattern[...]true

Resource

Description

Add resource requests and limits on K8s pod for your workload which follows the pod spec in path 'spec.template.'.

For now this trait is hidden from the VelaUX. Available when using CLI

Apply To Component Types

Component based on the following kinds of resources:

  • deployments.apps
  • statefulsets.apps
  • daemonsets.apps
  • jobs.batch

Examples (resource)

apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: resource-app
spec:
components:
- name: express-server
type: webservice
properties:
image: crccheck/hello-world
ports:
- port: 8000
traits:
- type: resource
properties:
cpu: 2
memory: 2Gi
requests:
cpu: 2
memory: 2Gi
limits:
cpu: 4
memory: 4Gi

Specification (resource)

NameDescriptionTypeRequiredDefault
cpuSpecify the amount of cpu for requests and limits.numberfalse1
memorySpecify the amount of memory for requests and limits.stringfalse2048Mi
requestsSpecify the resources in requests.requestsfalse
limitsSpecify the resources in limits.limitsfalse

requests (resource)

NameDescriptionTypeRequiredDefault
cpuSpecify the amount of cpu for requests.numberfalse1
memorySpecify the amount of memory for requests.stringfalse2048Mi

limits (resource)

NameDescriptionTypeRequiredDefault
cpuSpecify the amount of cpu for limits.numberfalse1
memorySpecify the amount of memory for limits.stringfalse2048Mi

Scaler

Description

Manually scale K8s pod for your workload which follows the pod spec in path 'spec.template'.

Apply To Component Types

Component based on the following kinds of resources:

  • deployments.apps
  • statefulsets.apps

Examples (scaler)

apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: website
spec:
components:
- name: frontend
type: webservice
properties:
image: nginx
traits:
- type: scaler
properties:
replicas: 2
- type: sidecar
properties:
name: "sidecar-test"
image: "fluentd"
- name: backend
type: worker
properties:
image: busybox
cmd:
- sleep
- '1000'

Specification (scaler)

NameDescriptionTypeRequiredDefault
replicasSpecify the number of workload.intfalse1

Service-Account

Description

Specify serviceAccount for your workload which follows the pod spec in path 'spec.template'.

Apply To Component Types

Component based on the following kinds of resources:

  • deployments.apps
  • statefulsets.apps
  • daemonsets.apps
  • jobs.batch

Examples (service-account)

apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: vela-doc
namespace: vela-system
spec:
components:
- name: frontend
type: webservice
properties:
image: oamdev/vela-cli:v1.5.0-beta.1
cmd: ["/bin/vela","show"]
ports:
- port: 18081
expose: true
traits:
- type: service-account
properties:
name: kubevela-vela-core

Specification (service-account)

NameDescriptionTypeRequiredDefault
nameSpecify the name of ServiceAccount.stringtrue
createSpecify whether to create new ServiceAccount or not.boolfalsefalse
privilegesSpecify the privileges of the ServiceAccount, if not empty, RoleBindings(ClusterRoleBindings) will be created.[]privilegesfalse

privileges (service-account)

NameDescriptionTypeRequiredDefault
verbsSpecify the verbs to be allowed for the resource.[]stringtrue
apiGroupsSpecify the apiGroups of the resource.[]stringfalse
resourcesSpecify the resources to be allowed.[]stringfalse
resourceNamesSpecify the resourceNames to be allowed.[]stringfalse
nonResourceURLsSpecify the resource url to be allowed.[]stringfalse
scopeSpecify the scope of the privileges, default to be namespace scope.stringfalsenamespace

Service-Binding

Description

Binding secrets of cloud resources to component env. This definition is DEPRECATED, please use 'storage' instead.

For now this trait is hidden from the VelaUX. Available when using CLI

Apply To Component Types

Component based on the following kinds of resources:

  • deployments.apps
  • statefulsets.apps
  • daemonsets.apps
  • jobs.batch

Examples (service-binding)

  1. Prepare a Kubernetes Secret

The secret can be manually created, or generated by other component or external system.

For example, we have a secret db-conn-example whose data is as below:

endpoint: https://xxx.com
password: 123
username: myname
  1. Bind the Secret into your component by service-binding trait

For example, we have a webservice component who needs to consume a database. The database connection string should be set to Pod environments: endpoint, username and DB_PASSWORD.

We can set the properties for envMappings as below. For each environment, secret represents the secret name, and key represents the key of the secret.

Here is the complete properties for the trait.

traits:
- type: service-binding
properties:
envMappings:
DB_PASSWORD:
secret: db-conn-example
key: password
endpoint:
secret: db-conn-example
key: endpoint
username:
secret: db-conn-example
key: username

In particular, if the environment name, like endpoint, is same to the key of the secret, we can omit the key. So we can simplify the properties as below.

traits:
- type: service-binding
properties:
envMappings:
DB_PASSWORD:
secret: db-conn-example
key: password
endpoint:
secret: db-conn-example
username:
secret: db-conn-example

We can finally prepare an Application for the business component binding-test-comp to consume the secret, which is a representative of a database cloud resource.

apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: webapp
spec:
components:
- name: binding-test-comp
type: webservice
properties:
image: zzxwill/flask-web-application:v0.3.1-crossplane
ports: 80
traits:
- type: service-binding
properties:
envMappings:
# environments refer to db-conn secret
DB_PASSWORD:
secret: db-conn-example
key: password
endpoint:
secret: db-conn-example
username:
secret: db-conn-example

Deploy this YAML and the Secret db-conn-example will be binding into environment of workload.

Specification (service-binding)

NameDescriptionTypeRequiredDefault
envMappingsThe mapping of environment variables to secret.map[string]:#KeySecrettrue

Sidecar

Description

Inject a sidecar container to K8s pod for your workload which follows the pod spec in path 'spec.template'.

For now this trait is hidden from the VelaUX. Available when using CLI

Apply To Component Types

Component based on the following kinds of resources:

Examples (sidecar)

apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: vela-app-with-sidecar
spec:
components:
- name: log-gen-worker
type: worker
properties:
image: busybox
cmd:
- /bin/sh
- -c
- >
i=0;
while true;
do
echo "$i: $(date)" >> /var/log/date.log;
i=$((i+1));
sleep 1;
done
volumes:
- name: varlog
mountPath: /var/log
type: emptyDir
traits:
- type: sidecar
properties:
name: count-log
image: busybox
cmd: [ /bin/sh, -c, 'tail -n+1 -f /var/log/date.log']
volumes:
- name: varlog
path: /var/log

Specification (sidecar)

NameDescriptionTypeRequiredDefault
nameSpecify the name of sidecar container.stringtrue
cmdSpecify the commands run in the sidecar.[]stringfalse
envSpecify the env in the sidecar.[]envfalse
imageSpecify the image of sidecar container.stringtrue
argsSpecify the args in the sidecar.[]stringfalse
volumesSpecify the shared volume path.[]volumesfalse
livenessProbeInstructions for assessing whether the container is alive.livenessProbefalse
readinessProbeInstructions for assessing whether the container is in a suitable state to serve traffic.readinessProbefalse

env (sidecar)

NameDescriptionTypeRequiredDefault
nameEnvironment variable name.stringtrue
valueThe value of the environment variable.stringfalse
valueFromSpecifies a source the value of this var should come from.valueFromfalse
valueFrom (sidecar)
NameDescriptionTypeRequiredDefault
secretKeyRefSelects a key of a secret in the pod's namespace.secretKeyReffalse
configMapKeyRefSelects a key of a config map in the pod's namespace.configMapKeyReffalse
fieldRefSpecify the field reference for env.fieldReffalse
secretKeyRef (sidecar)
NameDescriptionTypeRequiredDefault
nameThe name of the secret in the pod's namespace to select from.stringtrue
keyThe key of the secret to select from. Must be a valid secret key.stringtrue
configMapKeyRef (sidecar)
NameDescriptionTypeRequiredDefault
nameThe name of the config map in the pod's namespace to select from.stringtrue
keyThe key of the config map to select from. Must be a valid secret key.stringtrue
fieldRef (sidecar)
NameDescriptionTypeRequiredDefault
fieldPathSpecify the field path for env.stringtrue

volumes (sidecar)

NameDescriptionTypeRequiredDefault
pathstringtrue
namestringtrue

livenessProbe (sidecar)

NameDescriptionTypeRequiredDefault
execInstructions for assessing container health by executing a command. Either this attribute or the httpGet attribute or the tcpSocket attribute MUST be specified. This attribute is mutually exclusive with both the httpGet attribute and the tcpSocket attribute.execfalse
httpGetInstructions for assessing container health by executing an HTTP GET request. Either this attribute or the exec attribute or the tcpSocket attribute MUST be specified. This attribute is mutually exclusive with both the exec attribute and the tcpSocket attribute.httpGetfalse
tcpSocketInstructions for assessing container health by probing a TCP socket. Either this attribute or the exec attribute or the httpGet attribute MUST be specified. This attribute is mutually exclusive with both the exec attribute and the httpGet attribute.tcpSocketfalse
initialDelaySecondsNumber of seconds after the container is started before the first probe is initiated.intfalse0
periodSecondsHow often, in seconds, to execute the probe.intfalse10
timeoutSecondsNumber of seconds after which the probe times out.intfalse1
successThresholdMinimum consecutive successes for the probe to be considered successful after having failed.intfalse1
failureThresholdNumber of consecutive failures required to determine the container is not alive (liveness probe) or not ready (readiness probe).intfalse3
exec (sidecar)
NameDescriptionTypeRequiredDefault
commandA command to be executed inside the container to assess its health. Each space delimited token of the command is a separate array element. Commands exiting 0 are considered to be successful probes, whilst all other exit codes are considered failures.[]stringtrue
httpGet (sidecar)
NameDescriptionTypeRequiredDefault
pathThe endpoint, relative to the port, to which the HTTP GET request should be directed.stringtrue
portThe TCP socket within the container to which the HTTP GET request should be directed.inttrue
httpHeaders[]httpHeadersfalse
httpHeaders (sidecar)
NameDescriptionTypeRequiredDefault
namestringtrue
valuestringtrue
tcpSocket (sidecar)
NameDescriptionTypeRequiredDefault
portThe TCP socket within the container that should be probed to assess container health.inttrue

readinessProbe (sidecar)

NameDescriptionTypeRequiredDefault
execInstructions for assessing container health by executing a command. Either this attribute or the httpGet attribute or the tcpSocket attribute MUST be specified. This attribute is mutually exclusive with both the httpGet attribute and the tcpSocket attribute.execfalse
httpGetInstructions for assessing container health by executing an HTTP GET request. Either this attribute or the exec attribute or the tcpSocket attribute MUST be specified. This attribute is mutually exclusive with both the exec attribute and the tcpSocket attribute.httpGetfalse
tcpSocketInstructions for assessing container health by probing a TCP socket. Either this attribute or the exec attribute or the httpGet attribute MUST be specified. This attribute is mutually exclusive with both the exec attribute and the httpGet attribute.tcpSocketfalse
initialDelaySecondsNumber of seconds after the container is started before the first probe is initiated.intfalse0
periodSecondsHow often, in seconds, to execute the probe.intfalse10
timeoutSecondsNumber of seconds after which the probe times out.intfalse1
successThresholdMinimum consecutive successes for the probe to be considered successful after having failed.intfalse1
failureThresholdNumber of consecutive failures required to determine the container is not alive (liveness probe) or not ready (readiness probe).intfalse3
exec (sidecar)
NameDescriptionTypeRequiredDefault
commandA command to be executed inside the container to assess its health. Each space delimited token of the command is a separate array element. Commands exiting 0 are considered to be successful probes, whilst all other exit codes are considered failures.[]stringtrue
httpGet (sidecar)
NameDescriptionTypeRequiredDefault
pathThe endpoint, relative to the port, to which the HTTP GET request should be directed.stringtrue
portThe TCP socket within the container to which the HTTP GET request should be directed.inttrue
httpHeaders[]httpHeadersfalse
httpHeaders (sidecar)
NameDescriptionTypeRequiredDefault
namestringtrue
valuestringtrue
tcpSocket (sidecar)
NameDescriptionTypeRequiredDefault
portThe TCP socket within the container that should be probed to assess container health.inttrue

Storage

Description

Add storages on K8s pod for your workload which follows the pod spec in path 'spec.template'.

Apply To Component Types

Component based on the following kinds of resources:

  • deployments.apps
  • statefulsets.apps
  • daemonsets.apps
  • jobs.batch

Examples (storage)

# sample.yaml
apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: storage-app
spec:
components:
- name: express-server
type: webservice
properties:
image: oamdev/hello-world
ports:
- port: 8000
traits:
- type: storage
properties:
# PVC type storage
pvc:
- name: test1
mountPath: /test/mount/pvc
# EmptyDir type storage
emptyDir:
- name: test1
mountPath: /test/mount/emptydir
# ConfigMap type storage
configMap:
- name: test1
mountPath: /test/mount/cm
# Mount ConfigMap to Env
mountToEnv:
envName: TEST_ENV
configMapKey: key1
data:
key1: value1
key2: value2
# Secret type storage
secret:
- name: test1
mountPath: /test/mount/secret
# Mount Secret to Env
mountToEnv:
envName: TEST_SECRET
secretKey: key1
data:
key1: dmFsdWUx
key2: dmFsdWUy

Specification (storage)

NameDescriptionTypeRequiredDefault
pvcDeclare pvc type storage.[]pvcfalse
configMapDeclare config map type storage.[]configMapfalse
secretDeclare secret type storage.[]secretfalse
emptyDirDeclare empty dir type storage.[]emptyDirfalse

pvc (storage)

NameDescriptionTypeRequiredDefault
namestringtrue
mountPathstringtrue
volumeModestringfalseFilesystem
subPathstringfalse
mountOnlyboolfalsefalse
accessModes[...]true
volumeNamestringfalse
storageClassNamestringfalse
resourcesresourcesfalse
dataSourceRefdataSourceReffalse
dataSourcedataSourcefalse
selectorselectorfalse
resources (storage)
NameDescriptionTypeRequiredDefault
requestsrequeststrue
limitslimitsfalse
requests (storage)
NameDescriptionTypeRequiredDefault
storagestringtrue
limits (storage)
NameDescriptionTypeRequiredDefault
storagestringtrue
dataSourceRef (storage)
NameDescriptionTypeRequiredDefault
namestringtrue
kindstringtrue
apiGroupstringtrue
dataSource (storage)
NameDescriptionTypeRequiredDefault
namestringtrue
kindstringtrue
apiGroupstringtrue
selector (storage)
NameDescriptionTypeRequiredDefault
matchLabelsmap[string]:stringfalse
matchExpressionsmatchExpressionsfalse
matchExpressions (storage)
NameDescriptionTypeRequiredDefault
keystringtrue
values[]stringtrue
operatorstringtrue

configMap (storage)

NameDescriptionTypeRequiredDefault
namestringtrue
mountPathstringfalse
defaultModeintfalse420
items[]itemsfalse
subPathstringfalse
mountToEnvmountToEnvfalse
mountToEnvs[]mountToEnvsfalse
mountOnlyboolfalsefalse
datamap[string]:(null|bool|string|bytes|{...}|[...]|number)false
readOnlyboolfalsefalse
items (storage)
NameDescriptionTypeRequiredDefault
pathstringtrue
keystringtrue
modeintfalse511
mountToEnv (storage)
NameDescriptionTypeRequiredDefault
envNamestringtrue
configMapKeystringtrue
mountToEnvs (storage)
NameDescriptionTypeRequiredDefault
envNamestringtrue
configMapKeystringtrue

secret (storage)

NameDescriptionTypeRequiredDefault
namestringtrue
mountPathstringfalse
defaultModeintfalse420
items[]itemsfalse
subPathstringfalse
mountToEnvmountToEnvfalse
mountToEnvs[]mountToEnvsfalse
mountOnlyboolfalsefalse
datamap[string]:(null|bool|string|bytes|{...}|[...]|number)false
stringDatamap[string]:(null|bool|string|bytes|{...}|[...]|number)false
readOnlyboolfalsefalse
items (storage)
NameDescriptionTypeRequiredDefault
pathstringtrue
keystringtrue
modeintfalse511
mountToEnv (storage)
NameDescriptionTypeRequiredDefault
envNamestringtrue
secretKeystringtrue
mountToEnvs (storage)
NameDescriptionTypeRequiredDefault
envNamestringtrue
secretKeystringtrue

emptyDir (storage)

NameDescriptionTypeRequiredDefault
namestringtrue
mountPathstringtrue
mediumstringfalseempty
subPathstringfalse