File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
internal/scaffold/ansible Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1+ entries :
2+ - description : >
3+ Fix the download URL for the `tini` binary on ARM64 for the ansible
4+ operator base image
5+ kind: "bugfix"
6+ breaking: false
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ RUN mkdir -p ${HOME}/.ansible/tmp \
9393 && chown -R ${USER_UID}:0 ${HOME} \
9494 && chmod -R ug+rwx ${HOME}
9595
96- RUN TINIARCH=$(case $(arch) in x86_64) echo -n amd64 ;; ppc64le) echo -n ppc64el ;; *) echo -n $(arch) ;; esac) \
96+ RUN TINIARCH=$(case $(arch) in x86_64) echo -n amd64 ;; ppc64le) echo -n ppc64el ;; aarch64) echo -n arm64 ;; *) echo -n $(arch) ;; esac) \
9797 && curl -L -o /tini https://github.com/krallin/tini/releases/latest/download/tini-$TINIARCH \
9898 && chmod +x /tini
9999
You can’t perform that action at this time.
0 commit comments