Skip to content

Commit

Permalink
fix: add missing download CLI tool link for ppc64le, s390x (#9649)
Browse files Browse the repository at this point in the history
Signed-off-by: Hyeonmin Park <[email protected]>
  • Loading branch information
KENNYSOFT authored and crenshaw-dev committed Jul 12, 2022
1 parent f7f7493 commit f09c84f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/operator-manual/argocd-cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ data:
# The URLs to download additional ArgoCD binaries (besides the Linux amd64 binary included by default)
# for different OS architectures. If provided, additional download buttons will be displayed on the help page.
help.download.linux-arm64: "path-or-url-to-download"
help.download.linux-ppc64le: "path-or-url-to-download"
help.download.linux-s390x: "path-or-url-to-download"
help.download.darwin-amd64: "path-or-url-to-download"
help.download.darwin-arm64: "path-or-url-to-download"
help.download.windows-amd64: "path-or-url-to-download"
Expand Down
2 changes: 1 addition & 1 deletion ui/src/app/help/components/help.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const Help = () => {
&nbsp;
{Object.keys(binaryUrls || {}).map(binaryName => {
const url = binaryUrls[binaryName];
const match = binaryName.match(/.*(darwin|windows|linux)-(amd64|arm64)/);
const match = binaryName.match(/.*(darwin|windows|linux)-(amd64|arm64|ppc64le|s390x)/);
const [platform, arch] = match ? match.slice(1) : ['', ''];
return (
<>
Expand Down

0 comments on commit f09c84f

Please sign in to comment.