HPA add customMetric
and behavior
based scaling (#60)
#33
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: Test chart | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
test_chart: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Helm | |
uses: azure/setup-helm@v1 | |
with: | |
version: v3.8.1 | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
- name: Test chart 1 | |
run: helm install test-1 . -f .github/test-values-1.yaml | |
- name: Install test 2 configMap | |
run: kubectl apply -f .github/test-values-2-cm.yaml | |
- name: Test chart 2 | |
run: helm install test-2 . -f .github/test-values-2.yaml |