feat: Add possibility to create custom Network Policies for project pods #134
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 validation | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'helm/**' | |
- '.github/workflows/helm-chart.yml' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'helm/**' | |
- '.github/workflows/helm-chart.yml' | |
jobs: | |
lint: | |
name: Lint and install chart | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Helm | |
uses: azure/[email protected] | |
with: | |
version: v3.13.2 | |
- name: Install Python | |
uses: actions/[email protected] | |
with: | |
python-version: 3.9 | |
- name: Set up chart-testing | |
uses: helm/[email protected] | |
- name: Add bitami repo | |
run: helm repo add bitnami https://charts.bitnami.com/bitnami | |
- name: Lint helm chart | |
run: | | |
ct lint --config ./.github/configs/chart-testing.yaml | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
- name: Label cluster nodes | |
run: | | |
for node in $(kubectl get nodes -o name); do | |
kubectl label --overwrite $node "role=management" | |
done | |
- name: Wait for forge application public image | |
run: | | |
IMAGE="flowfuse/forge-k8s" | |
TAG=$(helm show chart ./helm/flowforge | awk -F': ' '/appVersion/ {print $2}') | |
ATTEMPTS=0 | |
until docker manifest inspect $IMAGE:$TAG || [ $ATTEMPTS -eq 10 ]; do | |
ATTEMPTS=$((ATTEMPTS+1)) | |
echo "Attempt $ATTEMPTS failed! Trying again in 30 seconds..." | |
sleep 30 | |
done | |
if [ $ATTEMPTS -eq 10 ]; then | |
echo "Failed to inspect remote $IMAGE:$TAG after $ATTEMPTS attempts!" | |
exit 1 | |
fi | |
- name: Run chart-testing (install and upgrade) | |
run: ct install --upgrade --config ./.github/configs/chart-testing.yaml | |
validate: | |
name: Validate chart against kubernetes API | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Helm | |
uses: azure/[email protected] | |
with: | |
version: v3.13.2 | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
- name: Validate chart | |
run: | | |
helm template flowforge ./helm/flowforge --set forge.domain=example.com | kubectl apply --validate=true -f - | |
scan: | |
name: Scan chart | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
tool: | |
- checkov | |
# temporary disabled due to https://github.com/zegl/kube-score/issues/559 | |
# - kube-score | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Helm | |
uses: azure/[email protected] | |
with: | |
version: v3.13.2 | |
- name: Scan chart with checkov | |
if: matrix.tool == 'checkov' | |
uses: bridgecrewio/[email protected] | |
with: | |
directory: ${{ github.workspace }}/helm | |
var_file: ${{ github.workspace }}/helm/flowforge/ci/default-values.yaml | |
skip_path: /flowforge/charts/ | |
framework: helm | |
output_format: cli,sarif | |
output_file_path: console,results.sarif | |
soft_fail: true | |
- name: Template chart | |
# temporary disabled due to https://github.com/zegl/kube-score/issues/559 | |
if: false | |
run: | | |
helm template flowforge ./helm/flowforge --set forge.domain=example.com > ${{ github.workspace }}/templated_chart.yaml | |
- name: Install kube-score | |
# temporary disabled due to https://github.com/zegl/kube-score/issues/559 | |
if: false | |
uses: yokawasa/[email protected] | |
with: | |
setup-tools: "kube-score" | |
kube-score: '1.17.0' | |
- name: Scan chart with kube-score | |
# temporary disabled due to https://github.com/zegl/kube-score/issues/559 | |
if: false | |
continue-on-error: true | |
run: | |
kube-score score ${{ github.workspace }}/templated_chart.yaml --output-format sarif > results.sarif | |
- name: "Upload SARIF file" | |
if: success() || failure() | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: results.sarif |