-
Notifications
You must be signed in to change notification settings - Fork 11
Update QuickStart to build the rocky-8 image locally using podman, create a tarball, and import the container using tar archive #21
base: main
Are you sure you want to change the base?
Conversation
Thanks for this @odidev it looks good. Feedback from the call today is that we should aim for simplicity during the quick start. I would also like to see a single flow that works on any of the supported architectures. Can you look into changing the line: Is it possible to actually use this docker file: |
Thank you for the response. We might not be able to install and use the docker service on RHEL for the ARM64 platform, since docker on RHEL is only supported on s390x. Here is the official Docker statement to justify the same: https://docs.docker.com/engine/install/rhel/#prerequisites As an alternative, I built rockylinux-8 docker image on the Ubuntu ARM64 platform successfully and pushed it to my personal DockerHub account. Now, I imported the image as follows, and created the node successfully on the ARM64 RHEL8 bare metal AWS instance:
Below are my node details:
Further, PXE boot progressed and reached the login.
Kindly find here the complete PXE boot logs: pxe_boot_metal_arm64_with_newnet.txt So, IMO, an official Linux/ARM64 docker image for rockylinux must be available at warewulf Docker hub. We can then import it and create containers for nodes. |
Ok, good progress. I think rocky is a fine substitute for RHEL in this case. I think docker is creating a local container before the push. I expect warewulf can import a local container. Can you see if you can avoid the 'push to docker hub' step? |
Since we know that RHEL-8 only supports docker for s390x, I found On my Linux/ARM64 RHEL-8 AWS bare-metal instance, I installed Then I created a tar archive for that image in /tmp, and imported the container as below:
This successfully imported the basic VNFS container and the kernel. Nodes got created and PXE boot progressed in the same way as mentioned in my previous comment. IMO, this would be a utilitarian way if docker images are not available for the host architecture/platform. I have prepared a commit that includes the above-mentioned steps. Kindly have a look: < odidev@002d257 > If this looks good, I will amend this PR accordingly. |
@rhenwood-arm , can you please review the changes shared in the previous comment. Let me know if I should amend this PR in accordance with the commit I shared. |
Sorry for the delay... I would like to avoid using Is it possible to import the newly built container from |
As I shared above, docker has been removed from dnf in RHEL8 and RockyLinux. So, docker is not available by-default in RHEL8/Rocky dnf/yum. However, we can explicitly add docker into dnf repository using
I have successfully installed docker on my RHEL8 ARM64 METAL AWS instance and built rocky-8 docker image. I then created a tarball for my rocky-8 image and used that tar to import the container. So, we can replace podman with docker now. Can you please suggest to me if we should add RHEL-8 docker installation steps in the Quickstart or not? I will amend the PR accordingly. |
Hi @rhenwood-arm , if the above analysis looks good, should I amend the PR to install docker first, build the image, and then use the tarball to import the container? |
…eate a tarball, and import the container using tar archive Signed-off-by: odidev <[email protected]>
I have amended the PR to build image locally using |
Hello, any updates on when this PR could get reviewed? |
Following file has been modified :
el8.md: Added a new topic to include "Building a container from your host". It helps to build images for host platforms whose docker images are not available.
Signed-off-by: odidev [email protected]