Chart and doc updates #11
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: Helm Chart Testing | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
helm: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Create Kind Cluster | |
uses: helm/[email protected] | |
- name: Create namespace | |
run: kubectl create ns tesk | |
- name: Lint chart | |
run: helm lint | |
working-directory: charts/tesk | |
- name: Apply Helm file | |
run: helm install -n tesk tesk . -f values.yaml | |
working-directory: charts/tesk | |
- name: Sleep for 10 seconds | |
run: sleep 10 | |
- name: Get Helm and k8s | |
run: helm list -n tesk && kubectl get all -n tesk |