You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to run install-oss-hlf.yml ansible playbook to install operator and console, however under arch it doesn't allow me to add arm64
fatal: [localhost]: FAILED! => {"changed": false, "msg": "arch not specified or is not one of "amd64""}
The text was updated successfully, but these errors were encountered:
norhan-ali-araba
changed the title
amr64 architecture is not supported in ansible playbooks
ARM64 architecture is not supported in ansible playbooks
Feb 27, 2024
In some places in the code, beta.kubernetes.io/arch should be replaced with kubernetes.io/arch.
Finally, the playbooks are configured to use ghcr.io/ibm-blockchain/fabric-deployer:latest-amd64 by default. That repo is archived and the image has not been changed in 2 years, but the source code is now part of the fabric-operations-console repo. A new image can manually be created like this:
git clone [email protected]:hyperledger-labs/fabric-operations-console.git
cd fabric-operations-console/packages/fabric-deployer
export IMAGE=new-repository/fabric-deployer
GO_VER=1.20.12-5 make image
make image-push
Of course it would be better if that image is built as part of the fabric-operations-console CI pipeline.
Are the maintainers of the fabric-ansible-collection open to these updates, provided there will be multi-arch images for the deployer?
I was trying to run install-oss-hlf.yml ansible playbook to install operator and console, however under arch it doesn't allow me to add arm64
fatal: [localhost]: FAILED! => {"changed": false, "msg": "arch not specified or is not one of "amd64""}
The text was updated successfully, but these errors were encountered: