Mass rename tier-1/boot => bootc

This commit is contained in:
Liora Milbaum 2023-11-22 06:53:08 +02:00
commit 03033108a5
12 changed files with 50 additions and 39 deletions

View file

@ -1,6 +1,6 @@
title: centos/centos-boot
description: centos-boot documentation
baseurl: "/centos-boot"
title: centos/centos-bootc
description: centos-bootc documentation
baseurl: "/centos-bootc"
url: "https://centos.github.io"
# Comment above and use below for local development
# url: "http://localhost:4000"
@ -32,10 +32,10 @@ color_scheme: coreos
# Aux links for the upper right navigation
aux_links:
"centos-boot on GitHub":
- "https://github.com/centos/centos-boot"
"centos-bootc on GitHub":
- "https://github.com/centos/centos-bootc"
footer_content: "Copyright &copy; <a href=\"https://www.redhat.com\">Red Hat, Inc.</a> and <a href=\"https://github.com/containers\">others</a>."
footer_content: 'Copyright &copy; <a href="https://www.redhat.com">Red Hat, Inc.</a> and <a href="https://github.com/containers">others</a>.'
# Footer last edited timestamp
last_edit_timestamp: true
@ -44,7 +44,7 @@ last_edit_time_format: "%b %e %Y at %I:%M %p"
# Footer "Edit this page on GitHub" link text
gh_edit_link: true
gh_edit_link_text: "Edit this page on GitHub"
gh_edit_repository: "https://github.com/centos/centos-boot"
gh_edit_repository: "https://github.com/centos/centos-bootc"
gh_edit_branch: "main"
gh_edit_source: docs
gh_edit_view_mode: "tree"

View file

@ -8,8 +8,8 @@ part /boot/efi --size=100 --fstype=efi
part /boot --size=1000 --fstype=ext4 --label=boot
part / --grow --fstype xfs
ostreecontainer --url quay.io/centos-boot/fedora-tier-1:eln --no-signature-verification
# Or: quay.io/centos-boot/centos-tier-1-dev:stream9
ostreecontainer --url quay.io/centos-bootc/fedora-bootc:eln --no-signature-verification
# Or: quay.io/centos-bootc/centos-bootc-dev:stream9
firewall --disabled
services --enabled=sshd

View file

@ -17,13 +17,13 @@ and CentOS Stream 9.
These images are intended to exactly match the content of the underlying distribution.
- `quay.io/centos-boot/fedora-tier-1:eln`
- `quay.io/centos-boot/centos-tier-1:stream9`
- `quay.io/centos-bootc/fedora-bootc:eln`
- `quay.io/centos-bootc/centos-bootc:stream9`
### Layered images
There are also layered images; for more information on these, see
[the centos-boot-layered repository](https://github.com/CentOS/centos-boot-layered).
[the centos-bootc-layered repository](https://github.com/CentOS/centos-bootc-layered).
### Development images
@ -32,10 +32,10 @@ as they appear in git `main` instead of waiting for package releases.
The following images track git main of selected components:
- `quay.io/centos-boot/fedora-tier-1-dev:eln`
- `quay.io/centos-boot/centos-tier-1-dev:stream9`
- `quay.io/centos-bootc/fedora-bootc-dev:eln`
- `quay.io/centos-bootc/centos-bootc-dev:stream9`
For more information, see [the dev repository](https://github.com/centos/centos-boot-dev).
For more information, see [the dev repository](https://github.com/centos/centos-bootc-dev).
## Trying it out

View file

@ -4,11 +4,11 @@ nav_order: 2
# Trying out development builds
## Using fedora-boot-cloud via KVM
## Using fedora-bootc-cloud via KVM
This repository defines a cloud-agnostic base image. However, many
people who just want to "try things out" will find it easiest to start
with [the cloud image](https://github.com/CentOS/centos-boot-layered/tree/main/fedora-boot-cloud).
with [the cloud image](https://github.com/CentOS/centos-bootc-layered/tree/main/fedora-bootc-cloud).
## Operating system state (users, ssh keys)
@ -18,7 +18,7 @@ operating system content. Notably the default `tier-1` image
recommended mechanism for provisioning user accountson its own.
Commonly then you will want to build your own container image derived from e.g.
`quay.io/centos-boot/fedora-tier-1:eln` that adds a login mechanism. For
`quay.io/centos-bootc/fedora-bootc:eln` that adds a login mechanism. For
example, you could
[add cloud-init](https://gitlab.com/CentOS/cloud/sagano-examples/-/blob/main/cloud-init-base/Containerfile).
@ -88,7 +88,7 @@ custom derived image from CentOS boot.
```shell
systemctl mask --now zincati && rm -vf /run/ostree/staged-deployment-locked
echo "# dummy change" >> "/etc/sudoers.d/coreos-sudo-group"
rpm-ostree rebase ostree-unverified-registry:quay.io/centos-boot/fedora-tier-1:eln
rpm-ostree rebase ostree-unverified-registry:quay.io/centos-bootc/fedora-bootc:eln
systemctl reboot
```