-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added csm auth docs for Preapproved guid feature #470
Changes from 3 commits
443e537
1b2b951
8dbac60
ff6a620
c094609
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,7 @@ If you feel that something is unclear or missing in this document, please open u | |
| [karavictl tenant list](#karavictl-tenant-list) | Lists tenant resources within CSM | | ||
| [karavictl tenant revoke](#karavictl-tenant-revoke) | Get a tenant resource within CSM | | ||
| [karavictl tenant delete](#karavictl-tenant-delete) | Deletes a tenant resource within CSM | | ||
| [karavictl tenant update](#karavictl-tenant-update) | Updates a tenant resource within CSM | | ||
|
||
|
||
## General Commands | ||
|
@@ -1095,3 +1096,42 @@ karavictl tenant delete [flags] | |
$ karavictl tenant delete --name Alice | ||
``` | ||
On success, there will be no output. You may run `karavictl tenant get --name <tenant-name>` to confirm the deletion occurred. | ||
|
||
|
||
|
||
--- | ||
|
||
|
||
|
||
### karavictl tenant update | ||
|
||
Updates a tenant's resource within CSM | ||
|
||
##### Synopsis | ||
|
||
Updates a tenant resource within CSM (currently only for powerflex) | ||
|
||
``` | ||
karavictl tenant update [flags] | ||
``` | ||
|
||
#### Options | ||
|
||
``` | ||
-h, --help help for create | ||
-n, --name string Tenant name | ||
--approvesdc boolean (Usage: --approvesdc=true/false | true value will allow the tenant's request to approve SDC pass through proxy server to powerflex array. false value will block the request to approve SDC if SDC is not in approved state) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please mention this flag is only applicable for PowerFlex. Also can reword 'true value allows the tenant's SDC approval request to be forwarded to the PowerFlex array' There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
``` | ||
|
||
##### Options inherited from parent commands | ||
|
||
``` | ||
--addr string Address of the server (default "localhost:443") | ||
--config string config file (default is $HOME/.karavictl.yaml) | ||
``` | ||
|
||
##### Output | ||
``` | ||
$ karavictl tenant update --name Alice --approvesdc=false | ||
``` | ||
On success, there will be no output. You may run `karavictl tenant get --name <tenant-name>` to confirm the update was persisted. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need to mention storage system applicability here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed reference to PowerFlex here