Skip to content
New issue

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

Add default wave files #881

Merged
merged 1 commit into from
Apr 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion sources/updater/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ If the calculated time has not passed yet, Updog returns the update timestamp to

Assuming all the requirements are met, Updog requests the update images from the TUF repository and writes them to the "inactive" partition.

For more information on what's Updog see [Updog](updog/)
For more information on what's Updog see [Updog](updog/).
For more information about update waves see [Waves](waves/).

## Signpost
Once an update has been successfully written to the inactive partition, Updog calls the Signpost utility.
This updates the priority bits in the GUID partition table of each partition and swaps the "active" and "inactive" partitions.
Expand Down
39 changes: 39 additions & 0 deletions sources/updater/waves/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Update waves

As mentioned in the [Bottlerocket update overview](../README.md), OS updates can include "waves" for staggered deployment.
These waves are defined in the `manifest.json`, which lives in the TUF repository.
Each time an OS update is made available, `manifest.json` is updated with the information pertinent to that update using [updata](../updog) or its related libraries.
Waves may be supplied to `updata` on the command line, passed as a TOML-formatted file.

This directory contains a few examples of these update wave files.
Specific details are encapsulated in each file, but they are:

* `default-waves.toml`: A "normal" deployment
* `accelerated-waves.toml`: An accelerated deployment
* `ohno.toml`: An extremely accelerated deployment in case of emergency.

## Understanding the concept of waves

Waves include a *seed* and a *start time*.

Each Bottlerocket node generates a "seed" for itself which is simply a number between 0-2048 that determines where it falls in the update order.
Nodes that have a seed within the current wave will update.
All waves include the seeds of the prior wave, so if a node misses its wave for whatever reason, it still updates at a later time.

## Writing wave files

Wave files must be [valid TOML](https://github.com/toml-lang/toml) containing a list of `[[wave]]` entries.
Waves defined in these files must contain two keys, `start_after` and `fleet_percentage`.

`start_after` must be:

* a valid RFC3339 formatted string OR
* a string like `"7 days"` or `"2 hours"`. Additional details about valid strings can be found [here](../../parse-datetime)

It represents an offset of time starting from when the operator updates the `manifest.json` file, NOT an offset starting at the time `manifest.json` is uploaded to S3. In simple terms, it is "now" plus whatever time period is specified.

`fleet_percentage` must be an unsigned integer from 1 to 100.
It represents the desired total percentage of the fleet to be updated by the time this wave is over.
This percentage maps directly to the seed value; it's the percentage of the maximum seed, 2048.

Please see the files in this directory for proper examples.
18 changes: 18 additions & 0 deletions sources/updater/waves/accelerated-waves.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# The following represents an "accelerated" set of update waves for a much
# quicker deployment. The deployment lasts for 1 day, and quickly increases the
# nodes updated at once.
[[wave]]
start_after = '1 hour'
fleet_percentage = 3

[[wave]]
start_after = '4 hours'
fleet_percentage = 12

[[wave]]
start_after = '8 hours'
fleet_percentage = 50

[[wave]]
start_after = '1 day'
fleet_percentage = 100
22 changes: 22 additions & 0 deletions sources/updater/waves/default-waves.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# The following represents a "normal" set of update waves for a typical
# deployment. The deployment lasts for 6 days, and gradually increases the
# nodes updated at once.
[[wave]]
start_after = '1 hour'
fleet_percentage = 1

zmrow marked this conversation as resolved.
Show resolved Hide resolved
[[wave]]
start_after = '4 hours'
fleet_percentage = 5

[[wave]]
start_after = '1 day'
fleet_percentage = 10

[[wave]]
start_after = '3 days'
fleet_percentage = 25

[[wave]]
start_after = '6 days'
fleet_percentage = 100
14 changes: 14 additions & 0 deletions sources/updater/waves/ohno.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# The following represents an "emergency" set of update waves for a rapid
# deployment. The deployment lasts for 3 hours, with a small initial wave,
# and then all nodes will be updated after the first hour.
[[wave]]
start_after = '1 hour'
fleet_percentage = 5

zmrow marked this conversation as resolved.
Show resolved Hide resolved
[[wave]]
start_after = '2 hours'
fleet_percentage = 25

[[wave]]
start_after = '3 hours'
fleet_percentage = 100