Skip to content

Commit 7cb5ee7

Browse files
Julien-Benmircea-cosbuc
authored andcommitted
Fix public signing key URL
1 parent 9bd5ae8 commit 7cb5ee7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/dev/contexts/root-context

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ fi
7575

7676
export MONGODB_REPO_URL="quay.io/mongodb"
7777

78-
export SIGNING_PUBLIC_KEY_URL="https://cosign.mongodb.com/mongodb-kubernetes-operator.pem"
78+
export SIGNING_PUBLIC_KEY_URL="https://cosign.mongodb.com/mongodb-enterprise-kubernetes-operator.pem"
7979

8080
export CLUSTER_DOMAIN="cluster.local"
8181

scripts/evergreen/release/images_signing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ def verify_signature(repository: str, tag: str) -> bool:
230230
# Access the content of the file
231231
kubernetes_operator_public_key = r.text
232232
else:
233-
logger.error(f"Failed to retrieve the public key: Status code {r.status_code}")
233+
logger.error(f"Failed to retrieve the public key from {public_key_url}: Status code {r.status_code}")
234234
return False
235235

236236
public_key_var_name = "OPERATOR_PUBLIC_KEY"

0 commit comments

Comments
 (0)