v1.24.0
Support for arm64
In Ansible & Helm-based operators, if you need to support arm64
, add the following
| sed 's/aarch64/arm64/'
on the following line
ARCH := $(shell uname -m | sed 's/x86_64/amd64/')
The resulting line should look like this
ARCH := $(shell uname -m | sed 's/x86_64/amd64/' | sed 's/aarch64/arm64/')
See #5480 for more details.
Last modified October 10, 2022: Release v1.24.0 (#6071) (de6a14d0)