diff --git a/flyctl/cmd/fly_machine_create.md b/flyctl/cmd/fly_machine_create.md index f11a307724..c6ba028eb7 100644 --- a/flyctl/cmd/fly_machine_create.md +++ b/flyctl/cmd/fly_machine_create.md @@ -37,8 +37,9 @@ fly machine create [command] [flags] --restart string Set the restart policy for a Machine. Options include 'no', 'always', and 'on-fail'. Default is 'on-fail' for Machines created by 'fly deploy' and Machines with a schedule. Default is 'always' for Machines created by 'fly m run'. --rm Automatically remove the Machine when it exits. Sets the restart-policy to 'never' if not otherwise specified. + --rootfs-fs-size string Root filesystem size in GB. Accepts a plain number (in GB) or a human-readable size (e.g. 2gb, 5gb). Sets the size of the filesystem itself, independent of the rootfs volume size. Set to 0 to unset. --rootfs-persist string Whether to persist the root filesystem across restarts. Options include 'never', 'always', and 'restart'. - --rootfs-size int Root filesystem size in GB. Uses an overlayfs to allow the root filesystem to exceed its default size. + --rootfs-size string Root filesystem size in GB. Accepts a plain number (in GB) or a human-readable size (e.g. 2gb, 5gb). Uses an overlayfs to allow the root filesystem to exceed its default size. Set to 0 to unset. --schedule string Schedule a Machine run at hourly, daily, weekly and monthly intervals --skip-dns-registration Do not register the machine's 6PN IP with the internal DNS system --standby-for strings For Machines without services, a comma separated list of Machine IDs to act as standby for. diff --git a/flyctl/cmd/fly_machine_run.md b/flyctl/cmd/fly_machine_run.md index 0f308dc851..d6881e2b8e 100644 --- a/flyctl/cmd/fly_machine_run.md +++ b/flyctl/cmd/fly_machine_run.md @@ -39,8 +39,9 @@ fly machine run [command] [flags] --restart string Set the restart policy for a Machine. Options include 'no', 'always', and 'on-fail'. Default is 'on-fail' for Machines created by 'fly deploy' and Machines with a schedule. Default is 'always' for Machines created by 'fly m run'. --rm Automatically remove the Machine when it exits. Sets the restart-policy to 'never' if not otherwise specified. + --rootfs-fs-size string Root filesystem size in GB. Accepts a plain number (in GB) or a human-readable size (e.g. 2gb, 5gb). Sets the size of the filesystem itself, independent of the rootfs volume size. Set to 0 to unset. --rootfs-persist string Whether to persist the root filesystem across restarts. Options include 'never', 'always', and 'restart'. - --rootfs-size int Root filesystem size in GB. Uses an overlayfs to allow the root filesystem to exceed its default size. + --rootfs-size string Root filesystem size in GB. Accepts a plain number (in GB) or a human-readable size (e.g. 2gb, 5gb). Uses an overlayfs to allow the root filesystem to exceed its default size. Set to 0 to unset. --schedule string Schedule a Machine run at hourly, daily, weekly and monthly intervals --shell Open a shell on the Machine once created (implies --it --rm). If no app is specified, a temporary app is created just for this Machine and destroyed when the Machine is destroyed. See also --command and --user. --skip-dns-registration Do not register the machine's 6PN IP with the internal DNS system diff --git a/flyctl/cmd/fly_machine_update.md b/flyctl/cmd/fly_machine_update.md index ef853e61d7..cc6d9d2090 100644 --- a/flyctl/cmd/fly_machine_update.md +++ b/flyctl/cmd/fly_machine_update.md @@ -37,8 +37,9 @@ fly machine update [machine_id] [flags] To remove a port mapping use '-' as handler. For example: --port 80/tcp:- --restart string Set the restart policy for a Machine. Options include 'no', 'always', and 'on-fail'. Default is 'on-fail' for Machines created by 'fly deploy' and Machines with a schedule. Default is 'always' for Machines created by 'fly m run'. + --rootfs-fs-size string Root filesystem size in GB. Accepts a plain number (in GB) or a human-readable size (e.g. 2gb, 5gb). Sets the size of the filesystem itself, independent of the rootfs volume size. Set to 0 to unset. --rootfs-persist string Whether to persist the root filesystem across restarts. Options include 'never', 'always', and 'restart'. - --rootfs-size int Root filesystem size in GB. Uses an overlayfs to allow the root filesystem to exceed its default size. + --rootfs-size string Root filesystem size in GB. Accepts a plain number (in GB) or a human-readable size (e.g. 2gb, 5gb). Uses an overlayfs to allow the root filesystem to exceed its default size. Set to 0 to unset. --schedule string Schedule a Machine run at hourly, daily, weekly and monthly intervals --skip-dns-registration Do not register the machine's 6PN IP with the internal DNS system --skip-health-checks Updates machine without waiting for health checks. diff --git a/flyctl/cmd/fly_redis_create.md b/flyctl/cmd/fly_redis_create.md index bf1f69098c..078b8541c6 100644 --- a/flyctl/cmd/fly_redis_create.md +++ b/flyctl/cmd/fly_redis_create.md @@ -9,11 +9,14 @@ fly redis create [flags] ~~~ --disable-eviction Disallow writes when the max data size limit has been reached + --enable-auto-upgrade Automatically upgrade to a higher plan when hitting resource limits --enable-eviction Evict objects when memory is full + --enable-prodpack Enable ProdPack add-on for additional features ($200/mo) -h, --help help for create -n, --name string The name of your Redis database --no-replicas Don't prompt for selecting replica regions -o, --org string The target Fly.io organization + --plan string The plan for your Redis database (default: pay-as-you-go) -r, --region string The target region (see 'flyctl platform regions') --replica-regions string Comma-separated list of regions to deploy read replicas (see 'flyctl platform regions') ~~~