1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-10 01:46:55 +00:00
kyverno/test/conformance/chainsaw/globalcontext/gctxentry-not-exist/chainsaw-test.yaml
Khaled Emara 2b28538bd3
feat(gctx): add jmespath caching through projections (#11833)
feat(gctx): move ready check to runtime

Signed-off-by: Khaled Emara <khaled.emara@nirmata.com>
Co-authored-by: shuting <shuting@nirmata.com>
2025-02-18 15:51:14 +00:00

43 lines
1.6 KiB
YAML
Executable file

apiVersion: chainsaw.kyverno.io/v1alpha1
kind: Test
metadata:
name: gctxentry-not-exist
spec:
steps:
- name: setup
try:
- apply:
file: namespace.yaml
- apply:
file: main-deployment.yaml
- name: create policy
use:
template: ../../_step-templates/create-policy.yaml
with:
bindings:
- name: file
value: clusterpolicy.yaml
- name: wait policy ready
use:
template: ../../_step-templates/cluster-policy-ready.yaml
with:
bindings:
- name: name
value: cpol-gctxentry-not-exist
- name: create new deployment
try:
- script:
content: kubectl apply -f new-deployment.yaml
check:
($error != null): true
# This check ensures the contents of stderr are exactly as shown.
(trim_space($stderr)): |-
Error from server: error when creating "new-deployment.yaml": admission webhook "validate.kyverno.svc-fail" denied the request:
resource Deployment/test-globalcontext-gctxentry-not-exist/new-deployment was blocked due to the following policies
cpol-gctxentry-not-exist:
autogen-main-deployment-exists: 'failed to check deny conditions: failed to substitute
variables in condition key: failed to resolve deploymentCount at path : failed
to marshal APICall data for context entry deploymentCount: failed to fetch entry
key=non-existent-gctx'