├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── build.yaml │ ├── codeql-analysis.yml │ ├── depsreview.yml │ ├── donotsubmit.yaml │ ├── kind-cluster-image-policy-no-tuf.yaml │ ├── kind-cluster-image-policy-trustroot.yaml │ ├── kind-cluster-image-policy-tsa.yaml │ ├── kind-cluster-image-policy.yaml │ ├── kind-e2e-cosigned.yaml │ ├── kind-e2e-trustroot-crd.yaml │ ├── lint.yaml │ ├── milestone.yaml │ ├── policy-tester-examples.yml │ ├── release-snapshot.yaml │ ├── release.yaml │ ├── scorecard_action.yml │ ├── style.yaml │ ├── tests.yaml │ ├── verify-codegen.yaml │ ├── verify-docs.yaml │ └── whitespace.yaml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yaml ├── .ko.yaml ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── COPYRIGHT.txt ├── LICENSE ├── Makefile ├── README.md ├── cmd ├── api-docs │ └── main.go ├── local-dev │ ├── clean.go │ ├── main.go │ ├── root.go │ └── setup.go ├── sample │ └── main.go ├── schema │ └── main.go ├── tester │ ├── main.go │ └── trustroot.go └── webhook │ ├── depcheck_test.go │ ├── kodata │ ├── HEAD │ ├── LICENSE │ ├── VENDOR-LICENSE │ └── refs │ └── main.go ├── config ├── 100-namespace.yaml ├── 200-clusterrole.yaml ├── 200-role.yaml ├── 200-serviceaccount.yaml ├── 201-clusterrolebinding.yaml ├── 201-rolebinding.yaml ├── 300-clusterimagepolicy.yaml ├── 300-trustroot.yaml ├── 400-webhook-service.yaml ├── 500-webhook-configuration.yaml ├── 501-policy-webhook-configurations.yaml ├── config-image-policies.yaml ├── config-leader-election.yaml ├── config-logging.yaml ├── config-observability.yaml ├── config-policy-controller.yaml ├── config-sigstore-keys.yaml ├── dummy.go ├── kustomization.yaml └── webhook.yaml ├── docs └── api-types │ ├── index-v1alpha1.md │ └── index.md ├── examples ├── README.md ├── keys │ ├── cosign.key │ └── cosign.pub ├── policies │ ├── allow-only-pods.yaml │ ├── custom-key-attestation-sbom-spdxjson.yaml │ ├── keyless-attestation-sbom-spdxjson.yaml │ ├── release-signed-by-github-actions.yaml │ ├── signed-by-aws-kms-key.yaml │ ├── signed-by-gcp-kms-key.yaml │ └── signed-by-github-actions.yaml └── sboms │ └── example.spdx.json ├── go.mod ├── go.sum ├── hack ├── boilerplate │ └── boilerplate.go.txt ├── gentestdata │ └── gentestdata.go ├── github-oidc-setup.sh ├── tools.go ├── update-codegen.sh └── update-deps.sh ├── images ├── dot │ └── signatures.dot ├── intro.gif ├── logo.svg └── signatures.dot.svg ├── pkg ├── apis │ ├── config │ │ ├── doc.go │ │ ├── image_policies.go │ │ ├── image_policies_test.go │ │ ├── sigstore_keys.go │ │ ├── sigstore_keys_test.go │ │ ├── store.go │ │ ├── store_test.go │ │ └── testdata │ │ │ ├── config-image-policies.yaml │ │ │ ├── config-invalid-image-policy.yaml │ │ │ └── config-sigstore-keys.yaml │ ├── duck │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── podscalable_defaults.go │ │ │ ├── podscalable_defaults_test.go │ │ │ ├── podscalable_implements_test.go │ │ │ ├── podscalable_types.go │ │ │ ├── podscalable_types_test.go │ │ │ ├── podscalable_validation.go │ │ │ ├── podscalable_validation_test.go │ │ │ ├── register.go │ │ │ └── zz_generated.deepcopy.go │ ├── glob │ │ ├── glob.go │ │ └── glob_test.go │ ├── policy │ │ ├── common │ │ │ ├── validation.go │ │ │ └── validation_test.go │ │ ├── register.go │ │ ├── v1alpha1 │ │ │ ├── clusterimagepolicy_conversion.go │ │ │ ├── clusterimagepolicy_conversion_test.go │ │ │ ├── clusterimagepolicy_defaults.go │ │ │ ├── clusterimagepolicy_defaults_test.go │ │ │ ├── clusterimagepolicy_lifecycle.go │ │ │ ├── clusterimagepolicy_lifecycle_test.go │ │ │ ├── clusterimagepolicy_types.go │ │ │ ├── clusterimagepolicy_validation.go │ │ │ ├── clusterimagepolicy_validation_test.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── trustroot_defaults.go │ │ │ ├── trustroot_defaults_test.go │ │ │ ├── trustroot_lifecycle.go │ │ │ ├── trustroot_types.go │ │ │ ├── trustroot_validation.go │ │ │ ├── trustroot_validation_test.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── clusterimagepolicy_conversion.go │ │ │ ├── clusterimagepolicy_conversion_test.go │ │ │ ├── clusterimagepolicy_defaults.go │ │ │ ├── clusterimagepolicy_defaults_test.go │ │ │ ├── clusterimagepolicy_lifecycle.go │ │ │ ├── clusterimagepolicy_types.go │ │ │ ├── clusterimagepolicy_validation.go │ │ │ ├── clusterimagepolicy_validation_test.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ └── zz_generated.deepcopy.go │ └── signaturealgo │ │ ├── signature_digest.go │ │ └── signature_digest_test.go ├── client │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ ├── duck │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── duck_client.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ └── fake_duck_client.go │ │ │ │ └── generated_expansion.go │ │ │ └── policy │ │ │ ├── v1alpha1 │ │ │ ├── clusterimagepolicy.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_clusterimagepolicy.go │ │ │ │ ├── fake_policy_client.go │ │ │ │ └── fake_trustroot.go │ │ │ ├── generated_expansion.go │ │ │ ├── policy_client.go │ │ │ └── trustroot.go │ │ │ └── v1beta1 │ │ │ ├── clusterimagepolicy.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_clusterimagepolicy.go │ │ │ └── fake_policy_client.go │ │ │ ├── generated_expansion.go │ │ │ └── policy_client.go │ ├── informers │ │ └── externalversions │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ ├── internalinterfaces │ │ │ └── factory_interfaces.go │ │ │ └── policy │ │ │ ├── interface.go │ │ │ ├── v1alpha1 │ │ │ ├── clusterimagepolicy.go │ │ │ ├── interface.go │ │ │ └── trustroot.go │ │ │ └── v1beta1 │ │ │ ├── clusterimagepolicy.go │ │ │ └── interface.go │ ├── injection │ │ ├── client │ │ │ ├── client.go │ │ │ └── fake │ │ │ │ └── fake.go │ │ ├── ducks │ │ │ └── duck │ │ │ │ └── v1beta1 │ │ │ │ └── podscalable │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ └── podscalable.go │ │ ├── informers │ │ │ ├── factory │ │ │ │ ├── factory.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ │ ├── fake │ │ │ │ │ └── fake_filtered_factory.go │ │ │ │ │ └── filtered_factory.go │ │ │ └── policy │ │ │ │ ├── v1alpha1 │ │ │ │ ├── clusterimagepolicy │ │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── filtered │ │ │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ │ │ └── fake │ │ │ │ │ │ └── fake.go │ │ │ │ └── trustroot │ │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── trustroot.go │ │ │ │ │ └── trustroot.go │ │ │ │ └── v1beta1 │ │ │ │ └── clusterimagepolicy │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ └── reconciler │ │ │ └── policy │ │ │ ├── v1alpha1 │ │ │ ├── clusterimagepolicy │ │ │ │ ├── controller.go │ │ │ │ ├── reconciler.go │ │ │ │ └── state.go │ │ │ └── trustroot │ │ │ │ ├── controller.go │ │ │ │ ├── reconciler.go │ │ │ │ └── state.go │ │ │ └── v1beta1 │ │ │ └── clusterimagepolicy │ │ │ ├── controller.go │ │ │ ├── reconciler.go │ │ │ └── state.go │ └── listers │ │ └── policy │ │ ├── v1alpha1 │ │ ├── clusterimagepolicy.go │ │ ├── expansion_generated.go │ │ └── trustroot.go │ │ └── v1beta1 │ │ ├── clusterimagepolicy.go │ │ └── expansion_generated.go ├── config │ ├── store.go │ ├── store_test.go │ └── testdata │ │ ├── allow-all.yaml │ │ ├── allow-empty-authorities.yaml │ │ ├── deny-all-default.yaml │ │ ├── deny-all-explicit.yaml │ │ └── warn-all.yaml ├── policy │ ├── README.md │ ├── parse.go │ ├── parse_test.go │ ├── policy.go │ ├── policy_test.go │ ├── validate.go │ ├── validate_test.go │ ├── verifier.go │ └── verifier_test.go ├── reconciler │ ├── clusterimagepolicy │ │ ├── clusterimagepolicy.go │ │ ├── clusterimagepolicy_test.go │ │ ├── controller.go │ │ ├── controller_test.go │ │ └── resources │ │ │ └── configmap.go │ ├── testing │ │ └── v1alpha1 │ │ │ ├── clusterimagepolicy.go │ │ │ ├── factory.go │ │ │ ├── listers.go │ │ │ └── trustroot.go │ └── trustroot │ │ ├── controller.go │ │ ├── controller_test.go │ │ ├── resources │ │ └── configmap.go │ │ ├── testdata │ │ ├── ctfeLogID.txt │ │ ├── ctfePublicKey.pem │ │ ├── fulcioCert.pem │ │ ├── fulcioCertChain.pem │ │ ├── marshalledEntry.json │ │ ├── marshalledEntryFromMirrorFS.json │ │ ├── rekorLogID.txt │ │ ├── rekorPublicKey.pem │ │ ├── root.json │ │ ├── rootWithCustomTrustedRootJSON.json │ │ ├── rootWithTrustedRootJSON.json │ │ ├── testdata.go │ │ ├── tsaCertChain.pem │ │ ├── tufRepo.tar │ │ ├── tufRepoWithCustomTrustedRootJSON.tar │ │ └── tufRepoWithTrustedRootJSON.tar │ │ ├── trustroot.go │ │ └── trustroot_test.go ├── tuf │ ├── context.go │ ├── context_test.go │ ├── repo.go │ └── repo_test.go └── webhook │ ├── cache.go │ ├── clusterimagepolicy │ └── clusterimagepolicy_types.go │ ├── nocache.go │ ├── registryauth │ ├── azure │ │ └── acrhelper.go │ └── registryauth.go │ ├── testdata │ └── cert.pem │ ├── validation.go │ ├── validator.go │ ├── validator_result.go │ └── validator_test.go ├── release ├── README.md ├── ko-sign-release-images.sh ├── ldflags.sh └── release.mk ├── test ├── cert_utils.go ├── ci.mk ├── cmd │ └── getoidctoken │ │ └── main.go ├── config │ └── gettoken │ │ └── gettoken.yaml ├── e2e_test_cluster_image_policy.sh ├── e2e_test_cluster_image_policy_from_configmap_with_fetch_config_file.sh ├── e2e_test_cluster_image_policy_from_url.sh ├── e2e_test_cluster_image_policy_no_tuf.sh ├── e2e_test_cluster_image_policy_with_attestations.sh ├── e2e_test_cluster_image_policy_with_attestations_rego.sh ├── e2e_test_cluster_image_policy_with_fetch_config_file.sh ├── e2e_test_cluster_image_policy_with_include_objectmeta.sh ├── e2e_test_cluster_image_policy_with_include_spec.sh ├── e2e_test_cluster_image_policy_with_include_typemeta.sh ├── e2e_test_cluster_image_policy_with_source.sh ├── e2e_test_cluster_image_policy_with_trustroot_bring_own_keys.sh ├── e2e_test_cluster_image_policy_with_trustroot_remote.sh ├── e2e_test_cluster_image_policy_with_trustroot_repository.sh ├── e2e_test_cluster_image_policy_with_tsa.sh ├── e2e_test_cluster_image_policy_with_warn.sh ├── e2e_test_cluster_with_scalable.sh ├── e2e_test_policy_controller.sh ├── e2e_test_policy_crd.sh ├── e2e_test_trustroot_crd.sh ├── kustomize-no-tuf │ └── kustomization.yaml ├── kustomize │ └── kustomization.yaml └── testdata │ ├── attestations │ └── vuln-predicate.json │ ├── bom-go-mod.spdx │ ├── fancy_from.Dockerfile │ ├── policies │ ├── cue-fails.cue │ ├── cue-policy-config.cue │ ├── cue-vuln-fails.cue │ ├── cue-vuln-works.cue │ └── cue-works.cue │ ├── policy-controller │ ├── e2e │ │ ├── cip-config-file-policy-fails.yaml │ │ ├── cip-config-file-policy-from-configmap.yaml │ │ ├── cip-config-file-policy.yaml │ │ ├── cip-include-objectmeta-fails.yaml │ │ ├── cip-include-objectmeta.yaml │ │ ├── cip-include-spec-fails.yaml │ │ ├── cip-include-spec.yaml │ │ ├── cip-include-typemeta.yaml │ │ ├── cip-key-and-keyless-ignore-sct.yaml │ │ ├── cip-key-and-keyless.yaml │ │ ├── cip-key-hash-algorithm.yaml │ │ ├── cip-key-no-rekor.yaml │ │ ├── cip-key-secret.yaml │ │ ├── cip-key-tsa.yaml │ │ ├── cip-key-with-attestations-no-rekor.yaml │ │ ├── cip-key-with-attestations-rego.yaml │ │ ├── cip-key-with-attestations.yaml │ │ ├── cip-key.yaml │ │ ├── cip-keyless-warn.yaml │ │ ├── cip-keyless-with-attestations-rego.yaml │ │ ├── cip-keyless-with-attestations.yaml │ │ ├── cip-keyless-with-identities-mismatch.yaml │ │ ├── cip-keyless-with-identities.yaml │ │ ├── cip-keyless-with-source-prefix-tag.yaml │ │ ├── cip-keyless-with-source.yaml │ │ ├── cip-keyless-with-trustroot-remote-with-attestations.yaml │ │ ├── cip-keyless-with-trustroot-repository-with-attestations.yaml │ │ ├── cip-keyless-with-trustroot-with-attestations.yaml │ │ ├── cip-keyless.yaml │ │ ├── cip-match-resource-label.yaml │ │ ├── cip-policy-from-url.yaml │ │ ├── cip-requires-two-signatures-and-two-attestations-rego.yaml │ │ ├── cip-requires-two-signatures-and-two-attestations.yaml │ │ ├── cip-static-fail.yaml │ │ ├── cip-static-pass.yaml │ │ └── test-deployment.yaml │ ├── empty-authorities │ │ ├── authorities-absent.yaml │ │ └── authorities-present.yaml │ ├── invalid │ │ ├── empty-keyref-and-keylessref.yaml │ │ ├── empty-keyref.yaml │ │ ├── invalid-authority.yaml │ │ ├── invalid-glob.yaml │ │ ├── invalid-keyref-awskms.yaml │ │ ├── invalid-mode.yaml │ │ ├── invalid-pubkey.yaml │ │ ├── keylessref-with-empty-authorities.yaml │ │ ├── keylessref-with-malformed-issuer.yaml │ │ ├── keylessref-with-malformed-subject.yaml │ │ ├── keylessref-with-multiple-properties.yaml │ │ ├── keyref-with-multiple-properties.yaml │ │ ├── missing-identity.yaml │ │ ├── missing-issuer.yaml │ │ ├── missing-subject.yaml │ │ ├── v1beta1-empty-keyref-and-keylessref.yaml │ │ ├── v1beta1-empty-keyref.yaml │ │ ├── v1beta1-invalid-glob.yaml │ │ ├── v1beta1-invalid-hash-algo.yaml │ │ ├── v1beta1-invalid-keyref-awskms.yaml │ │ ├── v1beta1-invalid-match-resource.yaml │ │ ├── v1beta1-invalid-mode.yaml │ │ ├── v1beta1-invalid-pubkey.yaml │ │ ├── v1beta1-keylessref-with-empty-authorities.yaml │ │ ├── v1beta1-keylessref-with-malformed-issuer.yaml │ │ ├── v1beta1-keylessref-with-malformed-subject.yaml │ │ ├── v1beta1-keylessref-with-multiple-properties.yaml │ │ ├── v1beta1-keyref-with-multiple-properties.yaml │ │ ├── v1beta1-missing-identity.yaml │ │ ├── v1beta1-missing-issuer.yaml │ │ ├── v1beta1-missing-subject.yaml │ │ ├── v1beta1-valid-keyref-and-keylessref.yaml │ │ └── valid-keyref-and-keylessref.yaml │ ├── tester │ │ └── cip-public-keyless.yaml │ └── valid │ │ ├── v1beta1-valid-keylessref-awskms.yaml │ │ ├── v1beta1-valid-keyref-awskms.yaml │ │ ├── v1beta1-valid-policy-glob.yaml │ │ ├── v1beta1-valid-policy.yaml │ │ ├── valid-keyless-with-source.yaml │ │ ├── valid-keylessref-awskms.yaml │ │ ├── valid-keyref-awskms.yaml │ │ ├── valid-policy-glob.yaml │ │ ├── valid-policy-hash-algo-sha512.yaml │ │ ├── valid-policy-hash-algo.yaml │ │ ├── valid-policy-keyless-ignore-sct.yaml │ │ ├── valid-policy-match-resource-label.yaml │ │ ├── valid-policy-match-resource.yaml │ │ └── valid-policy.yaml │ ├── resources │ ├── job.yaml │ └── pod.yaml │ ├── signed_manifest.yaml │ ├── single_stage.Dockerfile │ ├── test.wasm │ ├── test_blob_cert.pem │ ├── test_blob_private_key │ ├── test_blob_public_key │ ├── trustroot │ ├── e2e │ │ ├── bring-your-own-keys.yaml │ │ ├── with-remote.yaml │ │ ├── with-repository.yaml │ │ └── with-tsa.yaml │ ├── golden │ │ ├── ctfe.pem │ │ ├── fulcio.crt.pem │ │ ├── rekor.pem │ │ └── tsa.crt.pem │ └── valid │ │ └── valid-sigstore-keys.yaml │ ├── unsigned_build_stage.Dockerfile │ ├── unsigned_manifest.yaml │ ├── with_arg.Dockerfile │ └── with_lowercase.Dockerfile └── third_party └── VENDOR-LICENSE ├── cloud.google.com └── go │ ├── auth │ ├── LICENSE │ └── oauth2adapt │ │ └── LICENSE │ ├── compute │ └── metadata │ │ └── LICENSE │ ├── iam │ └── LICENSE │ ├── kms │ └── LICENSE │ └── longrunning │ └── LICENSE ├── contrib.go.opencensus.io └── exporter │ ├── ocagent │ └── LICENSE │ └── prometheus │ └── LICENSE ├── cuelang.org └── go │ └── LICENSE ├── github.com ├── AliyunContainerService │ └── ack-ram-tool │ │ └── pkg │ │ └── credentials │ │ └── provider │ │ └── LICENSE ├── Azure │ ├── azure-sdk-for-go │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── sdk │ │ │ ├── azcore │ │ │ └── LICENSE.txt │ │ │ ├── azidentity │ │ │ └── LICENSE.txt │ │ │ ├── internal │ │ │ └── LICENSE.txt │ │ │ └── security │ │ │ └── keyvault │ │ │ ├── azkeys │ │ │ └── LICENSE.txt │ │ │ └── internal │ │ │ └── LICENSE.txt │ └── go-autorest │ │ ├── autorest │ │ ├── LICENSE │ │ ├── adal │ │ │ └── LICENSE │ │ ├── azure │ │ │ ├── auth │ │ │ │ └── LICENSE │ │ │ └── cli │ │ │ │ └── LICENSE │ │ └── date │ │ │ └── LICENSE │ │ ├── logger │ │ └── LICENSE │ │ └── tracing │ │ └── LICENSE ├── AzureAD │ └── microsoft-authentication-library-for-go │ │ └── apps │ │ └── LICENSE ├── LICENSE ├── ProtonMail │ └── go-crypto │ │ └── LICENSE ├── agnivade │ └── levenshtein │ │ └── License.txt ├── alibabacloud-go │ ├── alibabacloud-gateway-spi │ │ └── client │ │ │ └── LICENSE │ ├── cr-20181201 │ │ └── client │ │ │ └── LICENSE │ ├── darabonba-openapi │ │ └── client │ │ │ └── LICENSE │ ├── debug │ │ └── debug │ │ │ └── LICENSE │ ├── endpoint-util │ │ └── service │ │ │ └── LICENSE │ ├── openapi-util │ │ └── service │ │ │ └── LICENSE │ ├── tea-utils │ │ └── service │ │ │ └── LICENSE │ ├── tea-xml │ │ └── service │ │ │ └── LICENSE │ └── tea │ │ └── LICENSE ├── aliyun │ └── credentials-go │ │ └── credentials │ │ └── LICENSE ├── asaskevich │ └── govalidator │ │ └── LICENSE ├── aws │ ├── aws-sdk-go-v2 │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── config │ │ │ └── LICENSE.txt │ │ ├── credentials │ │ │ └── LICENSE.txt │ │ ├── feature │ │ │ └── ec2 │ │ │ │ └── imds │ │ │ │ └── LICENSE.txt │ │ ├── internal │ │ │ ├── configsources │ │ │ │ └── LICENSE.txt │ │ │ ├── endpoints │ │ │ │ └── v2 │ │ │ │ │ └── LICENSE.txt │ │ │ ├── ini │ │ │ │ └── LICENSE.txt │ │ │ └── sync │ │ │ │ └── singleflight │ │ │ │ └── LICENSE │ │ └── service │ │ │ ├── ecr │ │ │ └── LICENSE.txt │ │ │ ├── ecrpublic │ │ │ └── LICENSE.txt │ │ │ ├── internal │ │ │ ├── accept-encoding │ │ │ │ └── LICENSE.txt │ │ │ └── presigned-url │ │ │ │ └── LICENSE.txt │ │ │ ├── kms │ │ │ └── LICENSE.txt │ │ │ ├── sso │ │ │ └── LICENSE.txt │ │ │ ├── ssooidc │ │ │ └── LICENSE.txt │ │ │ └── sts │ │ │ └── LICENSE.txt │ ├── aws-sdk-go │ │ └── aws │ │ │ └── arn │ │ │ ├── LICENSE.txt │ │ │ └── NOTICE.txt │ └── smithy-go │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── internal │ │ └── sync │ │ └── singleflight │ │ └── LICENSE ├── awslabs │ └── amazon-ecr-credential-helper │ │ └── ecr-login │ │ └── LICENSE ├── beorn7 │ └── perks │ │ └── quantile │ │ └── LICENSE ├── blang │ └── semver │ │ ├── LICENSE │ │ └── v4 │ │ └── LICENSE ├── blendle │ └── zapdriver │ │ └── LICENSE ├── cenkalti │ └── backoff │ │ └── v4 │ │ └── LICENSE ├── census-instrumentation │ └── opencensus-proto │ │ └── gen-go │ │ └── LICENSE ├── cespare │ └── xxhash │ │ └── v2 │ │ └── LICENSE.txt ├── chrismellard │ └── docker-credential-acr-env │ │ └── pkg │ │ └── LICENSE ├── clbanning │ └── mxj │ │ └── v2 │ │ └── LICENSE ├── cloudflare │ └── circl │ │ └── LICENSE ├── cockroachdb │ └── apd │ │ └── v3 │ │ └── LICENSE ├── common-nighthawk │ └── go-figure │ │ └── LICENSE ├── containerd │ └── stargz-snapshotter │ │ └── estargz │ │ └── LICENSE ├── cyberphone │ └── json-canonicalization │ │ └── go │ │ └── src │ │ └── webpki.org │ │ └── jsoncanonicalizer │ │ └── LICENSE ├── davecgh │ └── go-spew │ │ └── spew │ │ └── LICENSE ├── digitorus │ ├── pkcs7 │ │ └── LICENSE │ └── timestamp │ │ └── LICENSE ├── dimchansky │ └── utfbom │ │ └── LICENSE ├── distribution │ └── reference │ │ └── LICENSE ├── docker │ ├── cli │ │ └── cli │ │ │ └── config │ │ │ ├── LICENSE │ │ │ └── NOTICE │ ├── distribution │ │ └── registry │ │ │ └── client │ │ │ └── auth │ │ │ └── challenge │ │ │ └── LICENSE │ ├── docker-credential-helpers │ │ └── LICENSE │ ├── docker │ │ ├── LICENSE │ │ └── NOTICE │ ├── go-connections │ │ └── LICENSE │ └── go-units │ │ └── LICENSE ├── dustin │ └── go-humanize │ │ └── LICENSE ├── emicklei │ └── go-restful │ │ └── v3 │ │ └── LICENSE ├── evanphx │ └── json-patch │ │ └── v5 │ │ └── LICENSE ├── felixge │ └── httpsnoop │ │ └── LICENSE.txt ├── fsnotify │ └── fsnotify │ │ └── LICENSE ├── fxamacker │ └── cbor │ │ └── v2 │ │ └── LICENSE ├── go-chi │ └── chi │ │ └── LICENSE ├── go-ini │ └── ini │ │ └── LICENSE ├── go-jose │ └── go-jose │ │ └── v4 │ │ ├── LICENSE │ │ └── json │ │ └── LICENSE ├── go-kit │ └── log │ │ └── LICENSE ├── go-logfmt │ └── logfmt │ │ └── LICENSE ├── go-logr │ ├── logr │ │ └── LICENSE │ └── stdr │ │ └── LICENSE ├── go-openapi │ ├── analysis │ │ └── LICENSE │ ├── errors │ │ └── LICENSE │ ├── jsonpointer │ │ └── LICENSE │ ├── jsonreference │ │ └── LICENSE │ ├── loads │ │ └── LICENSE │ ├── runtime │ │ ├── LICENSE │ │ └── middleware │ │ │ └── denco │ │ │ └── LICENSE │ ├── spec │ │ └── LICENSE │ ├── strfmt │ │ └── LICENSE │ ├── swag │ │ └── LICENSE │ └── validate │ │ └── LICENSE ├── go-viper │ └── mapstructure │ │ └── v2 │ │ └── LICENSE ├── gobuffalo │ └── flect │ │ └── LICENSE ├── gobwas │ └── glob │ │ └── LICENSE ├── gogo │ └── protobuf │ │ └── LICENSE ├── golang-jwt │ └── jwt │ │ ├── v4 │ │ └── LICENSE │ │ └── v5 │ │ └── LICENSE ├── golang │ ├── groupcache │ │ └── lru │ │ │ └── LICENSE │ ├── protobuf │ │ └── LICENSE │ └── snappy │ │ └── LICENSE ├── google │ ├── certificate-transparency-go │ │ └── LICENSE │ ├── gnostic-models │ │ └── LICENSE │ ├── go-cmp │ │ └── cmp │ │ │ └── LICENSE │ ├── go-containerregistry │ │ ├── LICENSE │ │ └── pkg │ │ │ └── authn │ │ │ ├── k8schain │ │ │ └── LICENSE │ │ │ └── kubernetes │ │ │ └── LICENSE │ ├── go-github │ │ └── v55 │ │ │ └── github │ │ │ └── LICENSE │ ├── go-querystring │ │ └── query │ │ │ └── LICENSE │ ├── gofuzz │ │ └── LICENSE │ ├── s2a-go │ │ └── LICENSE.md │ └── uuid │ │ └── LICENSE ├── googleapis │ ├── enterprise-certificate-proxy │ │ └── client │ │ │ └── LICENSE │ └── gax-go │ │ └── v2 │ │ └── LICENSE ├── gorilla │ └── mux │ │ └── LICENSE ├── grpc-ecosystem │ └── grpc-gateway │ │ └── v2 │ │ └── LICENSE ├── hashicorp │ ├── errwrap │ │ ├── LICENSE │ │ ├── README.md │ │ └── errwrap.go │ ├── go-cleanhttp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cleanhttp.go │ │ ├── doc.go │ │ └── handlers.go │ ├── go-multierror │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── append.go │ │ ├── flatten.go │ │ ├── format.go │ │ ├── group.go │ │ ├── multierror.go │ │ ├── prefix.go │ │ └── sort.go │ ├── go-retryablehttp │ │ ├── .gitignore │ │ ├── .go-version │ │ ├── CHANGELOG.md │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cert_error_go119.go │ │ ├── cert_error_go120.go │ │ ├── client.go │ │ └── roundtripper.go │ ├── go-rootcerts │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── doc.go │ │ ├── rootcerts.go │ │ ├── rootcerts_base.go │ │ └── rootcerts_darwin.go │ ├── go-secure-stdlib │ │ ├── parseutil │ │ │ ├── LICENSE │ │ │ ├── normalize.go │ │ │ ├── parsepath.go │ │ │ └── parseutil.go │ │ └── strutil │ │ │ ├── LICENSE │ │ │ └── strutil.go │ ├── go-sockaddr │ │ ├── .gitignore │ │ ├── GNUmakefile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── ifaddr.go │ │ ├── ifaddrs.go │ │ ├── ifattr.go │ │ ├── ipaddr.go │ │ ├── ipaddrs.go │ │ ├── ipv4addr.go │ │ ├── ipv6addr.go │ │ ├── rfc.go │ │ ├── route_info.go │ │ ├── route_info_aix.go │ │ ├── route_info_android.go │ │ ├── route_info_bsd.go │ │ ├── route_info_default.go │ │ ├── route_info_linux.go │ │ ├── route_info_solaris.go │ │ ├── route_info_test_windows.go │ │ ├── route_info_windows.go │ │ ├── sockaddr.go │ │ ├── sockaddrs.go │ │ └── unixsock.go │ ├── golang-lru │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── 2q.go │ │ ├── LICENSE │ │ ├── README.md │ │ ├── arc.go │ │ ├── doc.go │ │ ├── lru.go │ │ ├── simplelru │ │ │ ├── lru.go │ │ │ └── lru_interface.go │ │ └── testing.go │ ├── hcl │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── decoder.go │ │ ├── hcl.go │ │ ├── hcl │ │ │ ├── ast │ │ │ │ ├── ast.go │ │ │ │ └── walk.go │ │ │ ├── parser │ │ │ │ ├── error.go │ │ │ │ └── parser.go │ │ │ ├── scanner │ │ │ │ └── scanner.go │ │ │ ├── strconv │ │ │ │ └── quote.go │ │ │ └── token │ │ │ │ ├── position.go │ │ │ │ └── token.go │ │ ├── json │ │ │ ├── parser │ │ │ │ ├── flatten.go │ │ │ │ └── parser.go │ │ │ ├── scanner │ │ │ │ └── scanner.go │ │ │ └── token │ │ │ │ ├── position.go │ │ │ │ └── token.go │ │ ├── lex.go │ │ └── parse.go │ └── vault │ │ └── api │ │ ├── .copywrite.hcl │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auth.go │ │ ├── auth_token.go │ │ ├── client.go │ │ ├── help.go │ │ ├── kv.go │ │ ├── kv_v1.go │ │ ├── kv_v2.go │ │ ├── lifetime_watcher.go │ │ ├── logical.go │ │ ├── output_policy.go │ │ ├── output_string.go │ │ ├── plugin_helpers.go │ │ ├── plugin_runtime_types.go │ │ ├── plugin_types.go │ │ ├── pluginruntimetype_enumer.go │ │ ├── renewbehavior_enumer.go │ │ ├── replication_status.go │ │ ├── request.go │ │ ├── response.go │ │ ├── secret.go │ │ ├── ssh.go │ │ ├── ssh_agent.go │ │ ├── sudo_paths.go │ │ ├── sys.go │ │ ├── sys_audit.go │ │ ├── sys_auth.go │ │ ├── sys_capabilities.go │ │ ├── sys_config_cors.go │ │ ├── sys_generate_root.go │ │ ├── sys_hastatus.go │ │ ├── sys_health.go │ │ ├── sys_init.go │ │ ├── sys_leader.go │ │ ├── sys_leases.go │ │ ├── sys_mfa.go │ │ ├── sys_monitor.go │ │ ├── sys_mounts.go │ │ ├── sys_plugins.go │ │ ├── sys_plugins_runtimes.go │ │ ├── sys_policy.go │ │ ├── sys_raft.go │ │ ├── sys_rekey.go │ │ ├── sys_rotate.go │ │ ├── sys_seal.go │ │ ├── sys_stepdown.go │ │ └── sys_ui_custom_message.go ├── in-toto │ ├── attestation │ │ └── go │ │ │ └── v1 │ │ │ └── LICENSE │ └── in-toto-golang │ │ └── in_toto │ │ └── LICENSE ├── jedisct1 │ └── go-minisign │ │ └── LICENSE ├── jellydator │ └── ttlcache │ │ └── v3 │ │ └── LICENSE ├── josharian │ └── intern │ │ └── license.md ├── json-iterator │ └── go │ │ └── LICENSE ├── kelseyhightower │ └── envconfig │ │ └── LICENSE ├── klauspost │ └── compress │ │ ├── LICENSE │ │ ├── internal │ │ └── snapref │ │ │ └── LICENSE │ │ └── zstd │ │ └── internal │ │ └── xxhash │ │ └── LICENSE.txt ├── kylelemons │ └── godebug │ │ └── LICENSE ├── letsencrypt │ └── boulder │ │ ├── LICENSE.txt │ │ ├── core │ │ ├── challenges.go │ │ ├── interfaces.go │ │ ├── objects.go │ │ └── util.go │ │ ├── goodkey │ │ ├── blocked.go │ │ ├── good_key.go │ │ └── weak.go │ │ ├── identifier │ │ └── identifier.go │ │ ├── probs │ │ └── probs.go │ │ ├── revocation │ │ └── reasons.go │ │ └── strictyaml │ │ └── yaml.go ├── mailru │ └── easyjson │ │ └── LICENSE ├── mitchellh │ ├── go-homedir │ │ └── LICENSE │ └── mapstructure │ │ └── LICENSE ├── moby │ └── docker-image-spec │ │ └── specs-go │ │ └── v1 │ │ └── LICENSE ├── modern-go │ ├── concurrent │ │ └── LICENSE │ └── reflect2 │ │ └── LICENSE ├── mozillazg │ └── docker-credential-acr-helper │ │ └── pkg │ │ └── LICENSE ├── munnerz │ └── goautoneg │ │ └── LICENSE ├── nozzle │ └── throttler │ │ └── LICENSE ├── oklog │ └── ulid │ │ └── LICENSE ├── open-policy-agent │ └── opa │ │ ├── LICENSE │ │ └── internal │ │ ├── edittree │ │ └── bitvector │ │ │ └── license.txt │ │ ├── gojsonschema │ │ └── LICENSE-APACHE-2.0.txt │ │ ├── gqlparser │ │ └── LICENSE │ │ ├── jwx │ │ └── LICENSE │ │ └── semver │ │ └── LICENSE ├── opencontainers │ ├── go-digest │ │ └── LICENSE │ └── image-spec │ │ └── specs-go │ │ └── LICENSE ├── opentracing │ └── opentracing-go │ │ └── LICENSE ├── pelletier │ └── go-toml │ │ └── v2 │ │ └── LICENSE ├── pkg │ ├── browser │ │ └── LICENSE │ └── errors │ │ └── LICENSE ├── prometheus │ ├── client_golang │ │ ├── internal │ │ │ └── github.com │ │ │ │ └── golang │ │ │ │ └── gddo │ │ │ │ └── httputil │ │ │ │ └── LICENSE │ │ └── prometheus │ │ │ ├── LICENSE │ │ │ └── NOTICE │ ├── client_model │ │ └── go │ │ │ ├── LICENSE │ │ │ └── NOTICE │ ├── common │ │ ├── LICENSE │ │ └── NOTICE │ ├── procfs │ │ ├── LICENSE │ │ └── NOTICE │ └── statsd_exporter │ │ └── pkg │ │ ├── LICENSE │ │ └── NOTICE ├── rcrowley │ └── go-metrics │ │ └── LICENSE ├── ryanuber │ └── go-glob │ │ └── LICENSE ├── sagikazarmark │ └── locafero │ │ └── LICENSE ├── sassoftware │ └── relic │ │ └── lib │ │ └── LICENSE ├── secure-systems-lab │ └── go-securesystemslib │ │ └── LICENSE ├── shibumi │ └── go-pathspec │ │ └── LICENSE ├── sigstore │ ├── cosign │ │ └── v2 │ │ │ └── LICENSE │ ├── protobuf-specs │ │ └── gen │ │ │ └── pb-go │ │ │ └── LICENSE │ ├── rekor │ │ └── pkg │ │ │ └── LICENSE │ ├── scaffolding │ │ └── pkg │ │ │ └── repo │ │ │ └── LICENSE │ ├── sigstore-go │ │ └── pkg │ │ │ └── LICENSE │ ├── sigstore │ │ └── pkg │ │ │ ├── LICENSE │ │ │ └── signature │ │ │ └── kms │ │ │ ├── aws │ │ │ └── LICENSE │ │ │ ├── azure │ │ │ └── LICENSE │ │ │ ├── gcp │ │ │ └── LICENSE │ │ │ └── hashivault │ │ │ └── LICENSE │ └── timestamp-authority │ │ └── pkg │ │ └── verification │ │ └── LICENSE ├── sirupsen │ └── logrus │ │ └── LICENSE ├── sourcegraph │ └── conc │ │ └── LICENSE ├── spf13 │ ├── afero │ │ └── LICENSE.txt │ ├── cast │ │ └── LICENSE │ ├── cobra │ │ └── LICENSE.txt │ ├── pflag │ │ └── LICENSE │ └── viper │ │ └── LICENSE ├── subosito │ └── gotenv │ │ └── LICENSE ├── syndtr │ └── goleveldb │ │ └── leveldb │ │ └── LICENSE ├── tchap │ └── go-patricia │ │ └── v2 │ │ └── patricia │ │ └── LICENSE ├── theupdateframework │ └── go-tuf │ │ ├── LICENSE │ │ └── v2 │ │ └── metadata │ │ ├── LICENSE │ │ └── NOTICE ├── titanous │ └── rocacheck │ │ └── LICENSE ├── tjfoc │ └── gmsm │ │ └── sm3 │ │ └── LICENSE ├── transparency-dev │ └── merkle │ │ └── LICENSE ├── vbatts │ └── tar-split │ │ └── archive │ │ └── tar │ │ └── LICENSE ├── x448 │ └── float16 │ │ └── LICENSE ├── xeipuuv │ ├── gojsonpointer │ │ └── LICENSE-APACHE-2.0.txt │ └── gojsonreference │ │ └── LICENSE-APACHE-2.0.txt └── yashtewari │ └── glob-intersection │ └── LICENSE ├── gitlab.com └── gitlab-org │ └── api │ └── client-go │ └── LICENSE ├── go.mongodb.org └── mongo-driver │ └── LICENSE ├── go.opencensus.io └── LICENSE ├── go.opentelemetry.io ├── auto │ └── sdk │ │ └── LICENSE ├── contrib │ └── instrumentation │ │ ├── google.golang.org │ │ └── grpc │ │ │ └── otelgrpc │ │ │ └── LICENSE │ │ └── net │ │ └── http │ │ └── otelhttp │ │ └── LICENSE └── otel │ ├── LICENSE │ ├── metric │ └── LICENSE │ ├── sdk │ └── LICENSE │ └── trace │ └── LICENSE ├── go.uber.org ├── atomic │ └── LICENSE.txt ├── automaxprocs │ └── LICENSE ├── multierr │ └── LICENSE.txt └── zap │ └── LICENSE ├── golang.org └── x │ ├── crypto │ └── LICENSE │ ├── exp │ └── LICENSE │ ├── mod │ └── LICENSE │ ├── net │ └── LICENSE │ ├── oauth2 │ └── LICENSE │ ├── sync │ └── LICENSE │ ├── sys │ └── LICENSE │ ├── term │ └── LICENSE │ ├── text │ └── LICENSE │ └── time │ └── rate │ └── LICENSE ├── gomodules.xyz └── jsonpatch │ └── v2 │ └── LICENSE ├── google.golang.org ├── api │ ├── LICENSE │ └── internal │ │ └── third_party │ │ └── uritemplates │ │ └── LICENSE ├── genproto │ └── googleapis │ │ ├── LICENSE │ │ ├── api │ │ └── LICENSE │ │ └── rpc │ │ └── LICENSE ├── grpc │ ├── LICENSE │ └── NOTICE.txt └── protobuf │ └── LICENSE ├── gopkg.in ├── evanphx │ └── json-patch.v4 │ │ └── LICENSE ├── inf.v0 │ └── LICENSE ├── ini.v1 │ └── LICENSE ├── yaml.v2 │ ├── LICENSE │ └── NOTICE └── yaml.v3 │ ├── LICENSE │ └── NOTICE ├── k8s.io ├── api │ └── LICENSE ├── apiextensions-apiserver │ └── pkg │ │ └── LICENSE ├── apimachinery │ ├── pkg │ │ └── LICENSE │ └── third_party │ │ └── forked │ │ └── golang │ │ └── LICENSE ├── client-go │ └── LICENSE ├── klog │ └── v2 │ │ └── LICENSE ├── kube-openapi │ └── pkg │ │ ├── LICENSE │ │ ├── internal │ │ └── third_party │ │ │ └── go-json-experiment │ │ │ └── json │ │ │ └── LICENSE │ │ └── validation │ │ └── spec │ │ └── LICENSE └── utils │ ├── LICENSE │ └── internal │ └── third_party │ └── forked │ └── golang │ └── LICENSE ├── knative.dev ├── hack │ └── schema │ │ └── LICENSE └── pkg │ └── LICENSE └── sigs.k8s.io ├── json └── LICENSE ├── release-utils └── version │ └── LICENSE ├── structured-merge-diff └── v4 │ └── LICENSE └── yaml ├── LICENSE └── goyaml.v2 ├── LICENSE └── NOTICE /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/depsreview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/depsreview.yml -------------------------------------------------------------------------------- /.github/workflows/donotsubmit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/donotsubmit.yaml -------------------------------------------------------------------------------- /.github/workflows/kind-cluster-image-policy-no-tuf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/kind-cluster-image-policy-no-tuf.yaml -------------------------------------------------------------------------------- /.github/workflows/kind-cluster-image-policy-trustroot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/kind-cluster-image-policy-trustroot.yaml -------------------------------------------------------------------------------- /.github/workflows/kind-cluster-image-policy-tsa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/kind-cluster-image-policy-tsa.yaml -------------------------------------------------------------------------------- /.github/workflows/kind-cluster-image-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/kind-cluster-image-policy.yaml -------------------------------------------------------------------------------- /.github/workflows/kind-e2e-cosigned.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/kind-e2e-cosigned.yaml -------------------------------------------------------------------------------- /.github/workflows/kind-e2e-trustroot-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/kind-e2e-trustroot-crd.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/milestone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/milestone.yaml -------------------------------------------------------------------------------- /.github/workflows/policy-tester-examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/policy-tester-examples.yml -------------------------------------------------------------------------------- /.github/workflows/release-snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/release-snapshot.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/scorecard_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/scorecard_action.yml -------------------------------------------------------------------------------- /.github/workflows/style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/style.yaml -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.github/workflows/verify-codegen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/verify-codegen.yaml -------------------------------------------------------------------------------- /.github/workflows/verify-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/verify-docs.yaml -------------------------------------------------------------------------------- /.github/workflows/whitespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.github/workflows/whitespace.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /.ko.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/.ko.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/COPYRIGHT.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/README.md -------------------------------------------------------------------------------- /cmd/api-docs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/cmd/api-docs/main.go -------------------------------------------------------------------------------- /cmd/local-dev/clean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/cmd/local-dev/clean.go -------------------------------------------------------------------------------- /cmd/local-dev/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/cmd/local-dev/main.go -------------------------------------------------------------------------------- /cmd/local-dev/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/cmd/local-dev/root.go -------------------------------------------------------------------------------- /cmd/local-dev/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/cmd/local-dev/setup.go -------------------------------------------------------------------------------- /cmd/sample/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/cmd/sample/main.go -------------------------------------------------------------------------------- /cmd/schema/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/cmd/schema/main.go -------------------------------------------------------------------------------- /cmd/tester/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/cmd/tester/main.go -------------------------------------------------------------------------------- /cmd/tester/trustroot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/cmd/tester/trustroot.go -------------------------------------------------------------------------------- /cmd/webhook/depcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/cmd/webhook/depcheck_test.go -------------------------------------------------------------------------------- /cmd/webhook/kodata/HEAD: -------------------------------------------------------------------------------- 1 | ../../../.git/HEAD -------------------------------------------------------------------------------- /cmd/webhook/kodata/LICENSE: -------------------------------------------------------------------------------- 1 | ../../../LICENSE -------------------------------------------------------------------------------- /cmd/webhook/kodata/VENDOR-LICENSE: -------------------------------------------------------------------------------- 1 | ../../../third_party/VENDOR-LICENSE -------------------------------------------------------------------------------- /cmd/webhook/kodata/refs: -------------------------------------------------------------------------------- 1 | ../../../.git/refs -------------------------------------------------------------------------------- /cmd/webhook/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/cmd/webhook/main.go -------------------------------------------------------------------------------- /config/100-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/100-namespace.yaml -------------------------------------------------------------------------------- /config/200-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/200-clusterrole.yaml -------------------------------------------------------------------------------- /config/200-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/200-role.yaml -------------------------------------------------------------------------------- /config/200-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/200-serviceaccount.yaml -------------------------------------------------------------------------------- /config/201-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/201-clusterrolebinding.yaml -------------------------------------------------------------------------------- /config/201-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/201-rolebinding.yaml -------------------------------------------------------------------------------- /config/300-clusterimagepolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/300-clusterimagepolicy.yaml -------------------------------------------------------------------------------- /config/300-trustroot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/300-trustroot.yaml -------------------------------------------------------------------------------- /config/400-webhook-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/400-webhook-service.yaml -------------------------------------------------------------------------------- /config/500-webhook-configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/500-webhook-configuration.yaml -------------------------------------------------------------------------------- /config/501-policy-webhook-configurations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/501-policy-webhook-configurations.yaml -------------------------------------------------------------------------------- /config/config-image-policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/config-image-policies.yaml -------------------------------------------------------------------------------- /config/config-leader-election.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/config-leader-election.yaml -------------------------------------------------------------------------------- /config/config-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/config-logging.yaml -------------------------------------------------------------------------------- /config/config-observability.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/config-observability.yaml -------------------------------------------------------------------------------- /config/config-policy-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/config-policy-controller.yaml -------------------------------------------------------------------------------- /config/config-sigstore-keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/config-sigstore-keys.yaml -------------------------------------------------------------------------------- /config/dummy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/dummy.go -------------------------------------------------------------------------------- /config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/kustomization.yaml -------------------------------------------------------------------------------- /config/webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/config/webhook.yaml -------------------------------------------------------------------------------- /docs/api-types/index-v1alpha1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/docs/api-types/index-v1alpha1.md -------------------------------------------------------------------------------- /docs/api-types/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/docs/api-types/index.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/keys/cosign.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/examples/keys/cosign.key -------------------------------------------------------------------------------- /examples/keys/cosign.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/examples/keys/cosign.pub -------------------------------------------------------------------------------- /examples/policies/allow-only-pods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/examples/policies/allow-only-pods.yaml -------------------------------------------------------------------------------- /examples/policies/custom-key-attestation-sbom-spdxjson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/examples/policies/custom-key-attestation-sbom-spdxjson.yaml -------------------------------------------------------------------------------- /examples/policies/keyless-attestation-sbom-spdxjson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/examples/policies/keyless-attestation-sbom-spdxjson.yaml -------------------------------------------------------------------------------- /examples/policies/release-signed-by-github-actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/examples/policies/release-signed-by-github-actions.yaml -------------------------------------------------------------------------------- /examples/policies/signed-by-aws-kms-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/examples/policies/signed-by-aws-kms-key.yaml -------------------------------------------------------------------------------- /examples/policies/signed-by-gcp-kms-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/examples/policies/signed-by-gcp-kms-key.yaml -------------------------------------------------------------------------------- /examples/policies/signed-by-github-actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/examples/policies/signed-by-github-actions.yaml -------------------------------------------------------------------------------- /examples/sboms/example.spdx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/examples/sboms/example.spdx.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/hack/boilerplate/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/gentestdata/gentestdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/hack/gentestdata/gentestdata.go -------------------------------------------------------------------------------- /hack/github-oidc-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/hack/github-oidc-setup.sh -------------------------------------------------------------------------------- /hack/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/hack/tools.go -------------------------------------------------------------------------------- /hack/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/hack/update-codegen.sh -------------------------------------------------------------------------------- /hack/update-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/hack/update-deps.sh -------------------------------------------------------------------------------- /images/dot/signatures.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/images/dot/signatures.dot -------------------------------------------------------------------------------- /images/intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/images/intro.gif -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/images/logo.svg -------------------------------------------------------------------------------- /images/signatures.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/images/signatures.dot.svg -------------------------------------------------------------------------------- /pkg/apis/config/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/config/doc.go -------------------------------------------------------------------------------- /pkg/apis/config/image_policies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/config/image_policies.go -------------------------------------------------------------------------------- /pkg/apis/config/image_policies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/config/image_policies_test.go -------------------------------------------------------------------------------- /pkg/apis/config/sigstore_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/config/sigstore_keys.go -------------------------------------------------------------------------------- /pkg/apis/config/sigstore_keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/config/sigstore_keys_test.go -------------------------------------------------------------------------------- /pkg/apis/config/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/config/store.go -------------------------------------------------------------------------------- /pkg/apis/config/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/config/store_test.go -------------------------------------------------------------------------------- /pkg/apis/config/testdata/config-image-policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/config/testdata/config-image-policies.yaml -------------------------------------------------------------------------------- /pkg/apis/config/testdata/config-invalid-image-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/config/testdata/config-invalid-image-policy.yaml -------------------------------------------------------------------------------- /pkg/apis/config/testdata/config-sigstore-keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/config/testdata/config-sigstore-keys.yaml -------------------------------------------------------------------------------- /pkg/apis/duck/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/duck/v1beta1/doc.go -------------------------------------------------------------------------------- /pkg/apis/duck/v1beta1/podscalable_defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/duck/v1beta1/podscalable_defaults.go -------------------------------------------------------------------------------- /pkg/apis/duck/v1beta1/podscalable_defaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/duck/v1beta1/podscalable_defaults_test.go -------------------------------------------------------------------------------- /pkg/apis/duck/v1beta1/podscalable_implements_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/duck/v1beta1/podscalable_implements_test.go -------------------------------------------------------------------------------- /pkg/apis/duck/v1beta1/podscalable_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/duck/v1beta1/podscalable_types.go -------------------------------------------------------------------------------- /pkg/apis/duck/v1beta1/podscalable_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/duck/v1beta1/podscalable_types_test.go -------------------------------------------------------------------------------- /pkg/apis/duck/v1beta1/podscalable_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/duck/v1beta1/podscalable_validation.go -------------------------------------------------------------------------------- /pkg/apis/duck/v1beta1/podscalable_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/duck/v1beta1/podscalable_validation_test.go -------------------------------------------------------------------------------- /pkg/apis/duck/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/duck/v1beta1/register.go -------------------------------------------------------------------------------- /pkg/apis/duck/v1beta1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/duck/v1beta1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/glob/glob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/glob/glob.go -------------------------------------------------------------------------------- /pkg/apis/glob/glob_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/glob/glob_test.go -------------------------------------------------------------------------------- /pkg/apis/policy/common/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/common/validation.go -------------------------------------------------------------------------------- /pkg/apis/policy/common/validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/common/validation_test.go -------------------------------------------------------------------------------- /pkg/apis/policy/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/register.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1alpha1/clusterimagepolicy_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1alpha1/clusterimagepolicy_conversion.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1alpha1/clusterimagepolicy_conversion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1alpha1/clusterimagepolicy_conversion_test.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1alpha1/clusterimagepolicy_defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1alpha1/clusterimagepolicy_defaults.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1alpha1/clusterimagepolicy_defaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1alpha1/clusterimagepolicy_defaults_test.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1alpha1/clusterimagepolicy_lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1alpha1/clusterimagepolicy_lifecycle.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1alpha1/clusterimagepolicy_lifecycle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1alpha1/clusterimagepolicy_lifecycle_test.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1alpha1/clusterimagepolicy_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1alpha1/clusterimagepolicy_types.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1alpha1/clusterimagepolicy_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1alpha1/clusterimagepolicy_validation.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1alpha1/clusterimagepolicy_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1alpha1/clusterimagepolicy_validation_test.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1alpha1/register.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1alpha1/trustroot_defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1alpha1/trustroot_defaults.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1alpha1/trustroot_defaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1alpha1/trustroot_defaults_test.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1alpha1/trustroot_lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1alpha1/trustroot_lifecycle.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1alpha1/trustroot_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1alpha1/trustroot_types.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1alpha1/trustroot_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1alpha1/trustroot_validation.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1alpha1/trustroot_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1alpha1/trustroot_validation_test.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1beta1/clusterimagepolicy_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1beta1/clusterimagepolicy_conversion.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1beta1/clusterimagepolicy_conversion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1beta1/clusterimagepolicy_conversion_test.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1beta1/clusterimagepolicy_defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1beta1/clusterimagepolicy_defaults.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1beta1/clusterimagepolicy_defaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1beta1/clusterimagepolicy_defaults_test.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1beta1/clusterimagepolicy_lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1beta1/clusterimagepolicy_lifecycle.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1beta1/clusterimagepolicy_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1beta1/clusterimagepolicy_types.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1beta1/clusterimagepolicy_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1beta1/clusterimagepolicy_validation.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1beta1/clusterimagepolicy_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1beta1/clusterimagepolicy_validation_test.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1beta1/doc.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1beta1/register.go -------------------------------------------------------------------------------- /pkg/apis/policy/v1beta1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/policy/v1beta1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/signaturealgo/signature_digest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/signaturealgo/signature_digest.go -------------------------------------------------------------------------------- /pkg/apis/signaturealgo/signature_digest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/apis/signaturealgo/signature_digest_test.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/clientset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/clientset.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/clientset_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/fake/clientset_generated.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/fake/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/fake/register.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/scheme/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/scheme/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/scheme/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/scheme/register.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/duck/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/typed/duck/v1beta1/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/duck/v1beta1/duck_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/typed/duck/v1beta1/duck_client.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/duck/v1beta1/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/typed/duck/v1beta1/fake/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/duck/v1beta1/fake/fake_duck_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/typed/duck/v1beta1/fake/fake_duck_client.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/duck/v1beta1/generated_expansion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/typed/duck/v1beta1/generated_expansion.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/policy/v1alpha1/clusterimagepolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/typed/policy/v1alpha1/clusterimagepolicy.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/policy/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/typed/policy/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/policy/v1alpha1/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/typed/policy/v1alpha1/fake/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/policy/v1alpha1/fake/fake_trustroot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/typed/policy/v1alpha1/fake/fake_trustroot.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/policy/v1alpha1/generated_expansion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/typed/policy/v1alpha1/generated_expansion.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/policy/v1alpha1/policy_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/typed/policy/v1alpha1/policy_client.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/policy/v1alpha1/trustroot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/typed/policy/v1alpha1/trustroot.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/policy/v1beta1/clusterimagepolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/typed/policy/v1beta1/clusterimagepolicy.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/policy/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/typed/policy/v1beta1/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/policy/v1beta1/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/typed/policy/v1beta1/fake/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/policy/v1beta1/fake/fake_policy_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/typed/policy/v1beta1/fake/fake_policy_client.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/policy/v1beta1/generated_expansion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/typed/policy/v1beta1/generated_expansion.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/policy/v1beta1/policy_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/clientset/versioned/typed/policy/v1beta1/policy_client.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/informers/externalversions/factory.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/informers/externalversions/generic.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/policy/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/informers/externalversions/policy/interface.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/policy/v1alpha1/clusterimagepolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/informers/externalversions/policy/v1alpha1/clusterimagepolicy.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/policy/v1alpha1/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/informers/externalversions/policy/v1alpha1/interface.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/policy/v1alpha1/trustroot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/informers/externalversions/policy/v1alpha1/trustroot.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/policy/v1beta1/clusterimagepolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/informers/externalversions/policy/v1beta1/clusterimagepolicy.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/policy/v1beta1/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/informers/externalversions/policy/v1beta1/interface.go -------------------------------------------------------------------------------- /pkg/client/injection/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/client/client.go -------------------------------------------------------------------------------- /pkg/client/injection/client/fake/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/client/fake/fake.go -------------------------------------------------------------------------------- /pkg/client/injection/ducks/duck/v1beta1/podscalable/fake/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/ducks/duck/v1beta1/podscalable/fake/fake.go -------------------------------------------------------------------------------- /pkg/client/injection/ducks/duck/v1beta1/podscalable/podscalable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/ducks/duck/v1beta1/podscalable/podscalable.go -------------------------------------------------------------------------------- /pkg/client/injection/informers/factory/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/informers/factory/factory.go -------------------------------------------------------------------------------- /pkg/client/injection/informers/factory/fake/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/informers/factory/fake/fake.go -------------------------------------------------------------------------------- /pkg/client/injection/informers/factory/filtered/fake/fake_filtered_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/informers/factory/filtered/fake/fake_filtered_factory.go -------------------------------------------------------------------------------- /pkg/client/injection/informers/factory/filtered/filtered_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/informers/factory/filtered/filtered_factory.go -------------------------------------------------------------------------------- /pkg/client/injection/informers/policy/v1alpha1/clusterimagepolicy/fake/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/informers/policy/v1alpha1/clusterimagepolicy/fake/fake.go -------------------------------------------------------------------------------- /pkg/client/injection/informers/policy/v1alpha1/trustroot/fake/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/informers/policy/v1alpha1/trustroot/fake/fake.go -------------------------------------------------------------------------------- /pkg/client/injection/informers/policy/v1alpha1/trustroot/filtered/fake/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/informers/policy/v1alpha1/trustroot/filtered/fake/fake.go -------------------------------------------------------------------------------- /pkg/client/injection/informers/policy/v1alpha1/trustroot/filtered/trustroot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/informers/policy/v1alpha1/trustroot/filtered/trustroot.go -------------------------------------------------------------------------------- /pkg/client/injection/informers/policy/v1alpha1/trustroot/trustroot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/informers/policy/v1alpha1/trustroot/trustroot.go -------------------------------------------------------------------------------- /pkg/client/injection/informers/policy/v1beta1/clusterimagepolicy/fake/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/informers/policy/v1beta1/clusterimagepolicy/fake/fake.go -------------------------------------------------------------------------------- /pkg/client/injection/reconciler/policy/v1alpha1/clusterimagepolicy/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/reconciler/policy/v1alpha1/clusterimagepolicy/state.go -------------------------------------------------------------------------------- /pkg/client/injection/reconciler/policy/v1alpha1/trustroot/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/reconciler/policy/v1alpha1/trustroot/controller.go -------------------------------------------------------------------------------- /pkg/client/injection/reconciler/policy/v1alpha1/trustroot/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/reconciler/policy/v1alpha1/trustroot/reconciler.go -------------------------------------------------------------------------------- /pkg/client/injection/reconciler/policy/v1alpha1/trustroot/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/reconciler/policy/v1alpha1/trustroot/state.go -------------------------------------------------------------------------------- /pkg/client/injection/reconciler/policy/v1beta1/clusterimagepolicy/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/injection/reconciler/policy/v1beta1/clusterimagepolicy/state.go -------------------------------------------------------------------------------- /pkg/client/listers/policy/v1alpha1/clusterimagepolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/listers/policy/v1alpha1/clusterimagepolicy.go -------------------------------------------------------------------------------- /pkg/client/listers/policy/v1alpha1/expansion_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/listers/policy/v1alpha1/expansion_generated.go -------------------------------------------------------------------------------- /pkg/client/listers/policy/v1alpha1/trustroot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/listers/policy/v1alpha1/trustroot.go -------------------------------------------------------------------------------- /pkg/client/listers/policy/v1beta1/clusterimagepolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/listers/policy/v1beta1/clusterimagepolicy.go -------------------------------------------------------------------------------- /pkg/client/listers/policy/v1beta1/expansion_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/client/listers/policy/v1beta1/expansion_generated.go -------------------------------------------------------------------------------- /pkg/config/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/config/store.go -------------------------------------------------------------------------------- /pkg/config/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/config/store_test.go -------------------------------------------------------------------------------- /pkg/config/testdata/allow-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/config/testdata/allow-all.yaml -------------------------------------------------------------------------------- /pkg/config/testdata/allow-empty-authorities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/config/testdata/allow-empty-authorities.yaml -------------------------------------------------------------------------------- /pkg/config/testdata/deny-all-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/config/testdata/deny-all-default.yaml -------------------------------------------------------------------------------- /pkg/config/testdata/deny-all-explicit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/config/testdata/deny-all-explicit.yaml -------------------------------------------------------------------------------- /pkg/config/testdata/warn-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/config/testdata/warn-all.yaml -------------------------------------------------------------------------------- /pkg/policy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/policy/README.md -------------------------------------------------------------------------------- /pkg/policy/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/policy/parse.go -------------------------------------------------------------------------------- /pkg/policy/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/policy/parse_test.go -------------------------------------------------------------------------------- /pkg/policy/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/policy/policy.go -------------------------------------------------------------------------------- /pkg/policy/policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/policy/policy_test.go -------------------------------------------------------------------------------- /pkg/policy/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/policy/validate.go -------------------------------------------------------------------------------- /pkg/policy/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/policy/validate_test.go -------------------------------------------------------------------------------- /pkg/policy/verifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/policy/verifier.go -------------------------------------------------------------------------------- /pkg/policy/verifier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/policy/verifier_test.go -------------------------------------------------------------------------------- /pkg/reconciler/clusterimagepolicy/clusterimagepolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/clusterimagepolicy/clusterimagepolicy.go -------------------------------------------------------------------------------- /pkg/reconciler/clusterimagepolicy/clusterimagepolicy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/clusterimagepolicy/clusterimagepolicy_test.go -------------------------------------------------------------------------------- /pkg/reconciler/clusterimagepolicy/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/clusterimagepolicy/controller.go -------------------------------------------------------------------------------- /pkg/reconciler/clusterimagepolicy/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/clusterimagepolicy/controller_test.go -------------------------------------------------------------------------------- /pkg/reconciler/clusterimagepolicy/resources/configmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/clusterimagepolicy/resources/configmap.go -------------------------------------------------------------------------------- /pkg/reconciler/testing/v1alpha1/clusterimagepolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/testing/v1alpha1/clusterimagepolicy.go -------------------------------------------------------------------------------- /pkg/reconciler/testing/v1alpha1/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/testing/v1alpha1/factory.go -------------------------------------------------------------------------------- /pkg/reconciler/testing/v1alpha1/listers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/testing/v1alpha1/listers.go -------------------------------------------------------------------------------- /pkg/reconciler/testing/v1alpha1/trustroot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/testing/v1alpha1/trustroot.go -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/controller.go -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/controller_test.go -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/resources/configmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/resources/configmap.go -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/testdata/ctfeLogID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/testdata/ctfeLogID.txt -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/testdata/ctfePublicKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/testdata/ctfePublicKey.pem -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/testdata/fulcioCert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/testdata/fulcioCert.pem -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/testdata/fulcioCertChain.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/testdata/fulcioCertChain.pem -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/testdata/marshalledEntry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/testdata/marshalledEntry.json -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/testdata/marshalledEntryFromMirrorFS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/testdata/marshalledEntryFromMirrorFS.json -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/testdata/rekorLogID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/testdata/rekorLogID.txt -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/testdata/rekorPublicKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/testdata/rekorPublicKey.pem -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/testdata/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/testdata/root.json -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/testdata/rootWithCustomTrustedRootJSON.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/testdata/rootWithCustomTrustedRootJSON.json -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/testdata/rootWithTrustedRootJSON.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/testdata/rootWithTrustedRootJSON.json -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/testdata/testdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/testdata/testdata.go -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/testdata/tsaCertChain.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/testdata/tsaCertChain.pem -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/testdata/tufRepo.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/testdata/tufRepo.tar -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/testdata/tufRepoWithCustomTrustedRootJSON.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/testdata/tufRepoWithCustomTrustedRootJSON.tar -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/testdata/tufRepoWithTrustedRootJSON.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/testdata/tufRepoWithTrustedRootJSON.tar -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/trustroot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/trustroot.go -------------------------------------------------------------------------------- /pkg/reconciler/trustroot/trustroot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/reconciler/trustroot/trustroot_test.go -------------------------------------------------------------------------------- /pkg/tuf/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/tuf/context.go -------------------------------------------------------------------------------- /pkg/tuf/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/tuf/context_test.go -------------------------------------------------------------------------------- /pkg/tuf/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/tuf/repo.go -------------------------------------------------------------------------------- /pkg/tuf/repo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/tuf/repo_test.go -------------------------------------------------------------------------------- /pkg/webhook/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/webhook/cache.go -------------------------------------------------------------------------------- /pkg/webhook/clusterimagepolicy/clusterimagepolicy_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/webhook/clusterimagepolicy/clusterimagepolicy_types.go -------------------------------------------------------------------------------- /pkg/webhook/nocache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/webhook/nocache.go -------------------------------------------------------------------------------- /pkg/webhook/registryauth/azure/acrhelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/webhook/registryauth/azure/acrhelper.go -------------------------------------------------------------------------------- /pkg/webhook/registryauth/registryauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/webhook/registryauth/registryauth.go -------------------------------------------------------------------------------- /pkg/webhook/testdata/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/webhook/testdata/cert.pem -------------------------------------------------------------------------------- /pkg/webhook/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/webhook/validation.go -------------------------------------------------------------------------------- /pkg/webhook/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/webhook/validator.go -------------------------------------------------------------------------------- /pkg/webhook/validator_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/webhook/validator_result.go -------------------------------------------------------------------------------- /pkg/webhook/validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/pkg/webhook/validator_test.go -------------------------------------------------------------------------------- /release/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/release/README.md -------------------------------------------------------------------------------- /release/ko-sign-release-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/release/ko-sign-release-images.sh -------------------------------------------------------------------------------- /release/ldflags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/release/ldflags.sh -------------------------------------------------------------------------------- /release/release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/release/release.mk -------------------------------------------------------------------------------- /test/cert_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/cert_utils.go -------------------------------------------------------------------------------- /test/ci.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/ci.mk -------------------------------------------------------------------------------- /test/cmd/getoidctoken/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/cmd/getoidctoken/main.go -------------------------------------------------------------------------------- /test/config/gettoken/gettoken.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/config/gettoken/gettoken.yaml -------------------------------------------------------------------------------- /test/e2e_test_cluster_image_policy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_cluster_image_policy.sh -------------------------------------------------------------------------------- /test/e2e_test_cluster_image_policy_from_configmap_with_fetch_config_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_cluster_image_policy_from_configmap_with_fetch_config_file.sh -------------------------------------------------------------------------------- /test/e2e_test_cluster_image_policy_from_url.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_cluster_image_policy_from_url.sh -------------------------------------------------------------------------------- /test/e2e_test_cluster_image_policy_no_tuf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_cluster_image_policy_no_tuf.sh -------------------------------------------------------------------------------- /test/e2e_test_cluster_image_policy_with_attestations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_cluster_image_policy_with_attestations.sh -------------------------------------------------------------------------------- /test/e2e_test_cluster_image_policy_with_attestations_rego.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_cluster_image_policy_with_attestations_rego.sh -------------------------------------------------------------------------------- /test/e2e_test_cluster_image_policy_with_fetch_config_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_cluster_image_policy_with_fetch_config_file.sh -------------------------------------------------------------------------------- /test/e2e_test_cluster_image_policy_with_include_objectmeta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_cluster_image_policy_with_include_objectmeta.sh -------------------------------------------------------------------------------- /test/e2e_test_cluster_image_policy_with_include_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_cluster_image_policy_with_include_spec.sh -------------------------------------------------------------------------------- /test/e2e_test_cluster_image_policy_with_include_typemeta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_cluster_image_policy_with_include_typemeta.sh -------------------------------------------------------------------------------- /test/e2e_test_cluster_image_policy_with_source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_cluster_image_policy_with_source.sh -------------------------------------------------------------------------------- /test/e2e_test_cluster_image_policy_with_trustroot_bring_own_keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_cluster_image_policy_with_trustroot_bring_own_keys.sh -------------------------------------------------------------------------------- /test/e2e_test_cluster_image_policy_with_trustroot_remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_cluster_image_policy_with_trustroot_remote.sh -------------------------------------------------------------------------------- /test/e2e_test_cluster_image_policy_with_trustroot_repository.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_cluster_image_policy_with_trustroot_repository.sh -------------------------------------------------------------------------------- /test/e2e_test_cluster_image_policy_with_tsa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_cluster_image_policy_with_tsa.sh -------------------------------------------------------------------------------- /test/e2e_test_cluster_image_policy_with_warn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_cluster_image_policy_with_warn.sh -------------------------------------------------------------------------------- /test/e2e_test_cluster_with_scalable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_cluster_with_scalable.sh -------------------------------------------------------------------------------- /test/e2e_test_policy_controller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_policy_controller.sh -------------------------------------------------------------------------------- /test/e2e_test_policy_crd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_policy_crd.sh -------------------------------------------------------------------------------- /test/e2e_test_trustroot_crd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/e2e_test_trustroot_crd.sh -------------------------------------------------------------------------------- /test/kustomize-no-tuf/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/kustomize-no-tuf/kustomization.yaml -------------------------------------------------------------------------------- /test/kustomize/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/kustomize/kustomization.yaml -------------------------------------------------------------------------------- /test/testdata/attestations/vuln-predicate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/attestations/vuln-predicate.json -------------------------------------------------------------------------------- /test/testdata/bom-go-mod.spdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/bom-go-mod.spdx -------------------------------------------------------------------------------- /test/testdata/fancy_from.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/fancy_from.Dockerfile -------------------------------------------------------------------------------- /test/testdata/policies/cue-fails.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policies/cue-fails.cue -------------------------------------------------------------------------------- /test/testdata/policies/cue-policy-config.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policies/cue-policy-config.cue -------------------------------------------------------------------------------- /test/testdata/policies/cue-vuln-fails.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policies/cue-vuln-fails.cue -------------------------------------------------------------------------------- /test/testdata/policies/cue-vuln-works.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policies/cue-vuln-works.cue -------------------------------------------------------------------------------- /test/testdata/policies/cue-works.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policies/cue-works.cue -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-config-file-policy-fails.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-config-file-policy-fails.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-config-file-policy-from-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-config-file-policy-from-configmap.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-config-file-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-config-file-policy.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-include-objectmeta-fails.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-include-objectmeta-fails.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-include-objectmeta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-include-objectmeta.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-include-spec-fails.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-include-spec-fails.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-include-spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-include-spec.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-include-typemeta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-include-typemeta.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-key-and-keyless-ignore-sct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-key-and-keyless-ignore-sct.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-key-and-keyless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-key-and-keyless.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-key-hash-algorithm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-key-hash-algorithm.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-key-no-rekor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-key-no-rekor.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-key-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-key-secret.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-key-tsa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-key-tsa.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-key-with-attestations-no-rekor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-key-with-attestations-no-rekor.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-key-with-attestations-rego.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-key-with-attestations-rego.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-key-with-attestations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-key-with-attestations.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-key.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-keyless-warn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-keyless-warn.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-keyless-with-attestations-rego.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-keyless-with-attestations-rego.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-keyless-with-attestations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-keyless-with-attestations.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-keyless-with-identities-mismatch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-keyless-with-identities-mismatch.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-keyless-with-identities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-keyless-with-identities.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-keyless-with-source-prefix-tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-keyless-with-source-prefix-tag.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-keyless-with-source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-keyless-with-source.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-keyless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-keyless.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-match-resource-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-match-resource-label.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-policy-from-url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-policy-from-url.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-static-fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-static-fail.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/cip-static-pass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/cip-static-pass.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/e2e/test-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/e2e/test-deployment.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/empty-authorities/authorities-absent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/empty-authorities/authorities-absent.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/empty-authorities/authorities-present.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/empty-authorities/authorities-present.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/empty-keyref-and-keylessref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/empty-keyref-and-keylessref.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/empty-keyref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/empty-keyref.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/invalid-authority.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/invalid-authority.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/invalid-glob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/invalid-glob.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/invalid-keyref-awskms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/invalid-keyref-awskms.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/invalid-mode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/invalid-mode.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/invalid-pubkey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/invalid-pubkey.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/keylessref-with-empty-authorities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/keylessref-with-empty-authorities.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/keylessref-with-malformed-issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/keylessref-with-malformed-issuer.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/keylessref-with-malformed-subject.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/keylessref-with-malformed-subject.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/keyref-with-multiple-properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/keyref-with-multiple-properties.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/missing-identity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/missing-identity.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/missing-issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/missing-issuer.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/missing-subject.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/missing-subject.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/v1beta1-empty-keyref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/v1beta1-empty-keyref.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/v1beta1-invalid-glob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/v1beta1-invalid-glob.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/v1beta1-invalid-hash-algo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/v1beta1-invalid-hash-algo.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/v1beta1-invalid-keyref-awskms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/v1beta1-invalid-keyref-awskms.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/v1beta1-invalid-match-resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/v1beta1-invalid-match-resource.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/v1beta1-invalid-mode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/v1beta1-invalid-mode.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/v1beta1-invalid-pubkey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/v1beta1-invalid-pubkey.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/v1beta1-missing-identity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/v1beta1-missing-identity.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/v1beta1-missing-issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/v1beta1-missing-issuer.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/v1beta1-missing-subject.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/v1beta1-missing-subject.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/invalid/valid-keyref-and-keylessref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/invalid/valid-keyref-and-keylessref.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/tester/cip-public-keyless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/tester/cip-public-keyless.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/valid/v1beta1-valid-keylessref-awskms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/valid/v1beta1-valid-keylessref-awskms.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/valid/v1beta1-valid-keyref-awskms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/valid/v1beta1-valid-keyref-awskms.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/valid/v1beta1-valid-policy-glob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/valid/v1beta1-valid-policy-glob.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/valid/v1beta1-valid-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/valid/v1beta1-valid-policy.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/valid/valid-keyless-with-source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/valid/valid-keyless-with-source.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/valid/valid-keylessref-awskms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/valid/valid-keylessref-awskms.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/valid/valid-keyref-awskms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/valid/valid-keyref-awskms.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/valid/valid-policy-glob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/valid/valid-policy-glob.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/valid/valid-policy-hash-algo-sha512.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/valid/valid-policy-hash-algo-sha512.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/valid/valid-policy-hash-algo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/valid/valid-policy-hash-algo.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/valid/valid-policy-keyless-ignore-sct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/valid/valid-policy-keyless-ignore-sct.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/valid/valid-policy-match-resource-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/valid/valid-policy-match-resource-label.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/valid/valid-policy-match-resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/valid/valid-policy-match-resource.yaml -------------------------------------------------------------------------------- /test/testdata/policy-controller/valid/valid-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/policy-controller/valid/valid-policy.yaml -------------------------------------------------------------------------------- /test/testdata/resources/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/resources/job.yaml -------------------------------------------------------------------------------- /test/testdata/resources/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/resources/pod.yaml -------------------------------------------------------------------------------- /test/testdata/signed_manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/signed_manifest.yaml -------------------------------------------------------------------------------- /test/testdata/single_stage.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/single_stage.Dockerfile -------------------------------------------------------------------------------- /test/testdata/test.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/test.wasm -------------------------------------------------------------------------------- /test/testdata/test_blob_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/test_blob_cert.pem -------------------------------------------------------------------------------- /test/testdata/test_blob_private_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/test_blob_private_key -------------------------------------------------------------------------------- /test/testdata/test_blob_public_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/test_blob_public_key -------------------------------------------------------------------------------- /test/testdata/trustroot/e2e/bring-your-own-keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/trustroot/e2e/bring-your-own-keys.yaml -------------------------------------------------------------------------------- /test/testdata/trustroot/e2e/with-remote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/trustroot/e2e/with-remote.yaml -------------------------------------------------------------------------------- /test/testdata/trustroot/e2e/with-repository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/trustroot/e2e/with-repository.yaml -------------------------------------------------------------------------------- /test/testdata/trustroot/e2e/with-tsa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/trustroot/e2e/with-tsa.yaml -------------------------------------------------------------------------------- /test/testdata/trustroot/golden/ctfe.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/trustroot/golden/ctfe.pem -------------------------------------------------------------------------------- /test/testdata/trustroot/golden/fulcio.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/trustroot/golden/fulcio.crt.pem -------------------------------------------------------------------------------- /test/testdata/trustroot/golden/rekor.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/trustroot/golden/rekor.pem -------------------------------------------------------------------------------- /test/testdata/trustroot/golden/tsa.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/trustroot/golden/tsa.crt.pem -------------------------------------------------------------------------------- /test/testdata/trustroot/valid/valid-sigstore-keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/trustroot/valid/valid-sigstore-keys.yaml -------------------------------------------------------------------------------- /test/testdata/unsigned_build_stage.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/unsigned_build_stage.Dockerfile -------------------------------------------------------------------------------- /test/testdata/unsigned_manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/unsigned_manifest.yaml -------------------------------------------------------------------------------- /test/testdata/with_arg.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/with_arg.Dockerfile -------------------------------------------------------------------------------- /test/testdata/with_lowercase.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/test/testdata/with_lowercase.Dockerfile -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/cloud.google.com/go/auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/cloud.google.com/go/auth/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/cloud.google.com/go/auth/oauth2adapt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/cloud.google.com/go/auth/oauth2adapt/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/cloud.google.com/go/compute/metadata/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/cloud.google.com/go/compute/metadata/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/cloud.google.com/go/iam/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/cloud.google.com/go/iam/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/cloud.google.com/go/kms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/cloud.google.com/go/kms/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/cloud.google.com/go/longrunning/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/cloud.google.com/go/longrunning/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/contrib.go.opencensus.io/exporter/ocagent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/contrib.go.opencensus.io/exporter/ocagent/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/cuelang.org/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/cuelang.org/go/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/azure-sdk-for-go/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/azure-sdk-for-go/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/azure-sdk-for-go/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/azure-sdk-for-go/NOTICE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/autorest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/autorest/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/autorest/adal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/autorest/adal/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/autorest/date/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/autorest/date/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/logger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/logger/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/tracing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/tracing/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/ProtonMail/go-crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/ProtonMail/go-crypto/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/agnivade/levenshtein/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/agnivade/levenshtein/License.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/alibabacloud-go/debug/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/alibabacloud-go/debug/debug/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/alibabacloud-go/tea-xml/service/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/alibabacloud-go/tea-xml/service/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/alibabacloud-go/tea/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/alibabacloud-go/tea/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/asaskevich/govalidator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/asaskevich/govalidator/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/NOTICE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/config/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/config/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go/aws/arn/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go/aws/arn/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go/aws/arn/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go/aws/arn/NOTICE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/smithy-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/aws/smithy-go/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/smithy-go/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/beorn7/perks/quantile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/beorn7/perks/quantile/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/blang/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/blang/semver/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/blang/semver/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/blang/semver/v4/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/blendle/zapdriver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/blendle/zapdriver/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/cenkalti/backoff/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/cenkalti/backoff/v4/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/cespare/xxhash/v2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/cespare/xxhash/v2/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/clbanning/mxj/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/clbanning/mxj/v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/cloudflare/circl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/cloudflare/circl/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/cockroachdb/apd/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/cockroachdb/apd/v3/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/common-nighthawk/go-figure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/common-nighthawk/go-figure/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/davecgh/go-spew/spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/davecgh/go-spew/spew/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/digitorus/pkcs7/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/digitorus/pkcs7/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/digitorus/timestamp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/digitorus/timestamp/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/dimchansky/utfbom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/dimchansky/utfbom/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/distribution/reference/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/distribution/reference/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/docker/cli/cli/config/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/docker/cli/cli/config/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/docker/cli/cli/config/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/docker/cli/cli/config/NOTICE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/docker/go-connections/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/docker/go-connections/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/docker/go-units/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/docker/go-units/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/dustin/go-humanize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/dustin/go-humanize/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/emicklei/go-restful/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/emicklei/go-restful/v3/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/evanphx/json-patch/v5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/evanphx/json-patch/v5/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/felixge/httpsnoop/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/felixge/httpsnoop/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/fsnotify/fsnotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/fsnotify/fsnotify/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/fxamacker/cbor/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/fxamacker/cbor/v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-chi/chi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-chi/chi/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-ini/ini/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-ini/ini/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-jose/go-jose/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-jose/go-jose/v4/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-jose/go-jose/v4/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-jose/go-jose/v4/json/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-kit/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-kit/log/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-logfmt/logfmt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-logfmt/logfmt/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/analysis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/analysis/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/errors/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/jsonpointer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/jsonpointer/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/jsonreference/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/jsonreference/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/loads/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/loads/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/runtime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/runtime/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/spec/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/strfmt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/strfmt/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/swag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/swag/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/validate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/validate/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-viper/mapstructure/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/go-viper/mapstructure/v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/gobuffalo/flect/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/gobuffalo/flect/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/gobwas/glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/gobwas/glob/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/golang-jwt/jwt/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/golang-jwt/jwt/v4/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/golang-jwt/jwt/v5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/golang-jwt/jwt/v5/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/golang/groupcache/lru/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/golang/groupcache/lru/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/golang/snappy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/golang/snappy/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/gnostic-models/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/google/gnostic-models/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/go-cmp/cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/google/go-cmp/cmp/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/go-containerregistry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/google/go-containerregistry/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/go-github/v55/github/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/google/go-github/v55/github/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/go-querystring/query/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/google/go-querystring/query/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/s2a-go/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/google/s2a-go/LICENSE.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/googleapis/gax-go/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/googleapis/gax-go/v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/errwrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/errwrap/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/errwrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/errwrap/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/errwrap/errwrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/errwrap/errwrap.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/cleanhttp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/cleanhttp.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/doc.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/handlers.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/Makefile -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/append.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/append.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/flatten.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/flatten.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/format.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/group.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/multierror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/multierror.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/prefix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/prefix.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/sort.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | *.test 4 | .vscode/ -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/.go-version: -------------------------------------------------------------------------------- 1 | 1.22.2 2 | -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @hashicorp/go-retryablehttp-maintainers 2 | -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/Makefile -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/client.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/.travis.yml -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/Makefile -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/doc.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/rootcerts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/rootcerts.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/.gitignore -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/GNUmakefile -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/doc.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ifaddr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ifaddr.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ifaddrs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ifaddrs.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ifattr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ifattr.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ipaddr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ipaddr.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ipaddrs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ipaddrs.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ipv4addr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ipv4addr.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ipv6addr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ipv6addr.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/rfc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/rfc.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/sockaddr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/sockaddr.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/sockaddrs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/sockaddrs.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/unixsock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/unixsock.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/.gitignore -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/.golangci.yml -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/2q.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/2q.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/arc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/arc.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/doc.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/lru.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/simplelru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/simplelru/lru.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/golang-lru/testing.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/.gitignore -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/.travis.yml -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/Makefile -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/appveyor.yml -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/decoder.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/ast/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/ast/ast.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/ast/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/ast/walk.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/parser/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/parser/error.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/parser/parser.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/scanner/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/scanner/scanner.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/strconv/quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/strconv/quote.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/token/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/token/position.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/token/token.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/parser/flatten.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/parser/flatten.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/parser/parser.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/scanner/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/scanner/scanner.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/token/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/token/position.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/token/token.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/lex.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/parse.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/.copywrite.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/.copywrite.hcl -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/auth.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/auth_token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/auth_token.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/client.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/help.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/kv.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/kv_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/kv_v1.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/kv_v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/kv_v2.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/logical.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/logical.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/output_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/output_policy.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/output_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/output_string.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/plugin_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/plugin_helpers.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/plugin_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/plugin_types.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/request.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/response.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/secret.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/ssh.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/ssh_agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/ssh_agent.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sudo_paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sudo_paths.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_audit.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_auth.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_hastatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_hastatus.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_health.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_init.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_leader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_leader.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_leases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_leases.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_mfa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_mfa.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_monitor.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_mounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_mounts.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_plugins.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_policy.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_raft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_raft.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_rekey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_rekey.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_rotate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_rotate.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_seal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_seal.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_stepdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_stepdown.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/in-toto/attestation/go/v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/in-toto/attestation/go/v1/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/jedisct1/go-minisign/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/jedisct1/go-minisign/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/jellydator/ttlcache/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/jellydator/ttlcache/v3/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/josharian/intern/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/josharian/intern/license.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/json-iterator/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/json-iterator/go/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/kelseyhightower/envconfig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/kelseyhightower/envconfig/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/klauspost/compress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/klauspost/compress/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/kylelemons/godebug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/kylelemons/godebug/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/core/objects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/core/objects.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/core/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/core/util.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/goodkey/weak.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/goodkey/weak.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/probs/probs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/probs/probs.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/mailru/easyjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/mailru/easyjson/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/mitchellh/go-homedir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/mitchellh/go-homedir/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/mitchellh/mapstructure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/mitchellh/mapstructure/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/modern-go/concurrent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/modern-go/concurrent/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/modern-go/reflect2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/modern-go/reflect2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/munnerz/goautoneg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/munnerz/goautoneg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/nozzle/throttler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/nozzle/throttler/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/oklog/ulid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/oklog/ulid/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/open-policy-agent/opa/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/open-policy-agent/opa/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/opencontainers/go-digest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/opencontainers/go-digest/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/opentracing/opentracing-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/opentracing/opentracing-go/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/pelletier/go-toml/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/pelletier/go-toml/v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/pkg/browser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/pkg/browser/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/prometheus/client_model/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/prometheus/client_model/go/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/prometheus/client_model/go/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/prometheus/client_model/go/NOTICE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/prometheus/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/prometheus/common/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/prometheus/procfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/prometheus/procfs/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/prometheus/statsd_exporter/pkg/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/prometheus/statsd_exporter/pkg/NOTICE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/rcrowley/go-metrics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/rcrowley/go-metrics/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/ryanuber/go-glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/ryanuber/go-glob/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sagikazarmark/locafero/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/sagikazarmark/locafero/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sassoftware/relic/lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/sassoftware/relic/lib/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/shibumi/go-pathspec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/shibumi/go-pathspec/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sigstore/cosign/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/sigstore/cosign/v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sigstore/rekor/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/sigstore/rekor/pkg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sigstore/scaffolding/pkg/repo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/sigstore/scaffolding/pkg/repo/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sigstore/sigstore-go/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/sigstore/sigstore-go/pkg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sigstore/sigstore/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/sigstore/sigstore/pkg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sourcegraph/conc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/sourcegraph/conc/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/spf13/afero/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/spf13/afero/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/subosito/gotenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/subosito/gotenv/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/syndtr/goleveldb/leveldb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/syndtr/goleveldb/leveldb/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/tchap/go-patricia/v2/patricia/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/tchap/go-patricia/v2/patricia/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/theupdateframework/go-tuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/theupdateframework/go-tuf/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/titanous/rocacheck/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/titanous/rocacheck/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/tjfoc/gmsm/sm3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/tjfoc/gmsm/sm3/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/transparency-dev/merkle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/transparency-dev/merkle/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/vbatts/tar-split/archive/tar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/vbatts/tar-split/archive/tar/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/x448/float16/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/x448/float16/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/yashtewari/glob-intersection/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/github.com/yashtewari/glob-intersection/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/gitlab.com/gitlab-org/api/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/gitlab.com/gitlab-org/api/client-go/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.mongodb.org/mongo-driver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/go.mongodb.org/mongo-driver/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.opentelemetry.io/auto/sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/go.opentelemetry.io/auto/sdk/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.opentelemetry.io/otel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/go.opentelemetry.io/otel/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.opentelemetry.io/otel/metric/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/go.opentelemetry.io/otel/metric/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.opentelemetry.io/otel/sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/go.opentelemetry.io/otel/sdk/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.opentelemetry.io/otel/trace/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/go.opentelemetry.io/otel/trace/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.uber.org/atomic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/go.uber.org/atomic/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.uber.org/automaxprocs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/go.uber.org/automaxprocs/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.uber.org/multierr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/go.uber.org/multierr/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.uber.org/zap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/go.uber.org/zap/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/time/rate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/golang.org/x/time/rate/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/gomodules.xyz/jsonpatch/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/gomodules.xyz/jsonpatch/v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/google.golang.org/genproto/googleapis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/google.golang.org/genproto/googleapis/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/google.golang.org/grpc/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/google.golang.org/grpc/NOTICE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/google.golang.org/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/google.golang.org/protobuf/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/gopkg.in/evanphx/json-patch.v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/gopkg.in/evanphx/json-patch.v4/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/gopkg.in/ini.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/gopkg.in/ini.v1/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/k8s.io/apiextensions-apiserver/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/k8s.io/apiextensions-apiserver/pkg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/k8s.io/apimachinery/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/k8s.io/apimachinery/pkg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/k8s.io/kube-openapi/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/k8s.io/kube-openapi/pkg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/k8s.io/kube-openapi/pkg/validation/spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/k8s.io/kube-openapi/pkg/validation/spec/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/knative.dev/hack/schema/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/knative.dev/hack/schema/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/knative.dev/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/knative.dev/pkg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/sigs.k8s.io/release-utils/version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/sigs.k8s.io/release-utils/version/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/sigs.k8s.io/structured-merge-diff/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/sigs.k8s.io/structured-merge-diff/v4/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/sigs.k8s.io/yaml/goyaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/sigs.k8s.io/yaml/goyaml.v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/sigs.k8s.io/yaml/goyaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/policy-controller/HEAD/third_party/VENDOR-LICENSE/sigs.k8s.io/yaml/goyaml.v2/NOTICE --------------------------------------------------------------------------------