Skip to content

api: support user provided names for generated k8s resources #23

api: support user provided names for generated k8s resources

api: support user provided names for generated k8s resources #23

name: Experimental Conformance Test
on:
push:
paths:
- 'charts/gateway-helm/crds/gatewayapi-crds.yaml'
pull_request:
paths:
- 'charts/gateway-helm/crds/gatewayapi-crds.yaml'
- 'test/conformance/*.go'
# Add workflow_dispatch to trigger this workflow manually by maintainers.
workflow_dispatch:
permissions:
contents: read
jobs:
experimental-conformance-test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ v1.27.13, v1.28.9, v1.29.4, v1.30.0 ]
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: ./tools/github-actions/setup-deps
# gateway api experimental conformance
- name: Run Experimental Conformance Tests
env:
CONFORMANCE_REPORT_PATH: conformance-report-k8s-${{ matrix.version }}.yaml
KIND_NODE_TAG: ${{ matrix.version }}
IMAGE_PULL_POLICY: IfNotPresent
run: make experimental-conformance
- name: Upload Conformance Report
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
with:
name: conformance-report-k8s-${{ matrix.version }}
path: ./test/conformance/conformance-report-k8s-${{ matrix.version }}.yaml