-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Alexander Jung <[email protected]>
- Loading branch information
Showing
85 changed files
with
3,431 additions
and
131 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
title: "kraft cloud cert create" | ||
description: Create a certificate | ||
--- | ||
|
||
Create a new certificate. | ||
|
||
|
||
``` | ||
kraft cloud cert create [FLAGS] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
# Create a new certificate with a given common name, private key file and chain. | ||
$ kraft cloud certificate create --name my-cert --cn '*.example.com' --pkey 'private-key.pem' --chain 'chain.pem' | ||
``` | ||
|
||
## Options | ||
|
||
``` | ||
-C, --chain string The chain of the certificate | ||
-c, --cn string The common name of the certificate | ||
-h, --help help for create | ||
-n, --name string The name of the certificate | ||
-p, --pkey string The private key of the certificate in PEM format | ||
``` | ||
|
||
## Options inherited from parent commands | ||
|
||
``` | ||
--metro string Unikraft Cloud metro location | ||
--token string Unikraft Cloud access token | ||
``` | ||
|
||
## See Also | ||
|
||
* [`kraft cloud cert`](/docs/cli/reference/kraft/cloud/cert): Manage TLS certificates | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
title: "kraft cloud cert get" | ||
description: Retrieve the status of a certificate | ||
--- | ||
|
||
Retrieve the status of a certificate. | ||
|
||
|
||
``` | ||
kraft cloud cert get [FLAGS] UUID|NAME | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
# Retrieve information about a certificate by UUID | ||
$ kraft cloud certificate get fd1684ea-7970-4994-92d6-61dcc7905f2b | ||
# Retrieve information about a certificate by name | ||
$ kraft cloud certificate get my-certificate-431342 | ||
``` | ||
|
||
## Options | ||
|
||
``` | ||
-h, --help help for get | ||
-o, --output string Set output format. Options: table,yaml,json,list,raw (default "list") | ||
``` | ||
|
||
## Options inherited from parent commands | ||
|
||
``` | ||
--metro string Unikraft Cloud metro location | ||
--token string Unikraft Cloud access token | ||
``` | ||
|
||
## See Also | ||
|
||
* [`kraft cloud cert`](/docs/cli/reference/kraft/cloud/cert): Manage TLS certificates | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
title: "kraft cloud cert" | ||
description: Manage TLS certificates | ||
--- | ||
|
||
``` | ||
kraft cloud cert SUBCOMMAND | ||
``` | ||
|
||
## Options | ||
|
||
``` | ||
-h, --help help for cert | ||
``` | ||
|
||
## Options inherited from parent commands | ||
|
||
``` | ||
--metro string Unikraft Cloud metro location | ||
--token string Unikraft Cloud access token | ||
``` | ||
|
||
## See Also | ||
|
||
* [`kraft cloud`](/docs/cli/reference/kraft/cloud): Manage resources on Unikraft Cloud | ||
* [`kraft cloud cert create`](/docs/cli/reference/kraft/cloud/cert/create): Create a certificate | ||
* [`kraft cloud cert get`](/docs/cli/reference/kraft/cloud/cert/get): Retrieve the status of a certificate | ||
* [`kraft cloud cert list`](/docs/cli/reference/kraft/cloud/cert/list): List certificates | ||
* [`kraft cloud cert remove`](/docs/cli/reference/kraft/cloud/cert/remove): Remove a certificate | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
title: "kraft cloud cert list" | ||
description: List certificates | ||
--- | ||
|
||
List all TLS certificates in your account. | ||
|
||
|
||
``` | ||
kraft cloud cert list [FLAGS] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
# List all TLS certificates in your account. | ||
$ kraft cloud certificate list | ||
``` | ||
|
||
## Options | ||
|
||
``` | ||
-h, --help help for list | ||
-o, --output string Set output format. Options: table,yaml,json,list,raw (default "table") | ||
``` | ||
|
||
## Options inherited from parent commands | ||
|
||
``` | ||
--metro string Unikraft Cloud metro location | ||
--token string Unikraft Cloud access token | ||
``` | ||
|
||
## See Also | ||
|
||
* [`kraft cloud cert`](/docs/cli/reference/kraft/cloud/cert): Manage TLS certificates | ||
|
Oops, something went wrong.