We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
rpk cluster config set param=value
Currently the syntax goes:
rpk cluster config set <parameter> <value>
This doesn't work for when the value is a negative number, because of how POSIX flags commonly work.
rpk cluster config set delete_retention_ms -1 Error: unknown shorthand flag: '1' in -1
The following does work:
rpk cluster config set -- delete_retention_ms -1
We can also propose an alternative that is more intuitive:
rpk cluster config set delete_retention_ms=-1
The text was updated successfully, but these errors were encountered:
set
Successfully merging a pull request may close this issue.
Currently the syntax goes:
rpk cluster config set <parameter> <value>
This doesn't work for when the value is a negative number, because of how POSIX flags commonly work.
The following does work:
rpk cluster config set -- delete_retention_ms -1
We can also propose an alternative that is more intuitive:
rpk cluster config set delete_retention_ms=-1
The text was updated successfully, but these errors were encountered: