Skip to main content

Deploy configuration reference

Field reference for Deploy config & deploy application. All fields below live in the single Edit Job Deploy panel.

Deployment Trigger

ValueMeaning
ManualYou initiate the deploy manually.
AutoThe system deploys automatically when the Pipeline completes successfully.

ConfigMap / Secret Type

ConfigMap and Secrets share the same two settings. Use ConfigMap for regular configuration, Secrets for sensitive values such as passwords, tokens, or keys.

SettingValueMeaning
UsageEnvironment VariableInject data as environment variables into the container.
UsageData VolumeMount data as files inside the container.
Data formatGUIEnter data as key/value pairs. Recommended for multi-line data.
Data formatYAMLEnter data directly in YAML format (key-value coded input).

Values YAML — default fields

The Values YAML editor starts pre-filled with this schema:

FieldMeaning
ContainerPortList of container ports to expose. Each entry sets name, port, protocol (e.g. TCP), servicePort, envoyPort, idleTimeout, supportStreaming, useHTTP2.
EnvVariablesEnvironment variables for the container, as a list.
GracePeriodSeconds the container is given to shut down gracefully.
LivenessProbeKubernetes liveness probe settings: Path, command, failureThreshold, grpc, httpHeaders, initialDelaySeconds, periodSeconds, port, scheme, successThreshold.

Edit the values to match your application. The schema follows standard Kubernetes deployment configuration.

Deployment Status

StatusMeaning
RunningDeployment is in progress.
SuccessDeployment completed successfully.
FailedDeployment failed.
CancelledDeployment was cancelled.

See also