Skip to content

Commit

Permalink
chore: Enable chart testing in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgebay committed Sep 22, 2023
1 parent d81b708 commit 9d23fbe
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,10 @@ jobs:
if: steps.list-changed.outputs.changed == 'true'
run: ct lint --target-branch ${{ github.event.repository.default_branch }}

# TODO: Re-enable once the image is public
# - name: Create kind cluster
# if: steps.list-changed.outputs.changed == 'true'
# uses: helm/kind-action@v1.7.0

# - name: Run chart-testing (install)
# if: steps.list-changed.outputs.changed == 'true'
# run: ct install --target-branch ${{ github.event.repository.default_branch }}
- name: Create kind cluster
if: steps.list-changed.outputs.changed == 'true'
uses: helm/kind-action@v1.7.0

- name: Run chart-testing (install)
if: steps.list-changed.outputs.changed == 'true'
run: ct install --target-branch ${{ github.event.repository.default_branch }}
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# Mezmo Helm Charts

Helm charts for Mezmo products.

## How to use the Helm repository

You need to add this repository to your Helm repositories:

```shell
helm repo add mezmo https://mezmo.github.io/helm-charts/
helm repo update
```

### Installing Mezmo Pulse

```shell
helm install my_pulse_deployment mezmo/pulse \
--set mezmoApiAccessToken=<PIPELINE_SERVICE_TOKEN> \
--set service.sourcePorts.start=8080 \
--set service.sourcePorts.end=8100
```

0 comments on commit 9d23fbe

Please sign in to comment.