bump to 2023.10.1 #382
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: "Lint and Test Chart" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
lint-and-test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: "0" | |
- name: Set up Helm | |
uses: azure/setup-helm@v3.5 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9.2 | |
- name: Set up chart-testing | |
uses: helm/chart-testing-action@v2.4.0 | |
- name: Run chart-testing (list-changed) | |
id: list-changed | |
run: | | |
changed=$(ct list-changed --config ct.yaml) | |
if [[ -n "$changed" ]]; then | |
echo "changed=true" >> $GITHUB_OUTPUT | |
fi | |
- name: Run chart-testing (lint) | |
run: ct lint --config ct.yaml | |
- name: Create kind cluster | |
uses: helm/kind-action@v1.8.0 | |
if: steps.list-changed.outputs.changed == 'true' | |
- name: Run chart-testing (install) | |
if: steps.list-changed.outputs.changed == 'true' | |
run: | | |
namespace=authentik-$(uuidgen) | |
kubectl create ns $namespace | |
kubectl apply -n $namespace -f charts/authentik/ci/manifests/ | |
ct install --namespace=$namespace --config ct.yaml |