Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,20 @@ jobs:
run: ct lint --config ct.yaml --lint-conf lintconf.yaml --check-version-increment=false

- name: Create kind cluster
uses: helm/kind-action@v1.2.0
uses: helm/kind-action@v1.12.0
if: steps.list-changed.outputs.changed == 'true'
with:
node_image: kindest/node:v1.31.4

- name: Install Gateway API CRDs
if: steps.list-changed.outputs.changed == 'true'
run: |
helm template eg oci://docker.io/envoyproxy/gateway-crds-helm \
--version v1.7.0 \
--set crds.gatewayAPI.enabled=true \
--set crds.gatewayAPI.channel=standard \
--set crds.envoyGateway.enabled=true \
| kubectl apply --server-side -f -

- name: Run chart-testing (install)
run: ct install --config ct.yaml
Loading
Loading