chore: add helm lint to otel solutions #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Otel Infrastructure Collector Helm Lint and Install Test | |
on: | |
pull_request: | |
paths: | |
- 'otel-infrastructure-collector/k8s-helm/**' | |
jobs: | |
collector-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup | |
uses: ./.github/actions/setup | |
with: | |
create-kind-cluster: "true" | |
- name: Setup Secret | |
run: kubectl create secret generic coralogix-keys --from-literal=PRIVATE_KEY=123 | |
- name: Run chart-testing (install) | |
run: ct lint-and-install --namespace default --charts otel-infrastructure-collector/k8s-helm | |