跳到主要内容

Kubernetes Run Job with YAML

List of YAML parameters and examples for the "Kubernetes Run Job" action

YAML parameters for Kubernetes Run Job

名称类型描述
action
必填
String操作名称
type
必填
StringThe type of the action. Should be set to KUBERNETES_RUN_JOB.
auth_type
必填
StringAuthorization type. Can be one of BASIC, TOKEN or CERTS.
server
必填
StringThe host for the connection.
loginStringThe username required when auth_type is set to BASIC.
passwordStringThe password required when auth_type is set to BASIC.
tokenStringThe token required when auth_type is set to TOKEN.
client_caStringThe certificate authority required when auth_type is set to CERTS.
client_certStringThe client certificate required when auth_type is set to CERTS.
client_keyStringThe client key required when auth_type is set to CERTS.
record_argStringRecord current kubectl command in the resource annotation. Can be one of TRUE, FALSE or NOT_SET. If set to false, do not record the command. If set to true, record the command. If not set, default to updating the existing annotation value only if one already exists.
leave_afterBooleanDefines whether to leave the Pod or delete it after the action finishes.
config_pathStringThe repository path to the configuration file. One of config_path or content must be specified.
contentStringThe configuration content. One of config_path or content must be specified.
not_waitBooleanDefines whether the execution should or should not wait for job to end.
kubectl_versionStringVersion of the kubectl used in the action. Default is “latest”.

YAML example for Kubernetes Run Job

actions:
- action: "Run job"
type: "KUBERNETES_RUN_JOB"
trigger_time: "ON_EVERY_EXECUTION"
auth_type: "BASIC"
server: "https://123.45.56.89:6443"
login: "admin"
password: "qwerty"
config_path: "config.yaml"
leave_after: true
not_wait: true
kubectl_version: "1.11.1"