Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ Options:
Limit the concurrency of jobs that create and upload binary parts. [default: 2x the core count, to a maximum of 16]

-s, --signing-key-pair <SIGNING_KEY_PAIR>
The name of a signing key pair in your Peridio CLI config. This will dictate both the private key to create a binary signature with as well as the signing key Peridio will use to verify the binary signature
The name(s) of signing key pair(s) in your Peridio CLI config. This will dictate both the private key to create a binary signature with as well as the signing key Peridio will use to verify the binary signature. Multiple pairs can be specified for multiple signatures

--signing-key-private <SIGNING_KEY_PRIVATE>
A path to a PKCS#8 private key encoded as a pem to create a binary signature binary with
Path(s) to PKCS#8 private key(s) encoded as pem to create binary signature(s) with. Multiple keys can be specified for multiple signatures

--signing-key-prn <SIGNING_KEY_PRN>
The PRN of the signing key Peridio will use to verify the binary signature
The PRN(s) of the signing key(s) Peridio will use to verify the binary signature(s). Must match the number of private keys provided

--skip-upload
Create the binary record but do not upload its content nor sign it
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
```
Usage: peridio binary-signatures list [OPTIONS]

Options:
-s, --search <SEARCH> Search string to filter binary signatures by binary_prn, signature, or keyid
-h, --help Print help

```
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
```
Usage: peridio bundles pull [OPTIONS] --bundle-prn <BUNDLE_PRN>

Options:
--bundle-prn <BUNDLE_PRN> The PRN of the bundle to pull
-o, --output <OUTPUT> Output file path for the bundle archive. If not specified, uses bundle name or ID
-h, --help Print help

```
14 changes: 14 additions & 0 deletions src/docs/peridio-core/tools/peridio-cli/commands/bundles/push.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
```
Usage: peridio bundles push [OPTIONS] --path <PATH>

Options:
-p, --path <PATH>
The path to the zstd compressed cpio archive containing the bundle and binaries
--binary-part-size <BINARY_PART_SIZE>
The size to use when creating binary parts. All binary parts will be equal to this size, except the last one which will be less than or equal to this size [default: 5242880]
--concurrency <CONCURRENCY>
Limit the concurrency of jobs that create and upload binary parts. [default: 2x the core count, to a maximum of 16]
-h, --help
Print help

```
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
```
Usage: peridio x509 create [OPTIONS] --common-name <COMMON_NAME> --start-date <START_DATE> --end-date <END_DATE>
Usage: peridio x509 create [OPTIONS] --common-name <COMMON_NAME> --start-date <YYYY-MM-DD> --end-date <YYYY-MM-DD>

Options:
--common-name <COMMON_NAME> The Common Name (CN) for the certificate
--is-ca Whether this certificate is a Certificate Authority (CA)
--start-date <START_DATE> The start date of the certificate's validity period (format: YYYY-MM-DD)
--end-date <END_DATE> The end date of the certificate's validity period (format: YYYY-MM-DD)
--start-date <YYYY-MM-DD> The start date of the certificate's validity period
--end-date <YYYY-MM-DD> The end date of the certificate's validity period
--signer-key <SIGNER_KEY> Path to the private key file of the signer (required if signer_cert is provided)
--signer-cert <SIGNER_CERT> Path to the certificate file of the signer (required if signer_key is provided)
--out <OUT> Directory to save the created certificate and private key to (defaults to current working directory)
Expand Down
Loading