curator/repomgrcli.py [456:491]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
)
@click.option(
    '--compress/--no-compress',
    default=True,
    show_default=True,
    help='Enable/Disable metadata compression.',
)
@click.option(
    '--chunk_size', type=str, help='Chunk size, e.g. 1g, 10m, 5k. [unbounded]'
)
@click.option(
    '--max_snapshots',
    default=2147483647,
    type=int,
    help=(
        'Maximum number of snapshots the repository can contain. '
        'Defaults to Integer.MAX_VALUE, which is 2147483647.'
    ),
)
@click.option(
    '--max_restore_rate',
    type=str,
    default='20mb',
    show_default=True,
    help='Throttles per node restore rate (per second).',
)
@click.option(
    '--max_snapshot_rate',
    type=str,
    default='20mb',
    show_default=True,
    help='Throttles per node snapshot rate (per second).',
)
@click.option('--readonly', is_flag=True, help='If set, the repository is read-only.')
@click.option('--verify', is_flag=True, help='Verify repository after creation.')
@click.pass_context
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



curator/repomgrcli.py [614:649]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
)
@click.option(
    '--compress/--no-compress',
    default=True,
    show_default=True,
    help='Enable/Disable metadata compression.',
)
@click.option(
    '--chunk_size', type=str, help='Chunk size, e.g. 1g, 10m, 5k. [unbounded]'
)
@click.option(
    '--max_snapshots',
    default=2147483647,
    type=int,
    help=(
        'Maximum number of snapshots the repository can contain. '
        'Defaults to Integer.MAX_VALUE, which is 2147483647.'
    ),
)
@click.option(
    '--max_restore_rate',
    type=str,
    default='20mb',
    show_default=True,
    help='Throttles per node restore rate (per second).',
)
@click.option(
    '--max_snapshot_rate',
    type=str,
    default='20mb',
    show_default=True,
    help='Throttles per node snapshot rate (per second).',
)
@click.option('--readonly', is_flag=True, help='If set, the repository is read-only.')
@click.option('--verify', is_flag=True, help='Verify repository after creation.')
@click.pass_context
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



