-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates for KES release 2024-06-17T15-47-05Z (#60)
* Updates for KES release 2024-06-17T15-47-05Z Closes #58 Changes for deprecating several `ls` commands Updates to the `kes identity` command Fix for `kes identity new` example --- * Fixes getting started page's server command `--auth` flag was deprecated in Nov 2023. Closes #59
- Loading branch information
Showing
11 changed files
with
176 additions
and
11 deletions.
There are no files selected for viewing
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,19 @@ | ||
--- | ||
title: Deprecated commands | ||
date: 2024-07-15 | ||
lastmod: :git | ||
draft: false | ||
tableOfContents: true | ||
weight: 1000 | ||
--- | ||
|
||
The following commands have been deprecated. | ||
Replacement commands are listed, where applicable. | ||
|
||
## Deprecated | ||
|
||
|Subcommands |Description | | ||
|:-------------------------------------------------------------|:----------------------------------------------| | ||
|[`identity ls`]({{< relref "/cli/deprecated/identity-ls" >}}) | Use [`kes ls`]({{< relref "/cli/kes-ls/" >}}) | | ||
|[`key ls`]({{< relref "/cli/deprecated/key-ls" >}}) | Use [`kes ls`]({{< relref "/cli/kes-ls/" >}}) | | ||
|[`policy ls`]({{< relref "/cli/deprecated/policy-ls" >}}) | Use [`kes ls`]({{< relref "/cli/kes-ls/" >}}) | |
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
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
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,81 @@ | ||
--- | ||
title: kes ls | ||
date: 2023-03-03 | ||
lastmod: :git | ||
draft: false | ||
tableOfContents: true | ||
--- | ||
|
||
{{< admonition type="note" >}} | ||
The `kes ls` command replaces the following [deprecated commands]({{< relref "/cli/deprecated/_index.md" >}}): | ||
|
||
- `kes key ls` | ||
- `kes policy ls` | ||
- `kes identity ls` | ||
{{< /admonition >}} | ||
|
||
## Overview | ||
|
||
Returns a list of keys, policies, or identities. | ||
|
||
If the command does not specify to list policies or identities, the command returns a list of the names of keys for the KES server. | ||
|
||
|
||
## Syntax | ||
|
||
```sh | ||
kes ls \ | ||
--api-key, -a <string> \ | ||
--server, -s <HOST[:PORT]> \ | ||
--json \ | ||
[ --identity, -i | --policy, -p ] \ | ||
--insecure, -k | ||
``` | ||
|
||
## Parameters | ||
|
||
### `--api-key, -a` | ||
|
||
*Optional* | ||
|
||
API key to use to authenticate to the KES Server. | ||
If not provided, the command uses the value in the [`$MINIO_KES_API_KEY`]({{< relref "/concepts/environment-variables/#minio_kes_api_key" >}}) environment variable. | ||
|
||
### `--server, -s` | ||
|
||
*Optional* | ||
|
||
The `HOST[:PORT]` of the KES server to connect to. | ||
If not provided, the command uses the value in the [`$MINIO_KES_SERVER`]({{< relref "/concepts/environment-variables/#minio_kes_server" >}}) environment variable. | ||
|
||
### `--json` | ||
|
||
*Optional* | ||
|
||
Print the output in JSON format. | ||
|
||
### `--identity, -i` | ||
|
||
*Optional* | ||
|
||
Print a list of identities. | ||
When used, the command returns only a list of the identities. | ||
|
||
This option is mutually exclusive with `--policy`. | ||
You can use one or the other, but not both at the same time. | ||
|
||
### `--policy, -p` | ||
|
||
*Optional* | ||
|
||
Print a list of policies names. | ||
When used, the command returns only a list of the policies. | ||
|
||
This option is mutually exclusive with `--identity`. | ||
You can use one or the other, but not both at the same time. | ||
|
||
### `--insecure, -k` | ||
|
||
*Optional* | ||
|
||
Skip verification of the server's 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
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