From e05117d6a2d1bae9dd8f8d6b3db879bb43749d32 Mon Sep 17 00:00:00 2001 From: this-is-tobi Date: Sun, 19 Nov 2023 16:00:34 +0100 Subject: [PATCH] docs: update installation doc to improve compatibility Signed-off-by: this-is-tobi --- docs/installation.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index e68fb532..4a2e8250 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -80,11 +80,12 @@ spec: # Note the lack of the `v` prefix unlike the git tag env: - name: AVP_VERSION - value: "1.16.2" + value: "1.17.0" args: - >- + OS="$(uname | tr '[:upper:]' '[:lower:]')" && [ "$(uname -m)" = "aarch64" ] && ARCH="arm64" || ARCH="amd64" && wget -O argocd-vault-plugin - https://github.com/argoproj-labs/argocd-vault-plugin/releases/download/v${AVP_VERSION}/argocd-vault-plugin_${AVP_VERSION}_linux_amd64 && + https://github.com/argoproj-labs/argocd-vault-plugin/releases/download/v${AVP_VERSION}/argocd-vault-plugin_${AVP_VERSION}_${OS}_${ARCH} && chmod +x argocd-vault-plugin && mv argocd-vault-plugin /custom-tools/ volumeMounts: