Skip to content

Commit

Permalink
Merge pull request #5 from devcontainers-extra/fix/netdata
Browse files Browse the repository at this point in the history
fix(netdata): update URL for installation script
  • Loading branch information
koralowiec authored Sep 13, 2024
2 parents c5b78f5 + 36b75c4 commit c0eb634
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions src/netdata/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,16 @@ source ./library_scripts.sh

# nanolayer is a cli utility which keeps container layers as small as possible
# source code: https://github.com/devcontainers-contrib/nanolayer
# `ensure_nanolayer` is a bash function that will find any existing nanolayer installations,
# and if missing - will download a temporary copy that automatically get deleted at the end
# `ensure_nanolayer` is a bash function that will find any existing nanolayer installations,
# and if missing - will download a temporary copy that automatically get deleted at the end
# of the script
ensure_nanolayer nanolayer_location "v0.4.29"


$nanolayer_location \
install \
devcontainer-feature \
"ghcr.io/devcontainers-contrib/features/curl-apt-get:1.0.7" \



curl https://my-netdata.io/kickstart.sh > /tmp/netdata-kickstart.sh && sh /tmp/netdata-kickstart.sh --no-updates --stable-channel --disable-telemetry && rm /tmp/netdata-kickstart.sh
"ghcr.io/devcontainers-contrib/features/curl-apt-get:1.0.7"

curl https://get.netdata.cloud/kickstart.sh >/tmp/netdata-kickstart.sh &&
sh /tmp/netdata-kickstart.sh --no-updates --stable-channel --disable-telemetry &&
rm /tmp/netdata-kickstart.sh

0 comments on commit c0eb634

Please sign in to comment.