Helm Chart
Object Representation (YAML)
id: String
name: String
type: String
depends: [String]
tags: [String]
condition: Boolean
each: Array
while: String
until: String
verbosity: String
ignore_errors: Boolean
tool_version: String
tool_options: Object
properties:
credential: String
api_url: String
name: String
chart_path: String
chart_url: String
chart_repo: String
chart_name: String
upgrade: Boolean
values: String
namespace: String
args: String
kubeconfig_content: String
kubeconfig_path: String
cwd: String
skip_cert_validation: Boolean
env:
- name: String
value: String
Fields
Property | Details |
---|---|
id *
|
String A unique identifier for the step. Can contain hyphens and underscores, but not spaces. |
name *
|
String A friendly name for the step. This name will appear in the pipeline designer and run output. |
type *
|
String The type of the step. Can be |
depends[]
|
[String] A list of dependencies of this step. This step will not be executed until all steps with |
tags[]
|
[String] Tags are used to group related steps. Steps with the same tag can be retrieved using the Can contain hyphens and underscores, but not spaces. |
condition
|
Boolean An expression which is evaluated before the step executes. If it evaluates to false, the step will be skipped. The |
each
|
Array An expression which evaluates to an array. It is evaluated once before the first iteration. There will be one iteration for each element of the array. An empty array ( |
while
|
String A boolean expression evaluated before each iteration. When the expression evaluates to |
until
|
String A boolean expression evaluated after each iteration. When the expression evaluates to |
verbosity
|
String Step event verbosity. Determines how much information about step execution is sent back to the application. |
ignore_errors
|
Boolean If |
tool_version
|
String The version to use for tool installation. |
tool_options
|
Object - |
properties.credential
|
String A Username/Password or API Token credential to use for authentication with the Kubernetes API server. |
properties.api_url
|
String URL of the Kubernetes API server. |
properties.name
|
String Name of the release. |
properties.chart_path
|
String Path to an existing Helm chart. |
properties.chart_url
|
String The absolute URL of a chart, e.g. a .tgz file download URL. |
properties.chart_repo
|
String The URL of a remote chart repository. |
properties.chart_name
|
String The name of the chart in the repository. Required if |
properties.upgrade
|
Boolean Upgrade the release if it already exists. |
properties.values
|
String A values file to provide to Helm. Should be YAML or JSON format. |
properties.namespace
|
String Kubernetes namespace to use. |
properties.args
|
String Additional command line arguments. |
properties.kubeconfig_content
|
String Path to an existing kubeconfig file. |
properties.kubeconfig_path
|
String Inline kubeconfig content. |
properties.cwd
|
String Working directory to use for script execution. |
properties.skip_cert_validation
|
Boolean Skip TLS certificate validation when communicating with the Kubernetes API server and when pulling charts. |
properties.env[]
|
[Object] A list of environment variables that will be set for script execution. |
properties.env[].name *
|
String Environment variable name. |
properties.env[].value *
|
String Environment variable value. |
Result Fields
The following are the step execution result fields available at steps.<step id>.result
after a step executes.
Key | Details |
---|---|
result.status
|
String A string indicating the step execution status. Can be Succeeded, Failed, or Skipped. |
result.exit_code
|
Number Exit code of the helm process. |
result.stdout
|
String Stdout of the helm process. |
result.stderr
|
String Stderr of the helm process. |