@@ -384,6 +384,19 @@ This job runs [Kube-Score](https://kube-score.com/) on the resources to be creat
| `kube-score-args` / `HELM_KUBE_SCORE_ARGS` | Arguments used by the helm-score job | _none_ |
| `k8s-version` / `HELM_K8S_VERSION` | Kubernetes version (_so that `.Capabilities.KubeVersion.Version` can be correctly interpreted_).<br/> Expected format: `vX.YY` | _none_ |
### `helm-diff` job
This job uses the [helm-diff](https://github.com/databus23/helm-diff) plugin to show the differences between the current and new chart state before deployment.
It uses the following variables:
| Input / Variable | Description | Default value |
| `diff-disabled` / `HELM_DIFF_DISABLED` | Set to `true` to disable Helm Diff before deployment (enabled by default) | `false` (enabled) |
| `diff-args` / `HELM_DIFF_ARGS` | The Helm [command with options](https://github.com/databus23/helm-diff#usage) to show the diff (_without dynamic arguments such as release name or chart_) | `diff upgrade --allow-unreleased --color` |
When enabled, this job lets you preview the changes that would be applied by Helm before actually deploying them.
### `helm-package` job
This job [packages](https://helm.sh/docs/helm/helm_package/) the Helm chart. It uses the following variables:
"description":"Show diff before deployment with [Helm Diff](https://github.com/databus23/helm-diff)",
"disable_with":"HELM_DIFF_DISABLED",
"variables":[
{
"name":"HELM_DIFF_ARGS",
"description":"The Helm [command with options](https://github.com/databus23/helm-diff#usage) to show diff before deployment (_without dynamic arguments such as release name and chart_)",
description:The Helm [command with options](https://helm.sh/docs/helm/helm_test/) to perform acceptance test (_without dynamic arguments such as release name_)
default:test
diff-disabled:
description:Disable Helm Diff
type:boolean
default:false
diff-args:
description:The Helm [command with options](https://github.com/databus23/helm-diff) to show diff before deployment (_without dynamic arguments such as release name and chart_)