Skip to content

Commit 55ccd74

Browse files
committed
docs(actions/helm/test-chart): update to match with action
Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
1 parent 7282004 commit 55ccd74

3 files changed

Lines changed: 18 additions & 9 deletions

File tree

.github/workflows/__shared-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ jobs:
1818
linter:
1919
uses: hoverkraft-tech/ci-github-common/.github/workflows/linter.yml@0.13.3
2020
with:
21+
# FIXME: re-enable the following checks
2122
linter-env: |
2223
VALIDATE_KUBERNETES_KUBECONFORM=false
24+
VALIDATE_CHECKOV=false
2325
2426
test-action-docker-build-image:
2527
needs: linter

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![License](https://img.shields.io/badge/License-MIT-blue)](#license)
66
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)
77

8-
Opinionated GitHub actions and workflows for continuous integration in container (OCI) context
8+
Opinionated GitHub Actions and workflows for continuous integration in container (OCI) context
99

1010
---
1111

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

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

24+
#### - [Test chart](actions/helm/test-chart/README.md)
25+
2426
## Reusable Workflows
2527

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

3638
🏢 **Hoverkraft <contact@hoverkraft.cloud>**
3739

38-
- Website: [https://hoverkraft.cloud](https://hoverkraft.cloud)
40+
- Site: [https://hoverkraft.cloud](https://hoverkraft.cloud)
3941
- GitHub: [@hoverkraft-tech](https://github.com/hoverkraft-tech)
4042

4143
## License

actions/helm/test-chart/README.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,24 @@ Action to test a Helm chart. Mainly using [helm/chart-testing-action](https://gi
1717
<!-- start usage -->
1818

1919
```yaml
20-
- uses: hoverkraft-tech/ci-github-container/actions/helm/test-chart@v0.11.2
20+
- uses: hoverkraft-tech/ci-github-container/actions/helm/test-chart@0.17.0
2121
with:
22-
# The extra parameter image.tag to pass to the helm release
23-
# defaults to null
24-
image-tag: "1.0.0"
22+
# Set values for Helm chart.
23+
# Multiple values can be set using multiline string.
24+
# Example:
25+
# key1=value1
26+
# key2=value2
27+
helm-set: |
28+
key1=value1
29+
key2=value2
2530
```
2631
2732
<!-- end usage -->
2833
<!-- start inputs -->
2934
30-
| **Input** | **Description** | **Default** | **Required** |
31-
| --------- | --------------------------------------------------------- | ----------- | ------------ |
32-
| image-tag | The extra parameter image.tag to pass to the helm release | null |  false |
35+
| **Input** | **Description** | **Default** | **Required** |
36+
| --------- | ---------------------------------------------------------------------------------------------------------------------------- | ----------- | ------------ |
37+
| helm-set | Set values for Helm chart. Multiple values can be set using multiline string. Example: <code>key1=value1\nkey2=value2</code> | null |  false |
3338
3439
<!-- end inputs -->
3540
<!-- start outputs -->

0 commit comments

Comments
 (0)