mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-24 03:38:04 +00:00
* Dockerize it * Default chart layout * Installable * Starts and loads * Progressing * Hide cluster block * Add scanners * Add icon for helm chart (#130) Co-authored-by: Harshit Mehta <harshitm@nvidia.com> * Image build and push scripts * Build local img * Local img * ci stuff * ci and chart changes * add readme * modify readme * move readme location * update docs and delete file * remove file * allow write actions * allow write actions * update .gitignore * update readme * delete file * add persistence and update documentation * update logo * update volume paths and documentation * change pvc size * Comment Co-authored-by: Harshit Mehta <hdm23061993@gmail.com> Co-authored-by: Harshit Mehta <harshitm@nvidia.com> Co-authored-by: ronahk <rona@komodor.io>
70 lines
1.9 KiB
Bash
Executable File
70 lines
1.9 KiB
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Copied w/ love from the chartmuseum/helm-push :)
|
|
|
|
name="helm-dashboard"
|
|
repo="https://github.com/komodorio/${name}"
|
|
|
|
if [ -n "${HELM_PUSH_PLUGIN_NO_INSTALL_HOOK}" ]; then
|
|
echo "Development mode: not downloading versioned release."
|
|
exit 0
|
|
fi
|
|
|
|
version="$(cat plugin.yaml | grep "version" | cut -d '"' -f 2)"
|
|
# TODO: if no version provided, get it from https://api.github.com/repos/komodorio/helm-dashboard/releases/latest
|
|
echo "Downloading and installing ${name} v${version} ..."
|
|
|
|
url=""
|
|
|
|
# convert architecture of the target system to a compatible GOARCH value.
|
|
# Otherwise failes to download of the plugin from github, because the provided
|
|
# architecture by `uname -m` is not part of the github release.
|
|
arch=""
|
|
case $(uname -m) in
|
|
x86_64)
|
|
arch="x86_64"
|
|
;;
|
|
armv6*)
|
|
arch="armv6"
|
|
;;
|
|
# match every arm processor version like armv7h, armv7l and so on.
|
|
armv7*)
|
|
arch="armv7"
|
|
;;
|
|
aarch64 | arm64)
|
|
arch="arm64"
|
|
;;
|
|
*)
|
|
echo "Failed to detect target architecture"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
|
|
if [ "$(uname)" = "Darwin" ]; then
|
|
url="${repo}/releases/download/v${version}/${name}_${version}_Darwin_${arch}.tar.gz"
|
|
elif [ "$(uname)" = "Linux" ] ; then
|
|
url="${repo}/releases/download/v${version}/${name}_${version}_Linux_${arch}.tar.gz"
|
|
else
|
|
url="${repo}/releases/download/v${version}/${name}_${version}_windows_${arch}.tar.gz"
|
|
fi
|
|
|
|
echo $url
|
|
|
|
mkdir -p "bin"
|
|
mkdir -p "releases/v${version}"
|
|
|
|
# Download with curl if possible.
|
|
if [ -x "$(which curl 2>/dev/null)" ]; then
|
|
curl --fail -sSL "${url}" -o "releases/v${version}.tar.gz"
|
|
else
|
|
wget -q "${url}" -O "releases/v${version}.tar.gz"
|
|
fi
|
|
tar xzf "releases/v${version}.tar.gz" -C "releases/v${version}"
|
|
mv "releases/v${version}/${name}" "bin/${name}" || \
|
|
mv "releases/v${version}/${name}.exe" "bin/${name}"
|
|
|
|
echo
|
|
echo "Helm Dashboard is installed, to start it, run in your terminal:"
|
|
echo " helm dashboard"
|
|
echo |