mirror of
https://github.com/kubevela/kubevela.git
synced 2026-02-14 10:00:06 +00:00
* refactor: use cuex engine Signed-off-by: FogDong <fog@bentoml.com> * fix: fix lint Signed-off-by: FogDong <fog@bentoml.com> * fix: fix unit test Signed-off-by: FogDong <fog@bentoml.com> * fix: fix static check and sdk tests Signed-off-by: FogDong <fog@bentoml.com> * fix: fix testdata Signed-off-by: FogDong <fog@bentoml.com> * fix: fix velaql unit test Signed-off-by: FogDong <fog@bentoml.com> * fix: fix docgen parser Signed-off-by: FogDong <fog@bentoml.com> * fix: fix cuegen Signed-off-by: FogDong <fog@bentoml.com> * fix: fix velaql Signed-off-by: FogDong <fog@bentoml.com> * fix: delete useless print Signed-off-by: FogDong <fog@bentoml.com> * fix: set client for ql Signed-off-by: FogDong <fog@bentoml.com> * fix: fix mt tests Signed-off-by: FogDong <fog@bentoml.com> * fix: set kubeclient in generator Signed-off-by: FogDong <fog@bentoml.com> * fix: use pass kube client Signed-off-by: FogDong <fog@bentoml.com> * fix: simplify ql Signed-off-by: FogDong <fog@bentoml.com> * fix: fix lint Signed-off-by: FogDong <fog@bentoml.com> * fix: add wf debug back Signed-off-by: FogDong <fog@bentoml.com> * fix: add loader Signed-off-by: FogDong <fog@bentoml.com> --------- Signed-off-by: FogDong <fog@bentoml.com>
285 lines
9.8 KiB
YAML
285 lines
9.8 KiB
YAML
# Code generated by KubeVela templates. DO NOT EDIT. Please edit the original cue file.
|
|
# Definition source cue file: vela-templates/definitions/internal/task.cue
|
|
apiVersion: core.oam.dev/v1beta1
|
|
kind: ComponentDefinition
|
|
metadata:
|
|
annotations:
|
|
definition.oam.dev/description: Describes jobs that run code or a script to completion.
|
|
name: task
|
|
namespace: {{ include "systemDefinitionNamespace" . }}
|
|
spec:
|
|
schematic:
|
|
cue:
|
|
template: |
|
|
output: {
|
|
apiVersion: "batch/v1"
|
|
kind: "Job"
|
|
spec: {
|
|
parallelism: parameter.count
|
|
completions: parameter.count
|
|
template: {
|
|
metadata: {
|
|
labels: {
|
|
if parameter.labels != _|_ {
|
|
parameter.labels
|
|
}
|
|
"app.oam.dev/name": context.appName
|
|
"app.oam.dev/component": context.name
|
|
}
|
|
if parameter.annotations != _|_ {
|
|
annotations: parameter.annotations
|
|
}
|
|
}
|
|
spec: {
|
|
restartPolicy: parameter.restart
|
|
containers: [{
|
|
name: context.name
|
|
image: parameter.image
|
|
|
|
if parameter["imagePullPolicy"] != _|_ {
|
|
imagePullPolicy: parameter.imagePullPolicy
|
|
}
|
|
|
|
if parameter["cmd"] != _|_ {
|
|
command: parameter.cmd
|
|
}
|
|
|
|
if parameter["env"] != _|_ {
|
|
env: parameter.env
|
|
}
|
|
|
|
if parameter["cpu"] != _|_ {
|
|
resources: {
|
|
limits: cpu: parameter.cpu
|
|
requests: cpu: parameter.cpu
|
|
}
|
|
}
|
|
|
|
if parameter["memory"] != _|_ {
|
|
resources: {
|
|
limits: memory: parameter.memory
|
|
requests: memory: parameter.memory
|
|
}
|
|
}
|
|
|
|
if parameter["volumes"] != _|_ {
|
|
volumeMounts: [for v in parameter.volumes {
|
|
{
|
|
mountPath: v.mountPath
|
|
name: v.name
|
|
}}]
|
|
}
|
|
}]
|
|
|
|
if parameter["volumes"] != _|_ {
|
|
volumes: [for v in parameter.volumes {
|
|
{
|
|
name: v.name
|
|
if v.type == "pvc" {
|
|
persistentVolumeClaim: claimName: v.claimName
|
|
}
|
|
if v.type == "configMap" {
|
|
configMap: {
|
|
defaultMode: v.defaultMode
|
|
name: v.cmName
|
|
if v.items != _|_ {
|
|
items: v.items
|
|
}
|
|
}
|
|
}
|
|
if v.type == "secret" {
|
|
secret: {
|
|
defaultMode: v.defaultMode
|
|
secretName: v.secretName
|
|
if v.items != _|_ {
|
|
items: v.items
|
|
}
|
|
}
|
|
}
|
|
if v.type == "emptyDir" {
|
|
emptyDir: medium: v.medium
|
|
}
|
|
}}]
|
|
}
|
|
|
|
if parameter["imagePullSecrets"] != _|_ {
|
|
imagePullSecrets: [for v in parameter.imagePullSecrets {
|
|
name: v
|
|
},
|
|
]
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
parameter: {
|
|
// +usage=Specify the labels in the workload
|
|
labels?: [string]: string
|
|
|
|
// +usage=Specify the annotations in the workload
|
|
annotations?: [string]: string
|
|
|
|
// +usage=Specify number of tasks to run in parallel
|
|
// +short=c
|
|
count: *1 | int
|
|
|
|
// +usage=Which image would you like to use for your service
|
|
// +short=i
|
|
image: string
|
|
|
|
// +usage=Specify image pull policy for your service
|
|
imagePullPolicy?: "Always" | "Never" | "IfNotPresent"
|
|
|
|
// +usage=Specify image pull secrets for your service
|
|
imagePullSecrets?: [...string]
|
|
|
|
// +usage=Define the job restart policy, the value can only be Never or OnFailure. By default, it's Never.
|
|
restart: *"Never" | string
|
|
|
|
// +usage=Commands to run in the container
|
|
cmd?: [...string]
|
|
|
|
// +usage=Define arguments by using environment variables
|
|
env?: [...{
|
|
// +usage=Environment variable name
|
|
name: string
|
|
// +usage=The value of the environment variable
|
|
value?: string
|
|
// +usage=Specifies a source the value of this var should come from
|
|
valueFrom?: {
|
|
// +usage=Selects a key of a secret in the pod's namespace
|
|
secretKeyRef?: {
|
|
// +usage=The name of the secret in the pod's namespace to select from
|
|
name: string
|
|
// +usage=The key of the secret to select from. Must be a valid secret key
|
|
key: string
|
|
}
|
|
// +usage=Selects a key of a config map in the pod's namespace
|
|
configMapKeyRef?: {
|
|
// +usage=The name of the config map in the pod's namespace to select from
|
|
name: string
|
|
// +usage=The key of the config map to select from. Must be a valid secret key
|
|
key: string
|
|
}
|
|
}
|
|
}]
|
|
|
|
// +usage=Number of CPU units for the service, like `0.5` (0.5 CPU core), `1` (1 CPU core)
|
|
cpu?: string
|
|
|
|
// +usage=Specifies the attributes of the memory resource required for the container.
|
|
memory?: string
|
|
|
|
// +usage=Declare volumes and volumeMounts
|
|
volumes?: [...{
|
|
name: string
|
|
mountPath: string
|
|
// +usage=Specify volume type, options: "pvc","configMap","secret","emptyDir", default to emptyDir
|
|
type: *"emptyDir" | "pvc" | "configMap" | "secret"
|
|
if type == "pvc" {
|
|
claimName: string
|
|
}
|
|
if type == "configMap" {
|
|
defaultMode: *420 | int
|
|
cmName: string
|
|
items?: [...{
|
|
key: string
|
|
path: string
|
|
mode: *511 | int
|
|
}]
|
|
}
|
|
if type == "secret" {
|
|
defaultMode: *420 | int
|
|
secretName: string
|
|
items?: [...{
|
|
key: string
|
|
path: string
|
|
mode: *511 | int
|
|
}]
|
|
}
|
|
if type == "emptyDir" {
|
|
medium: *"" | "Memory"
|
|
}
|
|
}]
|
|
|
|
// +usage=Instructions for assessing whether the container is alive.
|
|
livenessProbe?: #HealthProbe
|
|
|
|
// +usage=Instructions for assessing whether the container is in a suitable state to serve traffic.
|
|
readinessProbe?: #HealthProbe
|
|
}
|
|
|
|
#HealthProbe: {
|
|
|
|
// +usage=Instructions 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.
|
|
exec?: {
|
|
// +usage=A 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.
|
|
command: [...string]
|
|
}
|
|
|
|
// +usage=Instructions 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.
|
|
httpGet?: {
|
|
// +usage=The endpoint, relative to the port, to which the HTTP GET request should be directed.
|
|
path: string
|
|
// +usage=The TCP socket within the container to which the HTTP GET request should be directed.
|
|
port: int
|
|
httpHeaders?: [...{
|
|
name: string
|
|
value: string
|
|
}]
|
|
}
|
|
|
|
// +usage=Instructions 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.
|
|
tcpSocket?: {
|
|
// +usage=The TCP socket within the container that should be probed to assess container health.
|
|
port: int
|
|
}
|
|
|
|
// +usage=Number of seconds after the container is started before the first probe is initiated.
|
|
initialDelaySeconds: *0 | int
|
|
|
|
// +usage=How often, in seconds, to execute the probe.
|
|
periodSeconds: *10 | int
|
|
|
|
// +usage=Number of seconds after which the probe times out.
|
|
timeoutSeconds: *1 | int
|
|
|
|
// +usage=Minimum consecutive successes for the probe to be considered successful after having failed.
|
|
successThreshold: *1 | int
|
|
|
|
// +usage=Number of consecutive failures required to determine the container is not alive (liveness probe) or not ready (readiness probe).
|
|
failureThreshold: *3 | int
|
|
}
|
|
status:
|
|
customStatus: |-
|
|
status: {
|
|
active: *0 | int
|
|
failed: *0 | int
|
|
succeeded: *0 | int
|
|
} & {
|
|
if context.output.status.active != _|_ {
|
|
active: context.output.status.active
|
|
}
|
|
if context.output.status.failed != _|_ {
|
|
failed: context.output.status.failed
|
|
}
|
|
if context.output.status.succeeded != _|_ {
|
|
succeeded: context.output.status.succeeded
|
|
}
|
|
}
|
|
message: "Active/Failed/Succeeded:\(status.active)/\(status.failed)/\(status.succeeded)"
|
|
healthPolicy: |-
|
|
succeeded: *0 | int
|
|
if context.output.status.succeeded != _|_ {
|
|
succeeded: context.output.status.succeeded
|
|
}
|
|
isHealth: succeeded == context.output.spec.parallelism
|
|
workload:
|
|
definition:
|
|
apiVersion: batch/v1
|
|
kind: Job
|
|
type: jobs.batch
|
|
|