-
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
Closes #58 Changes for deprecating several `ls` commands Updates to the kes identity command Fix for kes identity new example
- Loading branch information
Showing
9 changed files
with
142 additions
and
9 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
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,71 @@ | ||
--- | ||
title: kes ls | ||
date: 2023-03-03 | ||
lastmod: :git | ||
draft: false | ||
tableOfContents: true | ||
--- | ||
|
||
{{< admonition title="Replaces deprecated commands" type="note" >}} | ||
The `kes ls` command replaces the following commands, which are deprecated: | ||
|
||
- `kes key ls` | ||
- `kes policy ls` | ||
- `kes identity ls` | ||
{{< /admonition >}} | ||
|
||
## Overview | ||
|
||
Returns a list of keys, policies, or identities. | ||
|
||
## 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. | ||
Defaults to the value in the `$MINIO_KES_API_KEY` environment variable. | ||
|
||
### `--server, -s` | ||
|
||
*Optional* | ||
|
||
The `HOST[:PORT]` of the KES server to connect to. | ||
Defaults to the value in the `$MINIO_KES_SERVER` environment variable. | ||
|
||
### `--json` | ||
|
||
*Optional* | ||
|
||
Print the output in JSON format. | ||
|
||
### `--identity, -i` | ||
|
||
*Optional* | ||
|
||
Print a list of identities. | ||
|
||
### `--policy, -p` | ||
|
||
*Optional* | ||
|
||
Print a list of policies. | ||
|
||
### `--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