layout | title | canonical |
---|---|---|
default |
Puppet Server: Release Notes |
/puppetserver/latest/release_notes.html |
For release notes on versions of Puppet Server prior to Puppet Server 5, see docs.puppet.com.
Released 21 August, 2018
-
We have added a new command line tool for interacting with the Puppet CA, under the
puppetserver ca
command. This tool can be used to generate an intermediate CA for Puppet Server, and to generate, sign, revoke, clean, and list certs. The Puppet 5 series still contains all of the old caveats about using an intermediate CA, including the need to manually copy the certs to the agent, and the need to configure CRL checking. See Puppet Server: Intermediate CA Configuration for details. Therefore thegenerate
andimport
commands that create intermediate CAs should be used with caution. All of these actions are executed by making requests to Puppet Server's CA API, in particular thecertificate_status
andcertificate_statuses
endpoints.Currently, requests to these endpoints are denied by the blanket rule in
auth.conf
, so if you would like to try out the new tool, you should first add two rules toauth.conf
whitelisting your master's certname to talk to those two endpoints.We plan to remove the
puppet cert
command and other assorted CA-related puppet subcommands in Puppet 6; we encourage you to try out this tool now and give us feedback on any bugs or functionality gaps, so we can fix them before removing the tools is it replacing. (SERVER-2284) -
The
puppetserver ca
CLI now has animport
subcommand for installing key and certificate files generated by the user (for example when they have an external root CA that they need puppetserver's PKI to chain to). (SERVER-2261)
Released July 17, 2018.
This is a platform support release of Puppet Server.
This release adds Puppet Server packages for Ubuntu 18.04 (Bionic Beaver).
Released June 7, 2018.
This is a bug-fix release of Puppet Server. There was no public release of Puppet Server 5.3.2.
- In Puppet Server 5.3.3, the
/puppet/v3/tasks
endpoint reuses cached environments instead of always creating a new environment. (SERVER-2192)
Released April 17, 2018.
This is a feature release of Puppet Server.
- We have updated the docs on enabling JRuby 9k to reflect the results of our performance research. Specifically, when using JRuby 9k, set the JVM's code cache to 512MB and enable JIT compilation. (SERVER-2147)
-
YARD's rubygem integration is incompatible with the rubygems version we ship with JRuby 9k. It prints a warning during
puppetserver gem list
(called during Puppet runs applying updates via thepuppetserver_gem
provider). This is caused by using autosign 0.1.2. Upgrading to autosign 0.1.3 bumps the YARD requirement to a version compatible with the rubygems we ship in JRuby 9k-based puppetserver.To resolve this issue, upgrade YARD to a 0.9.x version and look at bumping any server side gems that require YARD 0.8.x. The autosign gem specifically should be at >= 0.1.3. (SERVER-2161)
upstream/5.3.x
Released March 20, 2018.
This is a feature and bug-fix release of Puppet Server.
- Puppet Server 5.3.0 compresses catalog response bodies with gzip when requested. Since previous versions of Puppet Server also gzipped all other response bodies, Puppet Server 5.3.0 can gzip response bodies for all POST requests. (SERVER-2118)
-
When using JRuby 9k, Puppet Server 5.3.0 defaults to using a JRuby compile mode of "JIT", which provides the best performance. (SERVER-2130)
-
Puppet Server 5.3.0 can use some gems shipped by
puppet-agent
. The new shared directory is/opt/puppetlabs/puppet/lib/ruby/vendor_gems
. (SERVER-2133)
Released February 13, 2018.
This is a feature and bug-fix release of Puppet Server.
-
Previous versions of Puppet Server assigned the same
max-requests-per-instance
interval to all JRuby worker instances, and when equally sharing the request load, all of the instances would be destroyed and recreated near the same time. This created a "thundering heard" problem with JRuby instance creation that could lead to a spike in request times.Puppet Server 5.2.0 attempts to splay the destruction and recreation of JRuby instances equally over the
max-request-per-instance
interval to avoid this issue. This changes the operability metrics of the server by removing large spikes in request times in exchange for smaller but more frequent slowdowns. -
Puppet Server 5.2.0 is much less prone than previous versions to a race condition where systemd could lose track of the
puppetserver
process. -
In Puppet Server 2.3.x and later, using shell redirection and other shell features in custom functions would result in failures because the command would not be run in a shell. Puppet Server 5.2.0 runs these commands in a shell.
-
Profiling at the JRuby level can be enabled in the
jruby-puppet
section ofpuppetserver.conf
. This can be used to profile all of Puppet, including custom Ruby code. Due to the amount of output, enabling profiling will degrade performance and should not be done in production.There are two new settings for this feature:
profiling-mode
andprofiling-output-file
. For details, see the puppetserver.conf documentation.The API profiling mode can be used to profile custom user code, and there are resources for profiling JRuby code.
-
The
hiera-eyaml
gem is installed with Puppet Server by default, enabling out-of-the-box use of this encrypted Hiera backend. -
The
status
endpoint in Puppet Server 5.2.0 includes metrics on time spent waiting for an ENC response, as well as all major PDB events (submitting, querying, and transforming data). It also reports the number of times Puppet Server has reached itsmax-queued-requests
limit, which provides more insight into when, and how much, their request load is exceeding capacity.
Released January 31, 2018.
This is a minor bug-fix release of Puppet Server, and adds packages for Debian 9 ("Stretch").
-
Puppet Server correctly parses URIs with spaces in them, thanks to a bug fix in the
bidi
dependency. -
Puppet Server parses all Ruby source files as UTF-8 instead of ASCII when running under JRuby 1.7. This is the same behavior as MRI Ruby and JRuby 9K, and avoids corner-case bugs when interpolating translated strings with Unicode characters.
Released November 6, 2017.
This is a minor feature release of Puppet Server.
Tasks available from versioned code will be served via the static file content endpoint, rather than out of Puppet's file serving. This should reduce resources used to serve tasks.
Released October 2, 2017.
This is a bug-fix release of Puppet Server. Puppet Server 5.1.1 and 5.1.2 were not packaged for release.
Previous versions of Puppet Server set the default logging level to debug
, then filtered the log output using Logback. Because Puppet generates a very large amount of output in debug mode, this behavior could significantly degrade Puppet Server's performance. Server 5.1.3 resolves this issue by producing debug
output only when configured to do so. For details about setting logging levels, see the logback.xml configuration documentation.
In Debian and Debian-derivative packages from Puppet Server 5.1.3 onward, the release field changes from "1puppetlabs" to "1". For example, the puppetserver
package version for Server 5.1.3 on Ubuntu 16.04 (Xenial Xerus) is "5.1.3-1xenial", whereas the package version for Server 5.1.0 was "5.1.0-1puppetlabs1".
This fixes an issue where some repository mirroring tools failed to mirror our repositories because packages with different contents had the same name. This does not otherwise affect the package installation process.
Released September 13, 2017.
This is a feature and bug-fix release of Puppet Server.
When a group of Puppet agents start their Puppet runs together, they can form a "thundering herd" capable of exceeding Puppet Server's available resources. This results in a growing backlog of requests from Puppet agents waiting for a JRuby instance to become free before their request can be processed. If this backlog exceeds the size of the Server's Jetty thread pool, other requests (such as status checks) start timing out. (For more information about JRubies and Server performance, see Applying metrics to improve performance.)
In previous versions of Puppet Server, administrators had to manually remediate this situation by separating groups of agent requests, for instance through rolling restarts. In Server 5.1.0, administrators can optionally have Server return a 503 response containing a Retry-After
header to requests when the JRuby backlog exceeds a certain limit, causing agents to pause before retrying the request.
Both the backlog limit and Retry-After
period are configurable, as the max-queued-requests
and max-retry-delay
settings respectively under the jruby-puppet
configuration in puppetserver.conf. Both settings' default values do not change Puppet Server's behavior compared to Server 5.0.0, so to take advantage of this feature in Puppet Server 5.1.0, you must specify your own values for max-queued-requests
and max-retry-delay
. For details, see the puppetserver.conf documentation. Also, Puppet agents must run Puppet 5.3.0 or newer to respect such headers.
Puppet Server 5.1.0 includes the ability to automatically refresh the certificate revocation list (CRL) when any changes to that file have occurred, namely the addition of a revoked certificate. Prior to this release, revoking an agent's certificate required restarting or reloading the Puppet Server process before that revocation would be honored and the agent denied authentication. Revocation is now effective within milliseconds and does not require restarting server.
Previous version of Puppet Server did not support autosigning with certificate authority (CA) certificate bundles, which contain multiple certificates. When attempting to pass a bundle, Server would output an error indicating that "the PEM stream must contain exactly 1 certificate". Puppet Server 5.1.0 adds support for autosigning with CA certificate bundles.
In previous versions of Puppet Server, there was no designed way to add Java JARs to be loaded by Puppet Server on startup, for instance to provide native extensions required by certain gems. Server 5.1.0 adds a new directory, /opt/puppetlabs/server/data/puppetserver/jars
, and loads any JARs placed in this directory to the classpath
when puppetserver
is started. JARs placed here will not be modified or removed when upgrading Puppet Server.
- SERVER-1755: Previous versions of Puppet Server did not correctly handle Puppet agent data sent in Msgpack format (
application/x-msgpack
), because Server interpreted the binary data as UTF-8 content. Server 5.1.0 resolves this issue by passing Msgpack content along as raw binary data, just as it came in.
Released June 27, 2017.
This is a major release of Puppet Server, and corresponds with the major release of Puppet 5.0, which also includes many changes and new features relevant to Puppet Server users.
Puppet Server 5.0 packages are available for RHEL 6 and 7, Debian 8 (Jessie), Ubuntu 16.04 (Xenial), and SLES 12 (SP1 or later only).
Puppet Server 5.0 is built with JDK 8, and therefore cannot run on a Java 7 runtime. Server 5.0 packages now depend exclusively upon the openjdk-8-jre-headless
package. Because Ubuntu 12.04 (Precise) and 14.04 (Trusty), and versions of Debian prior to 8 (Jessie), do not distribute that package, we no longer provide Puppet Server packages for those operating systems.
For Debian 8, install the jessie-backports
repository to add access to Java 8. For details, see Installing From Packages.
Consult the Puppet 5.0 release notes for more information about important new features and breaking changes. Some especially relevant Puppet 5.0 changes are also noted below.
As of Puppet 5.0, Puppet no longer writes node YAML files to its cache by default. This cache has been used in workflows where external tooling needs a list of nodes, but PuppetDB is now the preferred source of node information.
To retain the Puppet 4.x behavior, add the puppet.conf
setting node_cache_terminus = write_only_yaml
. Note that write_only_yaml
is deprecated, and users are encouraged to migrate to PuppetDB in order to retrieve node information.
Previous versions of Puppet exclusively used PSON, our vendored version of pure_json
, for serializing communication between agents and masters. Testing showed that PSON serialization's performance was significantly worse than using JSON, and JSON adds opportunities for easier and better interoperability with other tools and programming languages.
Puppet Server 5.0 now produces application/json
responses when a Puppet 5.x agent requests them, and consumes application/json
request bodies sent from Puppet 5.x agents.
Server 5.0 remains compatible with Puppet 3.x and 4.x agents that use PSON, and Puppet 5.x agents attempt to request and send text/pson
only when communicating with masters that don't support JSON communications, such as Puppet Server 2.7.x or earlier.
For details, consult the Puppet 5.0 documentation.
Puppet Server 5.0 updates the default authorization rules in the auth.conf
file to reflect that access to the "delete" HTTP method for all /puppet/v3/file_
endpoints cannot be granted, even if a rule in auth.conf
would permit it. This access is always forbidden due to a hard-coded restriction in the Ruby Puppet endpoint code.
For clarity, the file_
endpoint rules are now separated into definitions per endpoint in order to reflect the valid methods that each endpoint supports, including file_bucket_file
, file_content
, and file_metadata
.
By default, Puppet Server uses the HOCON-based auth.conf
file introduced in Puppet Server 2.4. This uses the trapperkeeper-authorization
methods of evaluating access to HTTP endpoints, instead of the legacy Puppet auth.conf
file.
Puppet Server 5.0 completes this switch by changing the default value of the use-legacy-auth-conf
setting in puppetserver.conf
from true to false.
Puppet Server 5.0 removes the deprecated HTTP resource_type
and resource_types
API endpoints, and the resource_type
Puppet CLI face. The /puppet/v3/environment_classes
HTTP endpoint in Puppet Server replaces a subset of the resource_type
functionality, including name and parameter metadata for classes.
Puppet Server 5.0 includes metrics support previously released in Puppet Enterprise, including Grafana and Graphite support, both PE-style and Jolokia-powered metrics API endpoints, and the developer dashboard.
- SERVER-1797
- SERVER-1752
- SERVER-1739
- SERVER-1737
- SERVER-1721
- SERVER-1266
- SERVER-1262
- SERVER-1261
- SERVER-1260
- SERVER-1259
Puppet Server 5.0 packages include the dependencies for both JRuby 1.7 (running Ruby language version 1.9.3) and JRuby 9k (running Ruby language version 2.3 or later). Puppet Server 5.0 uses JRuby 1.7 by default.
To instead run Puppet Server using JRuby 9k, see the "Configuring the JRuby Version" section of Puppet Server Configuration.
To facilitate this, the Puppet Server packages include both JRuby 1.7.27 and JRuby 9k, increasing package sizes by about 30 MB.
Puppet Server 5.0 also updates JRuby v1.7 to v1.7.27, which in turn updates the jruby-openssl
gem to v0.9.19 and bouncycastle
libraries to v1.55. JRuby 1.7.27 breaks setting jruby-puppet.compat-version
to 2.0
in puppetserver.conf
, so Server 5.0 removes the jruby-puppet.compat-version
setting and exits the puppetserver
service with an error if you start the service with that setting.
For Ruby language 2.x support in Puppet Server, configure Puppet Server to use JRuby 9k instead of JRuby 1.7.27 as noted above.
Previous versions of Puppet Server logged JRuby errors to stderr, which Puppet Server wrote to either /var/log/puppetlabs/puppetserver/puppetserver-daemon.log
, syslog
, or journalctl
(depending upon the OS). By default, JRuby also does not log debug messages.
To take advantage of the Logback logging infrastructure already in Puppet Server, JRuby now uses a custom slf4j
logger that bridges logging from JRuby to Logback. As a result, Puppet Server now logs "info" and "error" messages from JRuby into /var/log/puppetlabs/puppetserver/puppetserver.log
by default. To log debug-level JRuby messages, set the "level" attribute for the "jruby" element in /etc/puppetlabs/puppetserver/logback.xml
file to "debug".
Puppet Server 5.0 enables profiling by default, matching the default behavior of Puppet Server in Puppet Enterprise.
Puppet Server 5.0 makes the environment query parameter of the puppet/v3/environment_modules
endpoint optional. Also, to retrieve information about all modules in all environments at once, make a GET request of the puppet/v3/environment_modules
endpoint without passing any parameters.
In Puppet Server 5.0, the puppetserver gem
command respects HTTP_PROXY
, http_proxy
, HTTPS_PROXY
, https_proxy
, NO_PROXY
, and no_proxy
environment variables, allowing puppetserver
to install gems when behind a proxy defined by these environment variables.
In previous versions of Puppet Server, a request to lock all JRuby instances would stall indefinitely was made while a single instance in the JRuby pool stalled, effectively deadlocking the puppetserver
service and requiring manual intervention to release the lock.
Puppet Server 5.0 resolves this by adding a timeout to the pool lock request. If that timeout expires, Puppet Server throws an exception instead of locking up indefinitely.
In previous versions of Puppet Server, responses to requests of the puppet/v3/static_file_content
endpoint did not include a Content-Type header. As of Puppet Server 5.0, responses to successful requests include a application/octet-stream
Content-Type header. Error responses from this endpoint include a text/plain
Content-Type.
Installing previous versions of Puppet Server via RPM packages could fail with a which: command not found
error if which
was not installed on the system.
Puppet Server 5.0 packages require /usr/bin/which
, ensuring that it will be installed.
In previous versions of Puppet Server, attempting to restart the puppetserver
service using its sysvinit script would always try to immediately restart the service, even if stopping the service failed. Also, in some cases the service might not terminate immediately when sent a kill signal (SIGKILL), which exacerbated the issue.
Puppet Server 5.0 resolves this by waiting for a grace period after sending a SIGKILL to the puppetserver
service to ensure that it successfully exits, and attempts to restart the service only after the service is successfully stopped.
In previous versions of Puppet Server, puppetserver
CLI subcommands discarded exit codes, which could prevent errors from commands like puppetserver gem
from being detected. In Puppet Server 5.0, these CLI commands now exit with the same return code as the Ruby command would have provided.
Also, subcommands previously did not account for errors raised when loading and validating the puppetserver
configuration. An invalid configuration could crash the subcommand with an unhelpful error message unrelated to the actual configuration validation failure. Puppet Server 5.0 resolves this by propagating errors with an unexpected format to output without modification.
In previous versions of Puppet Server, puppetserver
CLI subcommands used /dev/random
for entropy. On systems with limited sources of entropy, such as virtual machines, these subcommands could rapidly drain the entropy pool, leading to slow performance as the pool gradually refilled. For instance, this could cause gem installation using the puppetserver gem
subcommand to take much longer than expected.
Puppet Server 5.0 resolves this by instead using /dev/urandom
for CLI subcommands.
- SERVER-1807: Puppet Server 5.0 embeds
hocon
gem version 1.2.5 in the default Puppet Server gem path, an upgrade from v1.1.3 used in Server v2.7.2. - SERVER-1671: Log only error output (stderr) to
puppetserver.log
forgenerate()
function calls. - SERVER-715: Resolve intermittent 500 error status results and
isExpired(puppet_environments.clj:27)
logged errors on some HTTP API requests.