Skip to content

Commit c2106b4

Browse files
authored
Merge pull request #756 from yeazelm/fix_waves_link
docs: update link to waves examples
2 parents d298e57 + f42ed9b commit c2106b4

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ When installed, the Bottlerocket update operator starts a controller deployment
55
The controller orchestrates updates across your cluster, while the agent is responsible for periodically querying for Bottlerocket updates, draining the node, and performing the update when asked by the controller.
66
The agent performs all cluster object mutation operations via the API Server, which performs additional authorization using the Kubernetes TokenReview API -- ensuring that any request associated with a node is being made by the agent pod running on that node.
77
Further, `cert-manager` is required in order for the API server to use a CA certificate to communicate over SSL with the agents.
8-
Updates to Bottlerocket are rolled out in [waves](https://github.com/bottlerocket-os/bottlerocket/tree/develop/sources/updater/waves) to reduce the impact of issues; the nodes in your cluster may not all see updates at the same time.
8+
Updates to Bottlerocket are rolled out in [waves](https://github.com/bottlerocket-os/twoliter/tree/develop/twoliter/embedded/waves) to reduce the impact of issues; the nodes in your cluster may not all see updates at the same time.
99

1010
For a deep dive on installing Brupop, how it works, and its integration with Bottlerocket, [check out this design deep dive document!](./design/1.0.0-release.md)
1111

@@ -659,7 +659,7 @@ An in depth discussion on [building your own TUF repos can be found in the core
659659

660660
### Why do only some of my Bottlerocket instances have an update available?
661661

662-
Updates to Bottlerocket are rolled out in [waves](https://github.com/bottlerocket-os/bottlerocket/tree/develop/sources/updater/waves) to reduce the impact of issues; the container instances in your cluster may not all see updates at the same time.
662+
Updates to Bottlerocket are rolled out in [waves](https://github.com/bottlerocket-os/twoliter/tree/develop/twoliter/embedded/waves) to reduce the impact of issues; the container instances in your cluster may not all see updates at the same time.
663663
You can check whether an update is available on your instance by running the `apiclient update check` command from within the [control](https://github.com/bottlerocket-os/bottlerocket#control-container) or [admin](https://github.com/bottlerocket-os/bottlerocket#admin-container) container.
664664

665665
### Why do new container instances launch with older Bottlerocket versions?

apiserver/src/client/webclient.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ use crate::{
88
};
99
use async_trait::async_trait;
1010
use models::{
11-
constants::{APISERVER_SERVICE_NAME, CA_NAME, KUBERNETES_SERVICE_CLUSTER_DOMAIN, TLS_KEY_MOUNT_PATH},
11+
constants::{
12+
APISERVER_SERVICE_NAME, CA_NAME, KUBERNETES_SERVICE_CLUSTER_DOMAIN, TLS_KEY_MOUNT_PATH,
13+
},
1214
node::{BottlerocketShadow, BottlerocketShadowSelector, BottlerocketShadowStatus},
1315
};
1416
use snafu::ResultExt;

0 commit comments

Comments
 (0)