Skip to content

Commit c430d1a

Browse files
authored
bump pkimetal to v1.41.0 and ignore new ctlint warning (#8713)
Updates the integration-test pkimetal sidecar from v1.20.0 to v1.41.0. The upgraded ctlint throws a new warning, "Cannot verify SCT signature without issuer SPKI, which could not be found in the available CCADB data", because our test PKI is of course not in its CCADB data, so ignore it.
1 parent 6c9addd commit c430d1a

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ services:
144144
- bouldernet
145145

146146
bpkimetal:
147-
image: ghcr.io/pkimetal/pkimetal:v1.20.0
147+
image: ghcr.io/pkimetal/pkimetal:v1.41.0
148148
networks:
149149
- bouldernet
150150

test/config-next/zlint.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ ignore_lints = [
1818
# Some linters continue to complain about the lack of an AIA OCSP URI, even
1919
# when a CRLDP is present.
2020
"certlint:br_certificates_must_include_an_http_url_of_the_ocsp_responder",
21-
"x509lint:no_ocsp_over_http"
21+
"x509lint:no_ocsp_over_http",
22+
# ctlint requires CCADB data to verify SCT signatures; our test issuers are
23+
# not in CCADB so this warning fires for every issued certificate.
24+
"ctlint:cannot_verify_sct_signature_without_issuer_spki,_which_could_not_be_found_in_the_available_ccadb_data",
2225
]
2326

2427
[e_pkimetal_lint_cabf_serverauth_crl]

test/config/zlint.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ ignore_lints = [
1515
# issued under the "classic" profile, but have removed it from our "tlsserver"
1616
# and "shortlived" profiles.
1717
"pkilint:cabf.serverauth.subscriber_rsa_digitalsignature_and_keyencipherment_present",
18+
# ctlint requires CCADB data to verify SCT signatures; our test issuers are
19+
# not in CCADB so this warning fires for every issued certificate.
20+
"ctlint:cannot_verify_sct_signature_without_issuer_spki,_which_could_not_be_found_in_the_available_ccadb_data",
1821
]
1922

2023
[e_pkimetal_lint_cabf_serverauth_crl]

0 commit comments

Comments
 (0)