Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow bypassing curl package ensure if needed #477

Merged
merged 1 commit into from
Apr 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,14 @@ class { 'docker':
}
```

If the curl package is being managed elsewhere and the curl ensure in this module is conflicting,
it can be disabled by setting the following parameter globally or in compose / machine resources:
```puppet
class { 'docker':
curl_ensure => false
}
```

### Proxy on Windows

To use docker through a proxy on Windows, a System Environment Variable HTTP_PROXY/HTTPS_PROXY must be set. See [Docker Engine on Windows](https://docs.microsoft.com/en-us/virtualization/windowscontainers/manage-docker/configure-docker-daemon#proxy-configuration)
Expand Down
11 changes: 9 additions & 2 deletions manifests/compose.pp
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,19 @@
# responsible for ensuring the URL points to the correct version and
# architecture.

# [*curl_ensure*]
# Whether or not the curl package is ensured by this module.
# Defaults to true
#
class docker::compose(
Optional[Pattern[/^present$|^absent$/]] $ensure = 'present',
Optional[String] $version = $docker::params::compose_version,
Optional[String] $install_path = $docker::params::compose_install_path,
Optional[String] $symlink_name = $docker::params::compose_symlink_name,
Optional[String] $proxy = undef,
Optional[String] $base_url = $docker::params::compose_base_url,
Optional[String] $raw_url = undef
Optional[String] $raw_url = undef,
Optional[Boolean] $curl_ensure = $docker::params::curl_ensure,
) inherits docker::params {

if $proxy != undef {
Expand Down Expand Up @@ -93,7 +98,9 @@
require => Exec["Install Docker Compose ${version}"]
}
} else {
ensure_packages(['curl'])
if $curl_ensure {
ensure_packages(['curl'])
}
exec { "Install Docker Compose ${version}":
path => '/usr/bin/',
cwd => '/tmp',
Expand Down
9 changes: 8 additions & 1 deletion manifests/machine.pp
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,17 @@
# [*url*]
# The URL from which the docker machine binary should be fetched
# Defaults to a auto determined value based on version, kernel and OS.
#
# [*curl_ensure*]
# Whether or not the curl package is ensured by this module.
# Defaults to true
class docker::machine(
Optional[Pattern[/^present$|^absent$/]] $ensure = 'present',
Optional[String] $version = $docker::params::machine_version,
Optional[String] $install_path = $docker::params::machine_install_path,
Optional[String] $proxy = undef,
Optional[Variant[Stdlib::HTTPUrl, Stdlib::HTTPSUrl]] $url = undef,
Optional[Boolean] $curl_ensure = $docker::params::curl_ensure,
) inherits docker::params {

if $proxy != undef {
Expand Down Expand Up @@ -75,7 +80,9 @@
require => Exec["Install Docker Machine ${version}"]
}
} else {
ensure_packages(['curl'])
if $curl_ensure {
ensure_packages(['curl'])
}
exec { "Install Docker Machine ${version}":
path => '/usr/bin/',
cwd => '/tmp',
Expand Down
1 change: 1 addition & 0 deletions manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@
$storage_pool_autoextend_percent = undef
$storage_config_template = 'docker/etc/sysconfig/docker-storage.erb'
$registry_mirror = undef
$curl_ensure = true
$os_lc = downcase($::operatingsystem)
$docker_msft_provider_version = undef
$nuget_package_provider_version = undef
Expand Down