Version: v1.3

Built-in Component Type

This documentation will walk through the built-in component types.

Describes long-running, scalable, containerized services that have a stable network endpoint to receive external network traffic from customers.

NameDescriptionTypeRequiredDefault
cmdCommands to run in the container[]stringfalse
envDefine arguments by using environment variables[]envfalse
volumeMountsvolumeMountsfalse
labelsSpecify the labels in the workloadmap[string]stringfalse
annotationsSpecify the annotations in the workloadmap[string]stringfalse
imageWhich image would you like to use for your servicestringtrue
portsWhich ports do you want customer traffic sent to[]portsfalse
imagePullPolicySpecify image pull policy for your service. Should be “Always”,”Never” or “IfNotPresent”.stringfalse
cpuNumber of CPU units for the service, like 0.5 (0.5 CPU core), 1 (1 CPU core)stringfalse
memorySpecifies the attributes of the memory resource required for the container.stringfalse
livenessProbeInstructions for assessing whether the container is alive.livenessProbefalse
readinessProbeInstructions for assessing whether the container is in a suitable state to serve traffic.readinessProbefalse
imagePullSecretsSpecify image pull secrets for your service[]stringfalse
NameDescriptionTypeRequiredDefault
hostAliasesSpecify the hostAliases to add[]hostAliasestrue
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.inttrue0
periodSecondsHow often, in seconds, to execute the probe.inttrue10
timeoutSecondsNumber of seconds after which the probe times out.inttrue1
successThresholdMinimum consecutive successes for the probe to be considered successful after having failed.inttrue1
failureThresholdNumber of consecutive failures required to determine the container is not alive (liveness probe) or not ready (readiness probe).inttrue3
NameDescriptionTypeRequiredDefault
portThe TCP socket within the container that should be probed to assess container health.inttrue
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
NameDescriptionTypeRequiredDefault
namestringtrue
valuestringtrue
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
NameDescriptionTypeRequiredDefault
ipstringtrue
hostnames[]stringtrue
NameDescriptionTypeRequiredDefault
hostAliasesSpecify the hostAliases to add[]hostAliasestrue
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.inttrue0
periodSecondsHow often, in seconds, to execute the probe.inttrue10
timeoutSecondsNumber of seconds after which the probe times out.inttrue1
successThresholdMinimum consecutive successes for the probe to be considered successful after having failed.inttrue1
failureThresholdNumber of consecutive failures required to determine the container is not alive (liveness probe) or not ready (readiness probe).inttrue3
NameDescriptionTypeRequiredDefault
nameName of the portstringfalse
portNumber of port to expose on the pod’s IP addressinttrue
protocolProtocol for port. Must be UDP, TCP, or SCTPstringtrueTCP
exposeSpecify if the port should be exposedbooltruefalse
NameDescriptionTypeRequiredDefault
pvcMount PVC type volume[]pvcfalse
configMapMount ConfigMap type volume[]configMapfalse
secretMount Secret type volume[]secretfalse
emptyDirMount EmptyDir type volume[]emptyDirfalse
hostPathMount HostPath type volume[]hostPathfalse
NameDescriptionTypeRequiredDefault
pathstringtrue
namestringtrue
mountPathstringtrue
NameDescriptionTypeRequiredDefault
namestringtrue
mountPathstringtrue
mediumstringtrueempty
NameDescriptionTypeRequiredDefault
namestringtrue
mountPathstringtrue
defaultModeinttrue420
items[]itemsfalse
secretNamestringtrue
NameDescriptionTypeRequiredDefault
pathstringtrue
keystringtrue
modeinttrue511
NameDescriptionTypeRequiredDefault
namestringtrue
mountPathstringtrue
defaultModeinttrue420
cmNamestringtrue
items[]itemsfalse
NameDescriptionTypeRequiredDefault
pathstringtrue
keystringtrue
modeinttrue511
NameDescriptionTypeRequiredDefault
namestringtrue
mountPathstringtrue
claimNameThe name of the PVCstringtrue
NameDescriptionTypeRequiredDefault
nameEnvironment variable namestringtrue
valueThe value of the environment variablestringfalse
valueFromSpecifies a source the value of this var should come fromvalueFromfalse
NameDescriptionTypeRequiredDefault
secretKeyRefSelects a key of a secret in the pod’s namespacesecretKeyReffalse
configMapKeyRefSelects a key of a config map in the pod’s namespaceconfigMapKeyReffalse
NameDescriptionTypeRequiredDefault
nameThe name of the config map in the pod’s namespace to select fromstringtrue
keyThe key of the config map to select from. Must be a valid secret keystringtrue
NameDescriptionTypeRequiredDefault
nameThe name of the secret in the pod’s namespace to select fromstringtrue
keyThe key of the secret to select from. Must be a valid secret keystringtrue
  1. apiVersion: core.oam.dev/v1beta1
  2. kind: Application
  3. metadata:
  4. name: website
  5. spec:
  6. components:
  7. - name: frontend
  8. type: webservice
  9. properties:
  10. image: oamdev/testapp:v1
  11. cmd: ["node", "server.js"]
  12. port: 8080
  13. cpu: "0.1"
  14. env:
  15. - name: FOO
  16. value: bar
  17. - name: FOO
  18. valueFrom:
  19. secretKeyRef:
  20. name: bar
  21. key: bar

Describes long-running, scalable, containerized services that running at backend. They do NOT have network endpoint to receive external network traffic.

NAMEDESCRIPTIONTYPEREQUIREDDEFAULT
cmdCommands to run in the container[]stringfalse
envDefine arguments by using environment variables[]envfalse
imageWhich image would you like to use for your servicestringtrue
imagePullPolicySpecify image pull policy for your service. Should be “Always”,”Never” or “IfNotPresent”.stringfalse
cpuNumber of CPU units for the service, like 0.5 (0.5 CPU core), 1 (1 CPU core)stringfalse
memorySpecifies the attributes of the memory resource required for the container.stringfalse
volumeMountsvolumeMountsfalse
livenessProbeInstructions for assessing whether the container is alive.livenessProbefalse
readinessProbeInstructions for assessing whether the container is in a suitable state to serve traffic.readinessProbefalse
imagePullSecretsSpecify image pull secrets for your service[]stringfalse
  1. apiVersion: core.oam.dev/v1beta1
  2. kind: Application
  3. metadata:
  4. name: app-worker
  5. spec:
  6. components:
  7. - name: myworker
  8. type: worker
  9. properties:
  10. image: "busybox"
  11. cmd:
  12. - sleep
  13. - "1000"

Describes jobs that run code or a script to completion.

NAMEDESCRIPTIONTYPEREQUIREDDEFAULT
cmdCommands to run in the container[]stringfalse
envDefine arguments by using environment variables[]envfalse
countSpecify number of tasks to run in parallelinttrue1
restartDefine the job restart policy, the value can only be Never or OnFailure. By default, it’s Never.stringtrueNever
imageWhich image would you like to use for your servicestringtrue
cpuNumber of CPU units for the service, like 0.5 (0.5 CPU core), 1 (1 CPU core)stringfalse
memorySpecifies the attributes of the memory resource required for the container.stringfalse
volumeMountsvolumeMountsfalse
livenessProbeInstructions for assessing whether the container is alive.livenessProbefalse
readinessProbeInstructions for assessing whether the container is in a suitable state to serve traffic.readinessProbefalse
labelsSpecify the labels in the workload[]stringfalse
annotationsSpecify the annotations in the workload[]stringfalse
imagePullPolicySpecify image pull policy for your servicestringfalse
imagePullSecretsSpecify image pull secrets for your service[]stringfalse
  1. apiVersion: core.oam.dev/v1beta1
  2. kind: Application
  3. metadata:
  4. name: app-worker
  5. spec:
  6. components:
  7. - name: mytask
  8. type: task
  9. properties:
  10. image: perl
  11. count: 10
  12. cmd: ["perl", "-Mbignum=bpi", "-wle", "print bpi(2000)"]

Describes cron jobs that run code or a script to completion.

NAMEDESCRIPTIONTYPEREQUIREDDEFAULT
cmdCommands to run in the container[]stringfalse
envDefine arguments by using environment variables[]envfalse
scheduleSpecify the schedule in Cron formatstringtrue
suspendSuspend subsequent executionsboolfalsefalse
concurrencyPolicySpecifies how to treat concurrent executions of a JobstringfalseAllow
successfulJobsHistoryLimitThe number of successful finished jobs to retainintfalse3
failedJobsHistoryLimitThe number of failed finished jobs to retainintfalse1
countSpecify number of tasks to run in parallelinttrue1
restartDefine the job restart policy, the value can only be Never or OnFailure. By default, it’s Never.stringtrueNever
imageWhich image would you like to use for your servicestringtrue
cpuNumber of CPU units for the service, like 0.5 (0.5 CPU core), 1 (1 CPU core)stringfalse
memorySpecifies the attributes of the memory resource required for the container.stringfalse
volumeMountsvolumeMountsfalse
livenessProbeInstructions for assessing whether the container is alive.livenessProbefalse
readinessProbeInstructions for assessing whether the container is in a suitable state to serve traffic.readinessProbefalse
labelsSpecify the labels in the workload[]stringfalse
annotationsSpecify the annotations in the workload[]stringfalse
imagePullPolicySpecify image pull policy for your servicestringfalse
imagePullSecretsSpecify image pull secrets for your service[]stringfalse
  1. apiVersion: core.oam.dev/v1beta1
  2. kind: Application
  3. metadata:
  4. name: cron-worker
  5. spec:
  6. components:
  7. - name: mytask
  8. type: cron-task
  9. properties:
  10. image: perl
  11. count: 10
  12. cmd: ["perl", "-Mbignum=bpi", "-wle", "print bpi(2000)"]
  13. schedule: "*/1 * * * *"

Last updated on Nov 1, 2022 by Tianxin Dong