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 \
93
93
&& chown -R ${USER_UID}:0 ${HOME} \
94
94
&& chmod -R ug+rwx ${HOME}
95
95
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) \
97
97
&& curl -L -o /tini https://github.com/krallin/tini/releases/latest/download/tini-$TINIARCH \
98
98
&& chmod +x /tini
99
99
You can’t perform that action at this time.
0 commit comments