summaryrefslogtreecommitdiffstats
path: root/packaging
AgeCommit message (Collapse)Author
2022-05-03Rename --install option for kickstart.sh (#12798)maneamarius
* replace --install flag with --install-prefix and update documentation * fix * minor fix
2022-05-03Remove node.d.plugin and relevant files (#12769)Suraj Neupane
* Remove node.d.plugin and relevant files * fix build packages * remove node.d related words/phrases from docs and tests
2022-05-03[ci skip] Update changelog and version for nightly build: v1.34.0-86-nightly.netdatabot
2022-05-02Add `-pipe` to CFLAGS in most cases for builds. (#12709)Austin S. Hemmelgarn
* Add `-pipe` to CFLAGS in most cases for builds. This trades marginally higher memory usage at build time (on the order of a few hundred kB in the worst case scenario) for improved build times by avoiding using temporary files for passing data from the compiler to commands it invokes. * Suppress bogus shellcheck warnings. * Fix handling of CFLAGS in netdata-installer.sh.
2022-05-02fix printing warning msg (#12781)Ilya Mashchenko
2022-04-30[ci skip] Update changelog and version for nightly build: v1.34.0-69-nightly.netdatabot
2022-04-29[ci skip] Update changelog and version for nightly build: v1.34.0-67-nightly.netdatabot
2022-04-28Tweak static build process to improve build speed and debuggability. (#12708)Austin S. Hemmelgarn
- Switch from `-O3` to `-O2` for optimization CFLAGS, bringing us in-line with all of our other builds. This should help avoid strange edge cases specific to static builds resulting from the build process. - Stop stripping binaries in static builds so that we can get proper symbolic backtraces when the agent crashes in the static builds.
2022-04-28Fix checking of enviornment files. (#12768)Austin S. Hemmelgarn
We should check that `${REINSTALL_OPTIONS}` is defined, not that it is defined to a non-empty string.
2022-04-28[ci skip] Update changelog and version for nightly build: v1.34.0-59-nightly.netdatabot
2022-04-27Treat auto-updates as a tristate internally. (#12634)Austin S. Hemmelgarn
If no options are specified, use the value `default` to indicate that the default behavior is requested. Long-term, this will allow us to easily have different defaults depending on other installation parameters. Shorter term, it allows us to explicitly indicate in telemetry events whether the user asked for auto updates, asked for no auto updates, or just went with the default.
2022-04-27Correctly propagate errors and warnings up to the kickstart script from ↵Austin S. Hemmelgarn
scripts it calls. (#12686) * Overhaul deferred error handling in netdata-installer.sh * Propagate errors from netdata-installer.sh properly to the kickstart script. * Propagate errors from netdata-updater.sh properly to the kickstart script. * Overhaul logging in uninstaller and integrate with error propagation in kickstart.sh. * Fix name of variable used for propagating warnings. * Fix handling of run_ok and run_failed with no arguments. * Fix environment file validation in updater. * Add debugging info to CI. * Properly accept empty NETDATA_PREFIX in updater. * Convert remaining unguarded unsuccessful exits in updater to use fatal. * Fix usage of `env` in updater.
2022-04-27Add options to kickstart.sh for explicitly passing options to installer ↵Austin S. Hemmelgarn
code. (#12658) Also, deprecate all existing methods of doing so.
2022-04-27[ci skip] Update changelog and version for nightly build: v1.34.0-52-nightly.netdatabot
2022-04-26Memory CO-RE (#12684)thiagoftsm
2022-04-26[ci skip] Update changelog and version for nightly build: v1.34.0-48-nightly.netdatabot
2022-04-24[ci skip] Update changelog and version for nightly build: v1.34.0-39-nightly.netdatabot
2022-04-23[ci skip] Update changelog and version for nightly build: v1.34.0-37-nightly.netdatabot
2022-04-22[ci skip] Update changelog and version for nightly build: v1.34.0-35-nightly.netdatabot
2022-04-21chore(kickstart.sh): remove unused `--auto-update` option when using ↵Ilya Mashchenko
static/build install method (#12725)
2022-04-21[ci skip] Update changelog and version for nightly build: v1.34.0-33-nightly.netdatabot
2022-04-20Small typo change in macOS docs (#12724)Emmanuel Vasilakis
2022-04-20[Uninstall Netdata] - Add description in the docs to use uninstaller script ↵odynik
with force arg (#12687) * [Uninstall Netdata] - Add doc description to uninstall with the force argument * [Uninstall Netdata] - Fix missing indentation in bullets 3.1-2 * [Uninstall Netdata] - Highlighting with bold Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud> * [Uninstall Netdata] - Highlighting with bold 2 Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud> * [Uninstall Netdata] - Highlighting header with bold Co-authored-by: Tina Luedtke <kickoke@users.noreply.github.com> * [Uninstall Netdata] - Highlighting header with bold 2 Co-authored-by: Tina Luedtke <kickoke@users.noreply.github.com> Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud> Co-authored-by: Tina Luedtke <kickoke@users.noreply.github.com>
2022-04-20[ci skip] Update changelog and version for nightly build: v1.34.0-22-nightly.netdatabot
2022-04-19fix upgrading all currently installed packages when updating Netdata on DebianIgor Karpov
2022-04-19fix disable-dependency-tracking typo (#12714)Ilya Mashchenko
2022-04-19fix: use NETDATA_LISTENER_PORT in docker healtcheck (#12676)Ilya Mashchenko
2022-04-19[ci skip] Update changelog and version for nightly build: v1.34.0-12-nightly.netdatabot
2022-04-18Disable automake dependency tracking in our various one-time builds. (#12701)Austin S. Hemmelgarn
* Disable automake dependency tracking in our various one-time builds. * Also disable dependency tracking code in package builds.
2022-04-16[ci skip] Update changelog and version for nightly build: v1.34.0-9-nightly.netdatabot
2022-04-15[ci skip] Update changelog and version for nightly build: 1.34.0-1-nightly.netdatabot
2022-04-14[ci skip] Minor release v1.34.0.v1.34.01.34.0netdatabot
2022-04-14[ci skip] Update changelog and version for nightly build: v1.33.1-337-nightly.netdatabot
2022-04-13Fix the static build code in light of CVE-2022-24765 (#12683)Austin S. Hemmelgarn
Also, fix handling of the source directory in the builds so that we don’t leave behind a dirty source directory.
2022-04-13Summarize encountered errors and warnings at end of kickstart script run. ↵Austin S. Hemmelgarn
(#12636) * Summarize encountered errors and warnings at end of kickstart script run. This way users will be more likely to see them, and we will have an easier time actually helping users who encounter issues. * Fix deferred error print formatting.
2022-04-13[ci skip] Update changelog and version for nightly build: v1.33.1-327-nightly.netdatabot
2022-04-12[ci skip] Update changelog and version for nightly build: v1.33.1-319-nightly.netdatabot
2022-04-11Properly limit repository configuration dependencies. (#12661)Austin S. Hemmelgarn
2022-04-11bump go.d.plugin to v0.32.2 (#12663)Ilya Mashchenko
2022-04-11only-build to build-only (#12657)Emmanuel Vasilakis
2022-04-11add --reinstall-clean flag and update documentation (#12548)maneamarius
2022-04-11Add handling for claiming non-standard install types with kickstart. (#12064)Austin S. Hemmelgarn
* Add handling for claiming non-standard install types with kickstart. Also adds a check to verify that there is a usable claiming script before attempting to claim. * Fix handling for claiming native installs. * Make claim script search code more robust.
2022-04-09[ci skip] Update changelog and version for nightly build: v1.33.1-306-nightly.netdatabot
2022-04-08[ci skip] Update changelog and version for nightly build: v1.33.1-303-nightly.netdatabot
2022-04-07[ci skip] Update changelog and version for nightly build: v1.33.1-300-nightly.netdatabot
2022-04-06fix print: command not found issue (#12615)maneamarius
2022-04-06fix gpg key issue (#12519)maneamarius
2022-04-06Kickstart improved messaging (#12577)Austin S. Hemmelgarn
* Add relevant links to kickstart script. * General installer mesaging updates. * Further assorted fixes and messaging improvements. * Added support link banners to most exit conditions. * Add extra info in output for unexpected exits. * Add a message pointing users at Netdata Cloud on success when not claiming.
2022-04-06[ci skip] Update changelog and version for nightly build: v1.33.1-293-nightly.netdatabot
2022-04-05[ci skip] Update changelog and version for nightly build: v1.33.1-288-nightly.netdatabot