Skip to content

Commit

Permalink
Merge pull request #6 from AyrtonRicardo/add-missing-input-to-action-yml
Browse files Browse the repository at this point in the history
Add missing input parameters to action.yml
  • Loading branch information
AyrtonRicardo authored Dec 6, 2021
2 parents 88012c5 + 8176c43 commit 5dc1ac6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
18 changes: 18 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5dc1ac6

Please sign in to comment.