From 8176c4306cf1decf742bc356586a58e1bd2158be Mon Sep 17 00:00:00 2001 From: Ayrton Ricardo Date: Mon, 6 Dec 2021 17:17:41 +0100 Subject: [PATCH] Add missing input parameters to action.yml --- README.md | 2 +- action.yml | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 016aaa61..84fa1541 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ payload if the action was triggered by a deployment. - `namespace`: Kubernetes namespace name. (required) - `chart`: Helm chart path. If set to "app" this will use the built in helm chart found in this repository. (required) -- `chart_version`: The version of the helm chart you want to deploy (distinct from app version) +- `chart-version`: The version of the helm chart you want to deploy (distinct from app version) - `values`: Helm chart values, expected to be a YAML or JSON string. - `track`: Track for the deployment. If the track is not "stable" it activates the canary workflow described below. diff --git a/action.yml b/action.yml index cfec2692..5321e9df 100644 --- a/action.yml +++ b/action.yml @@ -46,6 +46,24 @@ inputs: version: description: Version of the app, usually commit sha works here. required: false + chart-version: + description: The version of the helm chart you want to deploy (distinct from app version) + required: false + track: + description: Track for the deployment. If the track is not "stable" it activates the canary workflow described in the docs. + required: false + repo: + description: Helm chart repository to be added. + required: false + repo-alias: + description: Helm repository alias that will be used. + required: false + repo-username: + description: Helm repository username if authentication is needed. + required: false + repo-password: + description: Helm repository password if authentication is needed. + required: false runs: using: docker image: Dockerfile