Skip to content

remote-cluster: add ServiceAccount secret for 1.24+ (#150) #276

remote-cluster: add ServiceAccount secret for 1.24+ (#150)

remote-cluster: add ServiceAccount secret for 1.24+ (#150) #276

Workflow file for this run

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@v3
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.5.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/manfiests/
ct install --namespace=$namespace --config ct.yaml