AI エージェント向け: ドキュメントインデックスは https://www.mongodb.com/ja-jp/docs/llms.txt で利用できます。すべてのページの markdown バージョンは、いずれかの URL パスに .md を追加することで利用できます。
Docs Menu

パッケージの整合性の検証

MongoDB はデジタル署名を使用して、各 mongot パッケージが有効で未変更のリリースであることを証明します。mongot コンテナ イメージを検証して、正当性を確認します。

1

PEMファイルをmongodb-search-community.pem として保存するには、次のコマンドを実行します。

curl -fsSL \
https://cosign.mongodb.com/mongodb-search-community.pem \
-o mongodb-search-community.pem
2

{VERSION}mongot バージョンタグに置き換えて、次のコマンドを実行します。

COSIGN_REPOSITORY=docker.io/mongodb/signatures \
cosign verify --private-infrastructure \
--key=./mongodb-search-community.pem \
"docker.io/mongodb/mongodb-community-search:{VERSION}"

成功した出力は次のようになります。

Verification for index.docker.io/mongodb/mongodb-community-search:{VERSION} --
The following checks were performed on each of these signatures:
- The cosign claims were validated
- The signatures were verified against the specified public key
1

PEMファイルをmongodb-enterprise-kubernetes-operator.pem として保存するには、次のコマンドを実行します。

wget \
https://cosign.mongodb.com/mongodb-enterprise-kubernetes-operator.pem
2

{VERSION}mongot バージョンタグに置き換えて、次のコマンドを実行します。

cosign verify \
--key mongodb-enterprise-kubernetes-operator.pem \
quay.io/mongodb/mongodb-search:{VERSION} \
--insecure-ignore-tlog

成功した出力は次のようになります。

WARNING: Skipping tlog verification is an insecure practice that lacks of transparency and auditability verification for the signature.
Verification for quay.io/mongodb/mongodb-search:{VERSION} --
The following checks were performed on each of these signatures:
- The cosign claims were validated
- The signatures were verified against the specified public key