SERVER-121793: prettier-format README files (#49712)

GitOrigin-RevId: 3206b35683899266c7dcbee2d2a5bd27dd57b541
This commit is contained in:
Steve McClure 2026-03-17 18:05:35 -04:00 committed by MongoDB Bot
parent 87dede76a6
commit 3634a70cf5
6 changed files with 104 additions and 102 deletions

View File

@ -8,8 +8,6 @@
*.json
*.wxs
README
# Ignore files that fail after format
jstests/noPassthrough/js_exceptions.js
jstests/noPassthrough/network/client_metadata_slowlog.js

View File

@ -85,4 +85,3 @@ LICENSE
the Server Side Public License (SSPL) v1. See individual files for
details which will specify the license applicable to each file. Files
subject to the SSPL will be noted in their headers.

View File

@ -10,6 +10,7 @@ If any of these certificates represent CAs, then all dependent certificates will
cert.yml format:
```
global:
output_path: '.../' # Required, default output path for all certs in this file.
Subject: {...} # Optional, name entities to use for all cert, overridden by values in cert entries.
@ -65,3 +66,4 @@ certs:
- {role: readWrite, db: test1}
- {role: read, db: test2}
- mongoClusterMembership: clusterName
```

View File

@ -3,5 +3,3 @@
This is the C++ implementation. Implementations which translate BSON<->JSON
are available for most languages at bsonspec.org.

View File

@ -10,8 +10,11 @@ This directory contains:
To run:
```
python x509/mkcert.py CONFIG [--mkcrl | --no-mkcrl] [-o OUTPUT] [--static-dir STATIC_DIR]
[--dry-run] [certs ...]
```
- CONFIG is the path to the JSON file specifying a list of certificates, required
- OUTPUT is the path to a directory where the generated items will be stored, default .
- STATIC_DIR is the path where signing keys needed by certificates are stored, default x509/static
@ -38,6 +41,7 @@ Future work:
Certificate definition format:
```
{
"global": {
# Optional, default value to use for Key1 for all certs, overridden by values in cert entries.
@ -103,3 +107,4 @@ Certificate definition format:
...
]
}
```