Closed michaelkhalsa closed 2 months ago
1.1.0 and stable both are available at https://github.com/hyperledger/bevel/pkgs/container/bevel-build Does your network pull docker images from any other ghcr successfully?
Thanks!
I was able to work around it by adding a --platform="linux/amd64" switch to the docker run command, which then simply gave a warning (as on an arm64 Mac), but did grab the image successfully.
Please ignore the following if wrong place to ask, and I can go to discord. In the tutorial, this command is given
docker run -it -v /mnt/bevel:/home/bevel/ --network="host" ghcr.io/hyperledger/bevel-build:latest bash
However, is the source and destination switched?, as there is no mnt directory in local machine, only on the proxy. I replaced source: /mnt/bevel with $(pwd) and left destination: /home/bevel as is (because the run script refers to home/bevel in the path, and not mnt/bevel).
also added the --platform="linux/amd64" tag, which works even though wrong platform for me (on apple silicon).
This worked up to a point running the playbooks, and failed when testing the kubectl installation (main.yaml:59) The connection to the server localhost:8080 was refused
Guessing it is not using the config file specified in build directory (which is there). Maybe I started minikube from wrong directory??? I did specify the ip as a switch when starting minikube. Is there something I missed? I am new to Kubernetes and minikube. minicab ip view --> 192.168.49.2 My local machine is 192.168.68.54 (which is what I specified, also tried 127.0.0.1)
Set everything up on an old intel dell XPS with ubuntu 22.04 16gb ram, latest K8s, minikube, helm, vault 1.15, etc. And placed build, bin, config.hcl, ... in home/project/bevel (on the Mac version I placed it in home/bevel)
Everything working up to same point where it was failing on Mac (as per previous comment) when testing KubeCtl (minikube), where 'connection to the server localhost:8080 was refused.'
I bet there is something simple I missed, but not sure where to go with it.
Note: typo in the prequisites, says helm >= 3.6, but the latest version is 3.15
@michaelkhalsa were you able to get pass the issues ?
Closing this issue. Please reopen it if the issue persists
Describe the bug When following the online guide for installing HLF on Minikube on a Mac (apple silicon). everything works up to the point of fetching the bevel-build, where I get an error:
1.1.0: Pulling from hyperledger/bevel-build docker: no matching manifest for linux/arm64/v8 in the manifest list entries.
I first tried :latest, then :stable, and finally various versions. Same response.
To Reproduce Steps to reproduce the behavior:
docker run -it -v /mnt/bevel:/home/bevel/ --network="host" ghcr.io/hyperledger/bevel-build:latest bash
Expected behavior Either mention in the guide if not supported on an apple silicon Mac, or a build tagged with support for it.
Environment (please complete the following information):
Additional context Thanks for all of the work this team is doing!