diff options
| -rw-r--r-- | README.md | 5 | ||||
| -rw-r--r-- | docs/sample-environment.yml | 2 | ||||
| -rw-r--r-- | iso.yml | 2 |
3 files changed, 2 insertions, 7 deletions
@@ -66,11 +66,6 @@ Currently there is a known issue, ```cockpit-ws``` is having issues installing p The default tag used for ```centos-bootc``` is referenced in ```templates/bootcblade.containerfile.j2``` - its possible that there was a kernel update, or a release update, that breaks ZFS. Usually these issues are transient and resolve on their own. If you need a build now (perhaps for a fresh system) you can try and see if there is an older release (tag) from the upstream repo, and adjust it using the ```bootc_image_tag``` variable. [https://quay.io/repository/centos-bootc/centos-bootc?tab=tags&tag=latest](https://quay.io/repository/centos-bootc/centos-bootc?tab=tags&tag=latest) -[https://quay.io/repository/fedora/fedora-bootc?tab=tags](https://quay.io/repository/fedora/fedora-bootc?tab=tags) - -## Tweaking -### Fedora -You can use the branch ```fedora``` to deploy or build Fedora Server. ## Variable Usage This is a description of each variable, what it does, and a table to determine when it is needed. diff --git a/docs/sample-environment.yml b/docs/sample-environment.yml index 8903957..81e4811 100644 --- a/docs/sample-environment.yml +++ b/docs/sample-environment.yml @@ -21,5 +21,5 @@ all: create_user_ssh_pub: "ssh-rsa <ssh key>" bootc_image_tag: "40" bootc_acknowledge: false -# This is a local run only, useful for creating ISOs and perhaps running update.yml. The fedora-bootc:tag can be specified here, using an earlier version. +# This is a local run only, useful for creating ISOs and perhaps running update.yml. The centos-bootc:tag can be specified here, using an earlier version. # Because this version is before the need for an acknowledgement during bootc deployment, we can override and remove that from the command. @@ -38,5 +38,5 @@ tags: cleanup - name: Cleanup images - ansible.builtin.shell: "podman image rm localhost/bootcblade ; podman image rm quay.io/centos-bootc/bootc-image-builder ; podman image rm quay.io/fedora/fedora-bootc:{{ bootc_image_tag if bootc_image_tag is defined else 'latest' }} ; podman image prune -f" + ansible.builtin.shell: "podman image rm localhost/bootcblade ; podman image rm quay.io/centos-bootc/bootc-image-builder ; podman image rm quay.io/centos-bootc/centos-bootc:{{ bootc_image_tag if bootc_image_tag is defined else 'latest' }} ; podman image prune -f" tags: cleanup |
