Skip to content

Commit 12e54d7

Browse files
committed
Upgrade to Debian 11(Bullseye) everywhere
Signed-off-by: Tony Fang <[email protected]>
1 parent 5569cbe commit 12e54d7

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

docs/quickstart.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ files into `/usr/local/bin`.
1515
1. Get an AWS account (see
1616
[this article](https://aws.amazon.com/premiumsupport/knowledge-center/create-and-activate-aws-account/)
1717
if you need help creating one)
18-
2. Launch an i3.metal instance running Debian Buster (you can find it in the
19-
[AWS marketplace](https://aws.amazon.com/marketplace/pp/B0859NK4HC) or
20-
on [this page](https://wiki.debian.org/Cloud/AmazonEC2Image/Buster).
18+
2. Launch an i3.metal instance running Debian Bullseye (you can find it in the
19+
[AWS marketplace](https://aws.amazon.com/marketplace/pp/prodview-l5gv52ndg5q6i) or
20+
on [this page](https://wiki.debian.org/Cloud/AmazonEC2Image/Bullseye).
2121
If you need help launching an EC2 instance, see the
2222
[EC2 getting started guide](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EC2_GetStarted.html).
2323
3. Run the script below to download and install all the required dependencies on a debian based instance.
@@ -30,8 +30,8 @@ cd ~
3030

3131
# Install git, Go 1.16, make, curl
3232
sudo mkdir -p /etc/apt/sources.list.d
33-
echo "deb http://ftp.debian.org/debian buster-backports main" | \
34-
sudo tee /etc/apt/sources.list.d/buster-backports.list
33+
echo "deb http://ftp.debian.org/debian bullseye-backports main" | \
34+
sudo tee /etc/apt/sources.list.d/bullseye-backports.list
3535
sudo DEBIAN_FRONTEND=noninteractive apt-get update
3636
sudo DEBIAN_FRONTEND=noninteractive apt-get \
3737
install --yes \

tools/docker/Dockerfile.proto-builder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# express or implied. See the License for the specific language governing
1212
# permissions and limitations under the License.
1313

14-
FROM golang:1.17-stretch
14+
FROM golang:1.17-bullseye
1515

1616
RUN apt-get update && apt-get install --yes --no-install-recommends \
1717
libprotobuf-dev \

tools/docker/Dockerfile.runc-builder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# express or implied. See the License for the specific language governing
1212
# permissions and limitations under the License.
1313

14-
FROM golang:1.17-stretch
14+
FROM golang:1.17-bullseye
1515

1616
RUN apt-get update && \
1717
DEBIAN_FRONTEND=noninteractive apt-get -y install libseccomp-dev pkg-config

tools/image-builder/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Alternatively, to build outside a container, you'll need:
4646
* [`debootstrap`](https://salsa.debian.org/installer-team/debootstrap)
4747
(Install via the package of the same name on Debian and Ubuntu)
4848
* `mksquashfs`, available in the
49-
[`squashfs-tools`](https://packages.debian.org/stretch/squashfs-tools)
49+
[`squashfs-tools`](https://packages.debian.org/bullseye/squashfs-tools)
5050
package on Debian and Ubuntu.
5151
* To run the image build process as root.
5252

@@ -79,7 +79,7 @@ A complete command line, settable via the `kernel_args` setting in `/etc/contain
7979

8080
In order to ensure sufficient entropy is consistently available within
8181
the VM, the rootfs is configured to start the
82-
[`haveged`](https://manpages.debian.org/buster/haveged/haveged.8.en.html)
82+
[`haveged`](https://manpages.debian.org/bullseye/haveged/haveged.8.en.html)
8383
daemon during boot. [More information on its method of operation and other
8484
details can be found in its FAQ](https://issihosts.com/haveged/faq.html).
8585
Users of the image created by this utility are encouraged to evaluate

0 commit comments

Comments
 (0)