Add local Kind setup with knot-dns,peeble, and dns-controller-manager #1
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: E2E Test on KinD cluster | |
on: | |
pull_request: | |
types: [ assigned, opened, synchronize, reopened ] | |
paths-ignore: | |
- 'docs/**' | |
- '.ci/**' | |
- '.reuse/**' | |
- '**/*.md' | |
- 'go.mod' | |
- 'go.sum' | |
jobs: | |
checks: | |
name: test-e2e | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: test-e2e | |
run: | | |
echo "functional tests with DNSEntries" | |
make kind-up | |
make certman-up | |
make test-functional-local | |
echo "functional tests with DNSRecords" | |
make certman-dnsrecords-up | |
make test-functional-local-dnsrecords | |
make kind-down |