Skip to content

Commit

Permalink
Refs #16253 - Add max speed var to foreman-proxy-content
Browse files Browse the repository at this point in the history
  • Loading branch information
sean797 committed Jan 26, 2017
1 parent 17be2e2 commit 15fc5d4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
# $pulp_oauth_secret:: OAuth secret to be used for Pulp REST interaction
# type:Optional[String]
#
# $pulp_max_speed:: The maximum download speed for a Pulp task per second. (e.g. "4 Kb" or 1Gb")
# type:string
#
# $reverse_proxy:: Add reverse proxy to the parent
# type:Boolean
#
Expand Down Expand Up @@ -77,6 +80,7 @@
$pulp_oauth_effective_user = $foreman_proxy_content::params::pulp_oauth_effective_user,
$pulp_oauth_key = $foreman_proxy_content::params::pulp_oauth_key,
$pulp_oauth_secret = $foreman_proxy_content::params::pulp_oauth_secret,
$pulp_max_speed = $foreman_proxy_content::params::pulp_max_speed,

$puppet = $foreman_proxy_content::params::puppet,

Expand Down Expand Up @@ -218,6 +222,7 @@
https_key => $certs::apache::apache_key,
ca_cert => $certs::ca_cert,
crane_data_dir => '/var/lib/pulp/published/docker/v2/app',
yum_max_speed => $pulp_max_speed,
}

pulp::apache::fragment{'gpg_key_proxy':
Expand Down
1 change: 1 addition & 0 deletions manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
$pulp_oauth_effective_user = 'admin'
$pulp_oauth_key = 'katello'
$pulp_oauth_secret = undef
$pulp_max_speed = undef

$qpid_router = true
$qpid_router_hub_addr = '0.0.0.0'
Expand Down

0 comments on commit 15fc5d4

Please sign in to comment.