Configuring proxies
You can work around limited internet access by configuring proxies at various points in your infrastructure, depending on your connectivity limitations.
The examples provided here assume an unauthenticated proxy running at
proxy.example.vlan
on port
8080.
Downloading agent installation packages through a proxy
If your master doesn't have internet access,
it can't download agent installation packages. If you want to use
package management to install agents, set up a proxy and specify its
connection details so that pe_repo
can access agent
tarballs.
In the pe_repo
class of the
PE
Master node group, specify values for
pe_repo::http_proxy_host
and pe_repo::http_proxy_port
settings.
pe.conf
, add the following
to your pe.conf
file with your desired
parameters: "pe_repo::http_proxy_host": "proxy.example.vlan",
"pe_repo::http_proxy_port": 8080
pe_repo
,
run:curl -x http://proxy.example.vlan:8080 -I https://pm.puppetlabs.com
Setting a proxy for agent traffic
General proxy settings in puppet.conf
manage HTTP connections that are
directly initiated by the agent.
To configure agents to communicate through a proxy using pe.conf
, specify values for the http_proxy_host
and http_proxy_port
settings in
/etc/puppetlabs/puppet/puppet.conf
.
http_proxy_host = proxy.example.vlan
http_proxy_port = 8080
For more information about HTTP proxy host options, see the Puppet configuration reference.
Setting a proxy for Code Manager traffic
Code Manager has its own set of proxy configuration options which
you can use to set a proxy for connections to the Git server
or the Forge. These settings are unaffected by the proxy
settings in puppet.conf
,
because Code Manager is run by Puppet Server.
Use a proxy for all HTTP connections, including both Git and the Forge, when configuring Code Manager.
.yaml
and specify your proxy name. For example:
puppet_enterprise::profile::master::r10k_proxy: "http://proxy.example.vlan:8080"
curl -x http://proxy.example.vlan:8080 -I https://github.com
curl -x http://proxy.example.vlan:8080 -I https://forgeapi.puppet.com
For detailed information about configuring proxies for Code Manager traffic, see the Code Manager documentation.