Karpenter 0.3.0 Modifications #329
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: Install and Test Helm Chart | |
on: pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Create k8s Kind Cluster | |
uses: helm/[email protected] | |
with: | |
cluster_name: kind | |
- name: Install Helm | |
uses: azure/setup-helm@v3 | |
with: | |
version: v3.16.2 | |
- name: Set up chart-testing | |
uses: helm/[email protected] | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
check-latest: true | |
- name: Install and test Helm charts | |
run: | | |
kubectl cluster-info --context kind-kind | |
changed=$(ct list-changed --config ct.yaml) | |
ct install --config ct.yaml |