diff options
author | Jenkins <jenkins@review.openstack.org> | 2017-01-27 18:59:25 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2017-01-27 18:59:25 +0000 |
commit | ecc4c4d10c4e885b18080d9a601cc558096b5e45 (patch) | |
tree | 903d7112ab6018194ace95070ac37e653691bdad | |
parent | 181087e448bfb1e676977073068ad25d7ca9d21e (diff) | |
parent | 2d4015019a02bc7609f359961460494fc890e049 (diff) |
Merge "Rename controller_admin_vip to controller_admin_host"
-rw-r--r-- | manifests/profile/base/docker_registry.pp | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/manifests/profile/base/docker_registry.pp b/manifests/profile/base/docker_registry.pp index 05a516d..ebe84bf 100644 --- a/manifests/profile/base/docker_registry.pp +++ b/manifests/profile/base/docker_registry.pp @@ -19,21 +19,22 @@ # === Parameters: # # [*registry_host*] -# (String) IP address on which the Docker registry is listening on +# (String) IP address or hostname the Docker registry binds to # Defaults to hiera('controller_host') # # [*registry_port*] # (Integer) The port on which the Docker registry is listening on # Defaults to 8787 # -# [*controller_admin_vip*] -# (String) VIP of the host -# Defaults to hiera('controller_admin_vip') +# [*registry_admin_host*] +# (String) IP address or hostname the Docker registry binds to in the admin +# network +# Defaults to hiera('controller_admin_host') # class tripleo::profile::base::docker_registry ( - $registry_host = hiera('controller_host'), - $registry_port = 8787, - $controller_admin_vip = hiera('controller_admin_vip'), + $registry_host = hiera('controller_host'), + $registry_port = 8787, + $registry_admin_host = hiera('controller_admin_host'), ) { # We want a v2 registry package{'docker-registry': @@ -55,7 +56,7 @@ class tripleo::profile::base::docker_registry ( line => join ([ 'INSECURE_REGISTRY="', '--insecure-registry ', $registry_host, ':', $registry_port, ' ', - '--insecure-registry ', $controller_admin_vip, ':', $registry_port, '"']), + '--insecure-registry ', $registry_admin_host, ':', $registry_port, '"']), match => 'INSECURE_REGISTRY=', require => Package['docker'], notify => Service['docker'], |