Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Change "delete" to "disable"

...

Code Block
usage: kafka-features [-h] {describe, upgrade, downgrade, deletedisable}

Options
-------
-h, --help             Show this help message and exit

Commands
--------
describe               Describe one or more feature flags
upgrade                Upgrade one or more feature flags to the given version(s)
downgrade              Downgrade one or more feature flags to the given version(s)
deletedisable                Disable Delete (unset) one or more feature flags

...

Send an UpdateFeaturesRequest to the controller for the given feature FEATURE to downgrade its version to VERSION. Only apply this downgrade if it is considered “safe” by the controller, or the --unsafe flag is given. Details on unsafe downgrades are detailed in the "Downgrades" section below.

./kafka-features.sh delete disable --feature FEATURE [--unsafe, --dry-run]

Send an UpdateFeaturesRequest to the controller to delete disable the given feature FEATURE.

...