1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

skip var checks in attestations (#3876)

Signed-off-by: Jim Bugwadia <jim@nirmata.com>
This commit is contained in:
Jim Bugwadia 2022-05-11 02:31:48 -07:00 committed by GitHub
parent c6a0bdd711
commit 0cd21ec0f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 45 additions and 4 deletions

View file

@ -459,7 +459,7 @@ func (iv *imageVerifier) verifyAttestations(imageVerify v1.ImageVerification, im
return ruleError(iv.rule, response.ImageVerify, fmt.Sprintf("failed to fetch attestations for %s", image), err)
}
iv.logger.V(4).Info("received attestations", "statements", statements)
iv.logger.V(4).Info("received attestations", "count", len(statements))
statementsByPredicate := buildStatementMap(statements)
for _, ac := range imageVerify.Attestations {

View file

@ -400,3 +400,44 @@ func TestNotAllowedVars_VariableFormats(t *testing.T) {
}
}
}
func TestNotAllowedVars_Attestations(t *testing.T) {
var policyYAML = []byte(`
---
apiVersion: kyverno.io/v1
kind: ClusterPolicy
metadata:
name: attest-bom
spec:
validationFailureAction: enforce
webhookTimeoutSeconds: 30
failurePolicy: Fail
rules:
- name: check-attestations
match:
resources:
kinds:
- Pod
verifyImages:
- imageReferences:
- "ghcr.io/test/demo-java-tomcat:*"
attestations:
- predicateType: "https://cyclonedx.org/BOM/v1"
- predicateType: "https://trivy.aquasec.com/scan/v2"
conditions:
- all:
- key: "{{ scanner }}"
operator: Equals
value: trivy
- predicateType: https://example.com/provenance/v1
`)
policyJSON, err := yaml.ToJSON(policyYAML)
assert.NilError(t, err)
policy, err := ut.GetPolicy(policyJSON)
assert.NilError(t, err)
err = hasInvalidVariables(policy[0], false)
assert.NilError(t, err)
}

View file

@ -383,9 +383,9 @@ func hasInvalidVariables(policy kyverno.PolicyInterface, background bool) error
}
// skip variable checks on verifyImages.attestations, as variables in attestations are dynamic
for _, vi := range ruleCopy.VerifyImages {
for _, a := range vi.Attestations {
a.Conditions = nil
for i, vi := range ruleCopy.VerifyImages {
for j := range vi.Attestations {
ruleCopy.VerifyImages[i].Attestations[j].Conditions = nil
}
}