-
Notifications
You must be signed in to change notification settings - Fork 54
Comparing changes
Open a pull request
base repository: puppetlabs/puppetlabs-peadm
base: v3.2.0
head repository: puppetlabs/puppetlabs-peadm
compare: v3.3.0
Commits on Sep 24, 2021
-
(SUP-2643) Add option to override version assertion
Prior to this commit, there was no way to force an override to the PE version assertion. This commit adds a new parameter that will override the PE version check and output a warning when enabled. This is useful in testing new PE versions that are not yet supported by the module.
Jarret Lavallee committedSep 24, 2021 Configuration menu - View commit details
-
Copy full SHA for d98c551 - Browse repository at this point
Copy the full SHA d98c551View commit details
Commits on Sep 27, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 6e16e7f - Browse repository at this point
Copy the full SHA 6e16e7fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 50ccb74 - Browse repository at this point
Copy the full SHA 50ccb74View commit details -
adds spaces around the brackets to meet bash syntax
Co-authored-by: Reid Vandewiele <reid@puppet.com>
Configuration menu - View commit details
-
Copy full SHA for d1ae598 - Browse repository at this point
Copy the full SHA d1ae598View commit details -
uses proper quotes around variable
Co-authored-by: Reid Vandewiele <reid@puppet.com>
Configuration menu - View commit details
-
Copy full SHA for 6f5c612 - Browse repository at this point
Copy the full SHA 6f5c612View commit details -
removes -p flag to avoid future mktemp conflicts
Co-authored-by: Reid Vandewiele <reid@puppet.com>
Configuration menu - View commit details
-
Copy full SHA for 63deb3f - Browse repository at this point
Copy the full SHA 63deb3fView commit details -
uses proper syntax for interpolation
Co-authored-by: Reid Vandewiele <reid@puppet.com>
Configuration menu - View commit details
-
Copy full SHA for 4c90d40 - Browse repository at this point
Copy the full SHA 4c90d40View commit details -
Configuration menu - View commit details
-
Copy full SHA for 35b05eb - Browse repository at this point
Copy the full SHA 35b05ebView commit details -
Configuration menu - View commit details
-
Copy full SHA for f1b8f6d - Browse repository at this point
Copy the full SHA f1b8f6dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9b3ff97 - Browse repository at this point
Copy the full SHA 9b3ff97View commit details
Commits on Sep 28, 2021
-
Configuration menu - View commit details
-
Copy full SHA for b1ec230 - Browse repository at this point
Copy the full SHA b1ec230View commit details -
Configuration menu - View commit details
-
Copy full SHA for 87342b4 - Browse repository at this point
Copy the full SHA 87342b4View commit details -
removes the name argument from mktemp
Co-authored-by: Reid Vandewiele <reid@puppet.com>
Configuration menu - View commit details
-
Copy full SHA for 4965f43 - Browse repository at this point
Copy the full SHA 4965f43View commit details -
Merge pull request #215 from puppetlabs/SOLARCH-622
Improve reliability of downloading PE tarball
Configuration menu - View commit details
-
Copy full SHA for 3924918 - Browse repository at this point
Copy the full SHA 3924918View commit details
Commits on Sep 29, 2021
-
Return accurate 'supported' data even when unsafe
The new $permit_unsafe_versions parameter allows the assert_supported_pe_version() function to not raise on failure, but it should always return accurate data about whether or not the given version is or isn't supported.
Configuration menu - View commit details
-
Copy full SHA for 275ecb4 - Browse repository at this point
Copy the full SHA 275ecb4View commit details -
Merge pull request #204 from jarretlavallee/sup_2643_version_override
Add development and testing option to permit installing unsupported PE versions
Configuration menu - View commit details
-
Copy full SHA for c0908a2 - Browse repository at this point
Copy the full SHA c0908a2View commit details
Commits on Oct 1, 2021
-
Improve logging of peadm::download
Adjust message language, add message for moving temp file into target location on successful download
Configuration menu - View commit details
-
Copy full SHA for bb8a795 - Browse repository at this point
Copy the full SHA bb8a795View commit details -
Determine signing key from asc file
Rather than expecting that downloaded files will be signed with a known key, simply use the key from the signature asc file. The purpose of this validation isn't to validate authenticity. It is only to validate digest.
Configuration menu - View commit details
-
Copy full SHA for 4e3e52a - Browse repository at this point
Copy the full SHA 4e3e52aView commit details
Commits on Oct 4, 2021
-
Merge pull request #219 from puppetlabs/GH-216
Determine validation key from asc signature file
Configuration menu - View commit details
-
Copy full SHA for 009b631 - Browse repository at this point
Copy the full SHA 009b631View commit details -
Catch mv errors when downloading
If moving the temporary file into the final location fails, make sure that error is caught and return values set appropriately.
Configuration menu - View commit details
-
Copy full SHA for a55a966 - Browse repository at this point
Copy the full SHA a55a966View commit details
Commits on Oct 5, 2021
-
Merge pull request #220 from puppetlabs/maint-catch-mv-errors
Catch mv errors when downloading
Configuration menu - View commit details
-
Copy full SHA for 53c8968 - Browse repository at this point
Copy the full SHA 53c8968View commit details
Commits on Oct 6, 2021
-
Fail agent_install if agent is already installed
The PE bash installer script doesn't support re-configuring an existing agent, which is critical to our use case. Therefore, we should fail if the agent is already installed, since we cannot guarantee correct configuration in that scenario.
Configuration menu - View commit details
-
Copy full SHA for 41e55ad - Browse repository at this point
Copy the full SHA 41e55adView commit details -
Remove inotify and log watching service from docker examples
* Previously we could spit out logs of what bolt was doing. This feature is now natively supported in bolt and there is no need for installing inotify and supporting services. * Additionally, this adds the old pe installer gpg key * Reformats json and yaml files under spec/docker
Configuration menu - View commit details
-
Copy full SHA for 5e139ba - Browse repository at this point
Copy the full SHA 5e139baView commit details -
Use the docker host's bolt command and bolt project file
* The previously implementation used pdk which ships with an older version of bolt. This allows the user to use the local installation of bolt which is the same procedure as using peadm directly. * This also fixes a few issues around module dependencies and relying on the fixtures path. Users are no longer required to have pdk or run bundle commands. Since this uses pure bolt the entire process mimics that of a real installation and usage. * Updates install and upgrade scripts to use bolt commands
Configuration menu - View commit details
-
Copy full SHA for 2313fa7 - Browse repository at this point
Copy the full SHA 2313fa7View commit details -
Configuration menu - View commit details
-
Copy full SHA for f81a635 - Browse repository at this point
Copy the full SHA f81a635View commit details -
Merge pull request #223 from puppetlabs/fail-agent_install-on-reinstall
Fail agent_install if agent is already installed
Configuration menu - View commit details
-
Copy full SHA for 95e4cd9 - Browse repository at this point
Copy the full SHA 95e4cd9View commit details -
Adds ability to optionally add agents for docker examples
* Previously the documentation detailed instructions for how to add agents to a docker example cluster. This adds a script to do the dirty work.
Configuration menu - View commit details
-
Copy full SHA for abfd2b8 - Browse repository at this point
Copy the full SHA abfd2b8View commit details
Commits on Oct 7, 2021
-
Merge pull request #224 from nwops/docker_fix
Updates docker to use bolt commands
Configuration menu - View commit details
-
Copy full SHA for e5e0d61 - Browse repository at this point
Copy the full SHA e5e0d61View commit details
Commits on Dec 23, 2021
-
Configuration menu - View commit details
-
Copy full SHA for a3b61ea - Browse repository at this point
Copy the full SHA a3b61eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3b3b5b5 - Browse repository at this point
Copy the full SHA 3b3b5b5View commit details
Commits on Dec 29, 2021
-
Merge pull request #227 from puppetlabs/SOLARCH-716
Accidentally closed instead of merging Merging despite broken test @reidmv advised of issue. Will fix the test separately
Configuration menu - View commit details
-
Copy full SHA for 11927ab - Browse repository at this point
Copy the full SHA 11927abView commit details
Commits on Jan 4, 2022
-
Fix failing table output tests
The gem was updated and the output format changed slightly. These tests should probably just be removed; they are too exact and finicky.
Configuration menu - View commit details
-
Copy full SHA for 748975e - Browse repository at this point
Copy the full SHA 748975eView commit details -
Merge pull request #228 from puppetlabs/fix-table-tests
Fix failing table output tests
Configuration menu - View commit details
-
Copy full SHA for 131def2 - Browse repository at this point
Copy the full SHA 131def2View commit details
Commits on Jan 5, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 66d3c80 - Browse repository at this point
Copy the full SHA 66d3c80View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2527bc0 - Browse repository at this point
Copy the full SHA 2527bc0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 17d5b62 - Browse repository at this point
Copy the full SHA 17d5b62View commit details -
GitHub Action committed
Jan 5, 2022 Configuration menu - View commit details
-
Copy full SHA for 6a526af - Browse repository at this point
Copy the full SHA 6a526afView commit details -
Merge pull request #230 from puppetlabs/release-prep
Release prep v3.3.0
Configuration menu - View commit details
-
Copy full SHA for 130948d - Browse repository at this point
Copy the full SHA 130948dView commit details
There are no files selected for viewing