adm: Make --namespace flag required #1026
1 changed files with 1 additions and 0 deletions
|
@ -155,6 +155,7 @@ func initFrostfsIDCreateNamespaceCmd() {
|
||||||
frostfsidCreateNamespaceCmd.Flags().StringP(commonflags.EndpointFlag, commonflags.EndpointFlagShort, "", commonflags.EndpointFlagDesc)
|
frostfsidCreateNamespaceCmd.Flags().StringP(commonflags.EndpointFlag, commonflags.EndpointFlagShort, "", commonflags.EndpointFlagDesc)
|
||||||
frostfsidCreateNamespaceCmd.Flags().String(namespaceFlag, "", "Namespace name to create")
|
frostfsidCreateNamespaceCmd.Flags().String(namespaceFlag, "", "Namespace name to create")
|
||||||
frostfsidCreateNamespaceCmd.Flags().String(commonflags.AlphabetWalletsFlag, "", commonflags.AlphabetWalletsFlagDesc)
|
frostfsidCreateNamespaceCmd.Flags().String(commonflags.AlphabetWalletsFlag, "", commonflags.AlphabetWalletsFlagDesc)
|
||||||
|
_ = frostfsidCreateNamespaceCmd.MarkFlagRequired(namespaceFlag)
|
||||||
|
|||||||
}
|
}
|
||||||
|
|
||||||
func initFrostfsIDListNamespacesCmd() {
|
func initFrostfsIDListNamespacesCmd() {
|
||||||
|
|
Loading…
Reference in a new issue
It should be required only for
create-namespace
, other commands can useroot
namespace by default (which is, quite conveniently, also an empty string).cc @aarifullin
Other operations should pass on dev-env without namespace, could you recheck this?