We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d25661a commit c413895Copy full SHA for c413895
.github/workflows/ci.yml
@@ -327,12 +327,16 @@ jobs:
327
cache-dependency-path: |
328
go.sum
329
.github/.cache/buster-for-unit-tests
330
-
+
331
- name: Deploy Kubernetes
332
id: k8s
333
run: |
334
kind create cluster --name ${{ github.run_id }} --image=kindest/node:${{ needs.vars.outputs.k8s_latest }}
335
336
+ - name: Apply CustomResourceDefinition
337
+ run: |
338
+ kubectl kustomize config/crd | kubectl apply -f -
339
340
- name: Run Tests
341
run: make -C tests test-cel-validation
342
0 commit comments