Skip to content

Commit

Permalink
docs(actions/helm/test-chart): update to match with action
Browse files Browse the repository at this point in the history
Signed-off-by: Emilien Escalle <[email protected]>
  • Loading branch information
neilime committed Jul 16, 2024
1 parent 7282004 commit 55ccd74
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/__shared-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ jobs:
linter:
uses: hoverkraft-tech/ci-github-common/.github/workflows/[email protected]
with:
# FIXME: re-enable the following checks
linter-env: |
VALIDATE_KUBERNETES_KUBECONFORM=false
VALIDATE_CHECKOV=false
test-action-docker-build-image:
needs: linter
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![License](https://img.shields.io/badge/License-MIT-blue)](#license)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)

Opinionated GitHub actions and workflows for continuous integration in container (OCI) context
Opinionated GitHub Actions and workflows for continuous integration in container (OCI) context

---

Expand All @@ -21,6 +21,8 @@ Opinionated GitHub actions and workflows for continuous integration in container

#### - [Release chart](actions/helm/release-chart/README.md)

#### - [Test chart](actions/helm/test-chart/README.md)

## Reusable Workflows

### - [Docker build images](.github/workflows/docker-build-images.md)
Expand All @@ -35,7 +37,7 @@ Opinionated GitHub actions and workflows for continuous integration in container

🏢 **Hoverkraft <[email protected]>**

- Website: [https://hoverkraft.cloud](https://hoverkraft.cloud)
- Site: [https://hoverkraft.cloud](https://hoverkraft.cloud)
- GitHub: [@hoverkraft-tech](https://github.com/hoverkraft-tech)

## License
Expand Down
19 changes: 12 additions & 7 deletions actions/helm/test-chart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,24 @@ Action to test a Helm chart. Mainly using [helm/chart-testing-action](https://gi
<!-- start usage -->

```yaml
- uses: hoverkraft-tech/ci-github-container/actions/helm/test-chart@v0.11.2
- uses: hoverkraft-tech/ci-github-container/actions/helm/test-chart@0.17.0
with:
# The extra parameter image.tag to pass to the helm release
# defaults to null
image-tag: "1.0.0"
# Set values for Helm chart.
# Multiple values can be set using multiline string.
# Example:
# key1=value1
# key2=value2
helm-set: |
key1=value1
key2=value2
```
<!-- end usage -->
<!-- start inputs -->
| **Input** | **Description** | **Default** | **Required** |
| --------- | --------------------------------------------------------- | ----------- | ------------ |
| image-tag | The extra parameter image.tag to pass to the helm release | null |  false |
| **Input** | **Description** | **Default** | **Required** |
| --------- | ---------------------------------------------------------------------------------------------------------------------------- | ----------- | ------------ |
| helm-set | Set values for Helm chart. Multiple values can be set using multiline string. Example: <code>key1=value1\nkey2=value2</code> | null |  false |
<!-- end inputs -->
<!-- start outputs -->
Expand Down

0 comments on commit 55ccd74

Please sign in to comment.