Skip to content

feat: add support for notification policies #1398

feat: add support for notification policies

feat: add support for notification policies #1398

Workflow file for this run

name: KinD End-to-End
on:
pull_request:
branches: [master]
merge_group:
env:
NAME: grafana-operator
NAMESPACE: grafana-operator-system
jobs:
docs_only_check:
name: Check for docs-only change
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
docs_only: ${{ steps.docs_only_check.outputs.docs_only }}
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- id: changed-files
name: Get changed files
uses: tj-actions/changed-files@cc733854b1f224978ef800d29e4709d5ee2883e4 #v44.5.5
with:
files_ignore: |
**/*.md
**/*.html
hugo/**
- id: which_files
name: Which files was changed
run: |
echo "One or more files has changed."
echo "List all the files that have changed: ${{ steps.changed-files.outputs.all_changed_files }}"
echo "What is any changed ${{ steps.changed-files.outputs.any_changed }}"
- id: docs_only_check
if: steps.changed-files.outputs.any_changed != 'true'
name: Check for docs-only changes
run: echo "docs_only=true" >> $GITHUB_OUTPUT
e2e-tests:
name: e2e on kind ${{ matrix.version }}
runs-on: ubuntu-latest
needs:
- docs_only_check
if: (needs.docs_only_check.outputs.docs_only != 'true')
env:
KUBECONFIG: /home/runner/.kube/kind-grafana-operator-e2e
strategy:
matrix:
version:
- v1.27.13
- v1.28.9
- v1.29.4
- v1.30.0
steps:
- name: Clone repo and checkout
uses: actions/checkout@v4
- name: Install go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
cache: true
- name: Install ko
uses: ko-build/setup-ko@v0.7
with:
version: v0.13.0
- name: Install chainsaw
uses: kyverno/action-install-chainsaw@v0.2.6
- name: Create KinD cluster ${{ matrix.version }}
id: kind
run: |
kind --kubeconfig="${KUBECONFIG}" create cluster --image=kindest/node:${{ matrix.version }} --config tests/e2e/kind.yaml
- name: Install kubectl
uses: azure/setup-kubectl@v4
with:
version: ${{ matrix.version }}
- name: Build and load images
env:
KO_DOCKER_REPO: ko.local/grafana/grafana-operator
run: |
set -e
ko build --sbom=none --bare
kind load docker-image "$KO_DOCKER_REPO"
- name: Run e2e tests
shell: bash
run: |
# install chainsaw
make chainsaw
# Run e2e
VERSION=latest make e2e
- name: Debug failure
if: failure()
run: |
set -e
kubectl version
kubectl -n $NAMESPACE get all
kubectl -n $NAMESPACE get grafana
kubectl get crd
POD=$(kubectl get pods -n $NAMESPACE -l app.kubernetes.io/name=grafana-operator --output='jsonpath={.items[].metadata.name}')
echo "pod logs"
kubectl logs -n $NAMESPACE $POD -c manager
echo "previous pod logs (if any)"
kubectl logs -p -n $NAMESPACE $POD -c manager || true
end-to-end:
runs-on: ubuntu-latest
needs:
- e2e-tests
steps:
- run: |
echo "All E2E tests ran successfully"