aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspmfox <spmfox@foxwd.com>2024-06-18 10:59:38 -0400
committerspmfox <spmfox@foxwd.com>2024-06-18 10:59:38 -0400
commit46e6e9dee8eb2fa7106d89871e1d19c838d4c355 (patch)
tree1ba83aa46dcfcfb7b4df2d6409524ff779390157
parent7d36ea84bb5b0746e1eb440ef2033ef854946f6f (diff)
removing all support for fedora - focusing on one distro
-rw-r--r--README.md5
-rw-r--r--docs/sample-environment.yml2
-rw-r--r--iso.yml2
3 files changed, 2 insertions, 7 deletions
diff --git a/README.md b/README.md
index 84bea14..57adbfc 100644
--- a/README.md
+++ b/README.md
@@ -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.
diff --git a/iso.yml b/iso.yml
index d3cc90e..31aef25 100644
--- a/iso.yml
+++ b/iso.yml
@@ -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