-
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
Ingress removal storage service #554
Changes from 4 commits
53a4fb2
1a76050
7ee6be4
78731a7
b724eb7
a22bf81
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 |
---|---|---|
|
@@ -105,6 +105,8 @@ tenant-service 1/1 1 1 59m | |
redis-primary 1/1 1 1 59m | ||
proxy-server 1/1 1 1 59m | ||
redis-commander 1/1 1 1 59m | ||
storage-service 1/1 1 1 59m | ||
role-service 1/1 1 1 59m | ||
``` | ||
|
||
|
||
|
@@ -615,7 +617,9 @@ karavictl storage [flags] | |
##### Options | ||
|
||
``` | ||
-h, --help help for storage | ||
--addr string address of the csm-authorization storage service | ||
-h, --help help for storage | ||
--insecure insecure skip verify | ||
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. If this insecure flag serves the same purpose as the insecure flag for storage, lets keep the description consistent - 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. fixed |
||
``` | ||
|
||
##### Options inherited from parent commands | ||
|
@@ -652,14 +656,14 @@ karavictl storage get [flags] | |
-h, --help help for get | ||
-s, --system-id string System identifier (default "systemid") | ||
-t, --type string Type of storage system ("powerflex", "powermax") | ||
--insecure insecure skip verify flag for Helm deployment | ||
--addr address of the container for Helm deployment (pod:port) | ||
``` | ||
|
||
##### Options inherited from parent commands | ||
|
||
``` | ||
``` | ||
--addr string address of the csm-authorization storage service | ||
--config string config file (default is $HOME/.karavictl.yaml) | ||
--insecure insecure skip verify | ||
``` | ||
|
||
##### Output | ||
|
@@ -696,14 +700,15 @@ karavictl storage list [flags] | |
|
||
``` | ||
-h, --help help for list | ||
--insecure insecure skip verify flag for Helm deployment | ||
--addr address of the container for Helm deployment (pod:port) | ||
-t, --type string Type of storage system | ||
``` | ||
|
||
##### Options inherited from parent commands | ||
|
||
``` | ||
--addr string address of the csm-authorization storage service | ||
--config string config file (default is $HOME/.karavictl.yaml) | ||
--insecure insecure skip verify | ||
``` | ||
|
||
##### Output | ||
|
@@ -753,14 +758,14 @@ karavictl storage create [flags] | |
-s, --system-id string System identifier (default "systemid") | ||
-t, --type string Type of storage system ("powerflex", "powermax") | ||
-u, --user string Username (default "admin") | ||
--insecure insecure skip verify flag for Helm deployment | ||
--addr address of the container for Helm deployment (pod:port) | ||
``` | ||
|
||
##### Options inherited from parent commands | ||
|
||
``` | ||
--addr string address of the csm-authorization storage service | ||
--config string config file (default is $HOME/.karavictl.yaml) | ||
--insecure insecure skip verify | ||
``` | ||
|
||
##### Output | ||
|
@@ -797,14 +802,14 @@ karavictl storage update [flags] | |
-s, --system-id string System identifier (default "systemid") | ||
-t, --type string Type of storage system ("powerflex", "powermax") | ||
-u, --user string Username (default "admin") | ||
--insecure insecure skip verify flag for Helm deployment | ||
--addr address of the container for Helm deployment (pod:port) | ||
``` | ||
|
||
##### Options inherited from parent commands | ||
|
||
``` | ||
--addr string address of the csm-authorization storage service | ||
--config string config file (default is $HOME/.karavictl.yaml) | ||
--insecure insecure skip verify | ||
``` | ||
|
||
##### Output | ||
|
@@ -838,14 +843,14 @@ karavictl storage delete [flags] | |
-h, --help help for delete | ||
-s, --system-id string System identifier (default "systemid") | ||
-t, --type string Type of storage system ("powerflex", "powermax") | ||
--insecure insecure skip verify flag for Helm deployment | ||
--addr address of the container for Helm deployment (pod:port) | ||
``` | ||
|
||
##### Options inherited from parent commands | ||
|
||
``` | ||
--addr string address of the csm-authorization storage service | ||
--config string config file (default is $HOME/.karavictl.yaml) | ||
--insecure insecure skip verify | ||
``` | ||
|
||
##### Output | ||
|
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.
Now that addr is the same for tenant and storage service, lets keep the description consistent to be
Address of the server (default "localhost")
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.
fixed