Merge lp:~billy-olsen/charms/trusty/glance/public-endpoint-host into lp:~openstack-charmers-archive/charms/trusty/glance/next

Proposed by Billy Olsen
Status: Merged
Merged at revision: 119
Proposed branch: lp:~billy-olsen/charms/trusty/glance/public-endpoint-host
Merge into: lp:~openstack-charmers-archive/charms/trusty/glance/next
Diff against target: 761 lines (+321/-87)
9 files modified
config.yaml (+10/-0)
hooks/charmhelpers/contrib/hahelpers/cluster.py (+25/-0)
hooks/charmhelpers/contrib/openstack/ip.py (+49/-44)
hooks/charmhelpers/contrib/openstack/neutron.py (+10/-5)
hooks/charmhelpers/core/hookenv.py (+147/-10)
hooks/charmhelpers/core/host.py (+1/-1)
hooks/charmhelpers/core/services/base.py (+32/-11)
hooks/charmhelpers/fetch/__init__.py (+1/-1)
unit_tests/test_glance_relations.py (+46/-15)
To merge this branch: bzr merge lp:~billy-olsen/charms/trusty/glance/public-endpoint-host
Reviewer Review Type Date Requested Status
Corey Bryant (community) Approve
Review via email: mp+261009@code.launchpad.net

Description of the change

Provides a config option which allows the user to specify the public hostname used to advertise to keystone when creating endpoints.

To post a comment you must log in.
Revision history for this message
uosci-testing-bot (uosci-testing-bot) wrote :

charm_lint_check #5047 glance-next for billy-olsen mp261009
    LINT OK: passed

Build: http://10.245.162.77:8080/job/charm_lint_check/5047/

Revision history for this message
uosci-testing-bot (uosci-testing-bot) wrote :

charm_unit_test #4727 glance-next for billy-olsen mp261009
    UNIT OK: passed

Build: http://10.245.162.77:8080/job/charm_unit_test/4727/

Revision history for this message
uosci-testing-bot (uosci-testing-bot) wrote :

charm_amulet_test #4453 glance-next for billy-olsen mp261009
    AMULET OK: passed

Build: http://10.245.162.77:8080/job/charm_amulet_test/4453/

121. By Billy Olsen

c-h sync

Revision history for this message
uosci-testing-bot (uosci-testing-bot) wrote :

charm_lint_check #5071 glance-next for billy-olsen mp261009
    LINT OK: passed

Build: http://10.245.162.77:8080/job/charm_lint_check/5071/

Revision history for this message
uosci-testing-bot (uosci-testing-bot) wrote :

charm_unit_test #4750 glance-next for billy-olsen mp261009
    UNIT OK: passed

Build: http://10.245.162.77:8080/job/charm_unit_test/4750/

Revision history for this message
uosci-testing-bot (uosci-testing-bot) wrote :

charm_amulet_test #4478 glance-next for billy-olsen mp261009
    AMULET OK: passed

Build: http://10.245.162.77:8080/job/charm_amulet_test/4478/

Revision history for this message
Corey Bryant (corey.bryant) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'config.yaml'
--- config.yaml 2015-04-01 16:48:59 +0000
+++ config.yaml 2015-06-04 23:12:46 +0000
@@ -176,6 +176,16 @@
176 192.168.0.0/24)176 192.168.0.0/24)
177 .177 .
178 This network will be used for public endpoints.178 This network will be used for public endpoints.
179 os-public-hostname:
180 type: string
181 default:
182 description: |
183 The hostname or address of the public endpoints created for glance
184 in the keystone identity provider.
185 .
186 This value will be used for public endpoints. For example, an
187 os-public-hostname set to 'glance.example.com' with ssl enabled will
188 create a public endpoint for glance of https://glance.example.com:9292/
179 prefer-ipv6:189 prefer-ipv6:
180 type: boolean190 type: boolean
181 default: False191 default: False
182192
=== modified file 'hooks/charmhelpers/contrib/hahelpers/cluster.py'
--- hooks/charmhelpers/contrib/hahelpers/cluster.py 2015-03-20 17:15:02 +0000
+++ hooks/charmhelpers/contrib/hahelpers/cluster.py 2015-06-04 23:12:46 +0000
@@ -52,6 +52,8 @@
52 bool_from_string,52 bool_from_string,
53)53)
5454
55DC_RESOURCE_NAME = 'DC'
56
5557
56class HAIncompleteConfig(Exception):58class HAIncompleteConfig(Exception):
57 pass59 pass
@@ -95,6 +97,27 @@
95 return False97 return False
9698
9799
100def is_crm_dc():
101 """
102 Determine leadership by querying the pacemaker Designated Controller
103 """
104 cmd = ['crm', 'status']
105 try:
106 status = subprocess.check_output(cmd, stderr=subprocess.STDOUT)
107 if not isinstance(status, six.text_type):
108 status = six.text_type(status, "utf-8")
109 except subprocess.CalledProcessError:
110 return False
111 current_dc = ''
112 for line in status.split('\n'):
113 if line.startswith('Current DC'):
114 # Current DC: juju-lytrusty-machine-2 (168108163) - partition with quorum
115 current_dc = line.split(':')[1].split()[0]
116 if current_dc == get_unit_hostname():
117 return True
118 return False
119
120
98@retry_on_exception(5, base_delay=2, exc_type=CRMResourceNotFound)121@retry_on_exception(5, base_delay=2, exc_type=CRMResourceNotFound)
99def is_crm_leader(resource, retry=False):122def is_crm_leader(resource, retry=False):
100 """123 """
@@ -104,6 +127,8 @@
104 We allow this operation to be retried to avoid the possibility of getting a127 We allow this operation to be retried to avoid the possibility of getting a
105 false negative. See LP #1396246 for more info.128 false negative. See LP #1396246 for more info.
106 """129 """
130 if resource == DC_RESOURCE_NAME:
131 return is_crm_dc()
107 cmd = ['crm', 'resource', 'show', resource]132 cmd = ['crm', 'resource', 'show', resource]
108 try:133 try:
109 status = subprocess.check_output(cmd, stderr=subprocess.STDOUT)134 status = subprocess.check_output(cmd, stderr=subprocess.STDOUT)
110135
=== modified file 'hooks/charmhelpers/contrib/openstack/ip.py'
--- hooks/charmhelpers/contrib/openstack/ip.py 2015-03-20 17:15:02 +0000
+++ hooks/charmhelpers/contrib/openstack/ip.py 2015-06-04 23:12:46 +0000
@@ -17,6 +17,7 @@
17from charmhelpers.core.hookenv import (17from charmhelpers.core.hookenv import (
18 config,18 config,
19 unit_get,19 unit_get,
20 service_name,
20)21)
21from charmhelpers.contrib.network.ip import (22from charmhelpers.contrib.network.ip import (
22 get_address_in_network,23 get_address_in_network,
@@ -26,8 +27,6 @@
26)27)
27from charmhelpers.contrib.hahelpers.cluster import is_clustered28from charmhelpers.contrib.hahelpers.cluster import is_clustered
2829
29from functools import partial
30
31PUBLIC = 'public'30PUBLIC = 'public'
32INTERNAL = 'int'31INTERNAL = 'int'
33ADMIN = 'admin'32ADMIN = 'admin'
@@ -35,15 +34,18 @@
35ADDRESS_MAP = {34ADDRESS_MAP = {
36 PUBLIC: {35 PUBLIC: {
37 'config': 'os-public-network',36 'config': 'os-public-network',
38 'fallback': 'public-address'37 'fallback': 'public-address',
38 'override': 'os-public-hostname',
39 },39 },
40 INTERNAL: {40 INTERNAL: {
41 'config': 'os-internal-network',41 'config': 'os-internal-network',
42 'fallback': 'private-address'42 'fallback': 'private-address',
43 'override': 'os-internal-hostname',
43 },44 },
44 ADMIN: {45 ADMIN: {
45 'config': 'os-admin-network',46 'config': 'os-admin-network',
46 'fallback': 'private-address'47 'fallback': 'private-address',
48 'override': 'os-admin-hostname',
47 }49 }
48}50}
4951
@@ -57,15 +59,50 @@
57 :param endpoint_type: str endpoint type to resolve.59 :param endpoint_type: str endpoint type to resolve.
58 :param returns: str base URL for services on the current service unit.60 :param returns: str base URL for services on the current service unit.
59 """61 """
60 scheme = 'http'62 scheme = _get_scheme(configs)
61 if 'https' in configs.complete_contexts():63
62 scheme = 'https'
63 address = resolve_address(endpoint_type)64 address = resolve_address(endpoint_type)
64 if is_ipv6(address):65 if is_ipv6(address):
65 address = "[{}]".format(address)66 address = "[{}]".format(address)
67
66 return '%s://%s' % (scheme, address)68 return '%s://%s' % (scheme, address)
6769
6870
71def _get_scheme(configs):
72 """Returns the scheme to use for the url (either http or https)
73 depending upon whether https is in the configs value.
74
75 :param configs: OSTemplateRenderer config templating object to inspect
76 for a complete https context.
77 :returns: either 'http' or 'https' depending on whether https is
78 configured within the configs context.
79 """
80 scheme = 'http'
81 if configs and 'https' in configs.complete_contexts():
82 scheme = 'https'
83 return scheme
84
85
86def _get_address_override(endpoint_type=PUBLIC):
87 """Returns any address overrides that the user has defined based on the
88 endpoint type.
89
90 Note: this function allows for the service name to be inserted into the
91 address if the user specifies {service_name}.somehost.org.
92
93 :param endpoint_type: the type of endpoint to retrieve the override
94 value for.
95 :returns: any endpoint address or hostname that the user has overridden
96 or None if an override is not present.
97 """
98 override_key = ADDRESS_MAP[endpoint_type]['override']
99 addr_override = config(override_key)
100 if not addr_override:
101 return None
102 else:
103 return addr_override.format(service_name=service_name())
104
105
69def resolve_address(endpoint_type=PUBLIC):106def resolve_address(endpoint_type=PUBLIC):
70 """Return unit address depending on net config.107 """Return unit address depending on net config.
71108
@@ -77,7 +114,10 @@
77114
78 :param endpoint_type: Network endpoing type115 :param endpoint_type: Network endpoing type
79 """116 """
80 resolved_address = None117 resolved_address = _get_address_override(endpoint_type)
118 if resolved_address:
119 return resolved_address
120
81 vips = config('vip')121 vips = config('vip')
82 if vips:122 if vips:
83 vips = vips.split()123 vips = vips.split()
@@ -109,38 +149,3 @@
109 "clustered=%s)" % (net_type, clustered))149 "clustered=%s)" % (net_type, clustered))
110150
111 return resolved_address151 return resolved_address
112
113
114def endpoint_url(configs, url_template, port, endpoint_type=PUBLIC,
115 override=None):
116 """Returns the correct endpoint URL to advertise to Keystone.
117
118 This method provides the correct endpoint URL which should be advertised to
119 the keystone charm for endpoint creation. This method allows for the url to
120 be overridden to force a keystone endpoint to have specific URL for any of
121 the defined scopes (admin, internal, public).
122
123 :param configs: OSTemplateRenderer config templating object to inspect
124 for a complete https context.
125 :param url_template: str format string for creating the url template. Only
126 two values will be passed - the scheme+hostname
127 returned by the canonical_url and the port.
128 :param endpoint_type: str endpoint type to resolve.
129 :param override: str the name of the config option which overrides the
130 endpoint URL defined by the charm itself. None will
131 disable any overrides (default).
132 """
133 if override:
134 # Return any user-defined overrides for the keystone endpoint URL.
135 user_value = config(override)
136 if user_value:
137 return user_value.strip()
138
139 return url_template % (canonical_url(configs, endpoint_type), port)
140
141
142public_endpoint = partial(endpoint_url, endpoint_type=PUBLIC)
143
144internal_endpoint = partial(endpoint_url, endpoint_type=INTERNAL)
145
146admin_endpoint = partial(endpoint_url, endpoint_type=ADMIN)
147152
=== modified file 'hooks/charmhelpers/contrib/openstack/neutron.py'
--- hooks/charmhelpers/contrib/openstack/neutron.py 2015-04-16 19:53:49 +0000
+++ hooks/charmhelpers/contrib/openstack/neutron.py 2015-06-04 23:12:46 +0000
@@ -256,11 +256,14 @@
256def parse_mappings(mappings):256def parse_mappings(mappings):
257 parsed = {}257 parsed = {}
258 if mappings:258 if mappings:
259 mappings = mappings.split(' ')259 mappings = mappings.split()
260 for m in mappings:260 for m in mappings:
261 p = m.partition(':')261 p = m.partition(':')
262 if p[1] == ':':262 key = p[0].strip()
263 parsed[p[0].strip()] = p[2].strip()263 if p[1]:
264 parsed[key] = p[2].strip()
265 else:
266 parsed[key] = ''
264267
265 return parsed268 return parsed
266269
@@ -283,13 +286,13 @@
283 Returns dict of the form {bridge:port}.286 Returns dict of the form {bridge:port}.
284 """287 """
285 _mappings = parse_mappings(mappings)288 _mappings = parse_mappings(mappings)
286 if not _mappings:289 if not _mappings or list(_mappings.values()) == ['']:
287 if not mappings:290 if not mappings:
288 return {}291 return {}
289292
290 # For backwards-compatibility we need to support port-only provided in293 # For backwards-compatibility we need to support port-only provided in
291 # config.294 # config.
292 _mappings = {default_bridge: mappings.split(' ')[0]}295 _mappings = {default_bridge: mappings.split()[0]}
293296
294 bridges = _mappings.keys()297 bridges = _mappings.keys()
295 ports = _mappings.values()298 ports = _mappings.values()
@@ -309,6 +312,8 @@
309312
310 Mappings must be a space-delimited list of provider:start:end mappings.313 Mappings must be a space-delimited list of provider:start:end mappings.
311314
315 The start:end range is optional and may be omitted.
316
312 Returns dict of the form {provider: (start, end)}.317 Returns dict of the form {provider: (start, end)}.
313 """318 """
314 _mappings = parse_mappings(mappings)319 _mappings = parse_mappings(mappings)
315320
=== modified file 'hooks/charmhelpers/core/hookenv.py'
--- hooks/charmhelpers/core/hookenv.py 2015-04-16 19:53:49 +0000
+++ hooks/charmhelpers/core/hookenv.py 2015-06-04 23:12:46 +0000
@@ -21,12 +21,14 @@
21# Charm Helpers Developers <juju@lists.ubuntu.com>21# Charm Helpers Developers <juju@lists.ubuntu.com>
2222
23from __future__ import print_function23from __future__ import print_function
24from functools import wraps
24import os25import os
25import json26import json
26import yaml27import yaml
27import subprocess28import subprocess
28import sys29import sys
29import errno30import errno
31import tempfile
30from subprocess import CalledProcessError32from subprocess import CalledProcessError
3133
32import six34import six
@@ -58,15 +60,17 @@
5860
59 will cache the result of unit_get + 'test' for future calls.61 will cache the result of unit_get + 'test' for future calls.
60 """62 """
63 @wraps(func)
61 def wrapper(*args, **kwargs):64 def wrapper(*args, **kwargs):
62 global cache65 global cache
63 key = str((func, args, kwargs))66 key = str((func, args, kwargs))
64 try:67 try:
65 return cache[key]68 return cache[key]
66 except KeyError:69 except KeyError:
67 res = func(*args, **kwargs)70 pass # Drop out of the exception handler scope.
68 cache[key] = res71 res = func(*args, **kwargs)
69 return res72 cache[key] = res
73 return res
70 return wrapper74 return wrapper
7175
7276
@@ -178,7 +182,7 @@
178182
179def remote_unit():183def remote_unit():
180 """The remote unit for the current relation hook"""184 """The remote unit for the current relation hook"""
181 return os.environ['JUJU_REMOTE_UNIT']185 return os.environ.get('JUJU_REMOTE_UNIT', None)
182186
183187
184def service_name():188def service_name():
@@ -250,6 +254,12 @@
250 except KeyError:254 except KeyError:
251 return (self._prev_dict or {})[key]255 return (self._prev_dict or {})[key]
252256
257 def get(self, key, default=None):
258 try:
259 return self[key]
260 except KeyError:
261 return default
262
253 def keys(self):263 def keys(self):
254 prev_keys = []264 prev_keys = []
255 if self._prev_dict is not None:265 if self._prev_dict is not None:
@@ -353,18 +363,49 @@
353 """Set relation information for the current unit"""363 """Set relation information for the current unit"""
354 relation_settings = relation_settings if relation_settings else {}364 relation_settings = relation_settings if relation_settings else {}
355 relation_cmd_line = ['relation-set']365 relation_cmd_line = ['relation-set']
366 accepts_file = "--file" in subprocess.check_output(
367 relation_cmd_line + ["--help"], universal_newlines=True)
356 if relation_id is not None:368 if relation_id is not None:
357 relation_cmd_line.extend(('-r', relation_id))369 relation_cmd_line.extend(('-r', relation_id))
358 for k, v in (list(relation_settings.items()) + list(kwargs.items())):370 settings = relation_settings.copy()
359 if v is None:371 settings.update(kwargs)
360 relation_cmd_line.append('{}='.format(k))372 for key, value in settings.items():
361 else:373 # Force value to be a string: it always should, but some call
362 relation_cmd_line.append('{}={}'.format(k, v))374 # sites pass in things like dicts or numbers.
363 subprocess.check_call(relation_cmd_line)375 if value is not None:
376 settings[key] = "{}".format(value)
377 if accepts_file:
378 # --file was introduced in Juju 1.23.2. Use it by default if
379 # available, since otherwise we'll break if the relation data is
380 # too big. Ideally we should tell relation-set to read the data from
381 # stdin, but that feature is broken in 1.23.2: Bug #1454678.
382 with tempfile.NamedTemporaryFile(delete=False) as settings_file:
383 settings_file.write(yaml.safe_dump(settings).encode("utf-8"))
384 subprocess.check_call(
385 relation_cmd_line + ["--file", settings_file.name])
386 os.remove(settings_file.name)
387 else:
388 for key, value in settings.items():
389 if value is None:
390 relation_cmd_line.append('{}='.format(key))
391 else:
392 relation_cmd_line.append('{}={}'.format(key, value))
393 subprocess.check_call(relation_cmd_line)
364 # Flush cache of any relation-gets for local unit394 # Flush cache of any relation-gets for local unit
365 flush(local_unit())395 flush(local_unit())
366396
367397
398def relation_clear(r_id=None):
399 ''' Clears any relation data already set on relation r_id '''
400 settings = relation_get(rid=r_id,
401 unit=local_unit())
402 for setting in settings:
403 if setting not in ['public-address', 'private-address']:
404 settings[setting] = None
405 relation_set(relation_id=r_id,
406 **settings)
407
408
368@cached409@cached
369def relation_ids(reltype=None):410def relation_ids(reltype=None):
370 """A list of relation_ids"""411 """A list of relation_ids"""
@@ -509,6 +550,11 @@
509 return None550 return None
510551
511552
553def unit_public_ip():
554 """Get this unit's public IP address"""
555 return unit_get('public-address')
556
557
512def unit_private_ip():558def unit_private_ip():
513 """Get this unit's private IP address"""559 """Get this unit's private IP address"""
514 return unit_get('private-address')560 return unit_get('private-address')
@@ -605,3 +651,94 @@
605651
606 The results set by action_set are preserved."""652 The results set by action_set are preserved."""
607 subprocess.check_call(['action-fail', message])653 subprocess.check_call(['action-fail', message])
654
655
656def status_set(workload_state, message):
657 """Set the workload state with a message
658
659 Use status-set to set the workload state with a message which is visible
660 to the user via juju status. If the status-set command is not found then
661 assume this is juju < 1.23 and juju-log the message unstead.
662
663 workload_state -- valid juju workload state.
664 message -- status update message
665 """
666 valid_states = ['maintenance', 'blocked', 'waiting', 'active']
667 if workload_state not in valid_states:
668 raise ValueError(
669 '{!r} is not a valid workload state'.format(workload_state)
670 )
671 cmd = ['status-set', workload_state, message]
672 try:
673 ret = subprocess.call(cmd)
674 if ret == 0:
675 return
676 except OSError as e:
677 if e.errno != errno.ENOENT:
678 raise
679 log_message = 'status-set failed: {} {}'.format(workload_state,
680 message)
681 log(log_message, level='INFO')
682
683
684def status_get():
685 """Retrieve the previously set juju workload state
686
687 If the status-set command is not found then assume this is juju < 1.23 and
688 return 'unknown'
689 """
690 cmd = ['status-get']
691 try:
692 raw_status = subprocess.check_output(cmd, universal_newlines=True)
693 status = raw_status.rstrip()
694 return status
695 except OSError as e:
696 if e.errno == errno.ENOENT:
697 return 'unknown'
698 else:
699 raise
700
701
702def translate_exc(from_exc, to_exc):
703 def inner_translate_exc1(f):
704 def inner_translate_exc2(*args, **kwargs):
705 try:
706 return f(*args, **kwargs)
707 except from_exc:
708 raise to_exc
709
710 return inner_translate_exc2
711
712 return inner_translate_exc1
713
714
715@translate_exc(from_exc=OSError, to_exc=NotImplementedError)
716def is_leader():
717 """Does the current unit hold the juju leadership
718
719 Uses juju to determine whether the current unit is the leader of its peers
720 """
721 cmd = ['is-leader', '--format=json']
722 return json.loads(subprocess.check_output(cmd).decode('UTF-8'))
723
724
725@translate_exc(from_exc=OSError, to_exc=NotImplementedError)
726def leader_get(attribute=None):
727 """Juju leader get value(s)"""
728 cmd = ['leader-get', '--format=json'] + [attribute or '-']
729 return json.loads(subprocess.check_output(cmd).decode('UTF-8'))
730
731
732@translate_exc(from_exc=OSError, to_exc=NotImplementedError)
733def leader_set(settings=None, **kwargs):
734 """Juju leader set value(s)"""
735 log("Juju leader-set '%s'" % (settings), level=DEBUG)
736 cmd = ['leader-set']
737 settings = settings or {}
738 settings.update(kwargs)
739 for k, v in settings.iteritems():
740 if v is None:
741 cmd.append('{}='.format(k))
742 else:
743 cmd.append('{}={}'.format(k, v))
744 subprocess.check_call(cmd)
608745
=== modified file 'hooks/charmhelpers/core/host.py'
--- hooks/charmhelpers/core/host.py 2015-03-20 17:15:02 +0000
+++ hooks/charmhelpers/core/host.py 2015-06-04 23:12:46 +0000
@@ -90,7 +90,7 @@
90 ['service', service_name, 'status'],90 ['service', service_name, 'status'],
91 stderr=subprocess.STDOUT).decode('UTF-8')91 stderr=subprocess.STDOUT).decode('UTF-8')
92 except subprocess.CalledProcessError as e:92 except subprocess.CalledProcessError as e:
93 return 'unrecognized service' not in e.output93 return b'unrecognized service' not in e.output
94 else:94 else:
95 return True95 return True
9696
9797
=== modified file 'hooks/charmhelpers/core/services/base.py'
--- hooks/charmhelpers/core/services/base.py 2015-03-20 17:15:02 +0000
+++ hooks/charmhelpers/core/services/base.py 2015-06-04 23:12:46 +0000
@@ -15,9 +15,9 @@
15# along with charm-helpers. If not, see <http://www.gnu.org/licenses/>.15# along with charm-helpers. If not, see <http://www.gnu.org/licenses/>.
1616
17import os17import os
18import re
19import json18import json
20from collections import Iterable19from inspect import getargspec
20from collections import Iterable, OrderedDict
2121
22from charmhelpers.core import host22from charmhelpers.core import host
23from charmhelpers.core import hookenv23from charmhelpers.core import hookenv
@@ -119,7 +119,7 @@
119 """119 """
120 self._ready_file = os.path.join(hookenv.charm_dir(), 'READY-SERVICES.json')120 self._ready_file = os.path.join(hookenv.charm_dir(), 'READY-SERVICES.json')
121 self._ready = None121 self._ready = None
122 self.services = {}122 self.services = OrderedDict()
123 for service in services or []:123 for service in services or []:
124 service_name = service['service']124 service_name = service['service']
125 self.services[service_name] = service125 self.services[service_name] = service
@@ -132,8 +132,8 @@
132 if hook_name == 'stop':132 if hook_name == 'stop':
133 self.stop_services()133 self.stop_services()
134 else:134 else:
135 self.reconfigure_services()
135 self.provide_data()136 self.provide_data()
136 self.reconfigure_services()
137 cfg = hookenv.config()137 cfg = hookenv.config()
138 if cfg.implicit_save:138 if cfg.implicit_save:
139 cfg.save()139 cfg.save()
@@ -145,15 +145,36 @@
145 A provider must have a `name` attribute, which indicates which relation145 A provider must have a `name` attribute, which indicates which relation
146 to set data on, and a `provide_data()` method, which returns a dict of146 to set data on, and a `provide_data()` method, which returns a dict of
147 data to set.147 data to set.
148
149 The `provide_data()` method can optionally accept two parameters:
150
151 * ``remote_service`` The name of the remote service that the data will
152 be provided to. The `provide_data()` method will be called once
153 for each connected service (not unit). This allows the method to
154 tailor its data to the given service.
155 * ``service_ready`` Whether or not the service definition had all of
156 its requirements met, and thus the ``data_ready`` callbacks run.
157
158 Note that the ``provided_data`` methods are now called **after** the
159 ``data_ready`` callbacks are run. This gives the ``data_ready`` callbacks
160 a chance to generate any data necessary for the providing to the remote
161 services.
148 """162 """
149 hook_name = hookenv.hook_name()163 for service_name, service in self.services.items():
150 for service in self.services.values():164 service_ready = self.is_ready(service_name)
151 for provider in service.get('provided_data', []):165 for provider in service.get('provided_data', []):
152 if re.match(r'{}-relation-(joined|changed)'.format(provider.name), hook_name):166 for relid in hookenv.relation_ids(provider.name):
153 data = provider.provide_data()167 units = hookenv.related_units(relid)
154 _ready = provider._is_ready(data) if hasattr(provider, '_is_ready') else data168 if not units:
155 if _ready:169 continue
156 hookenv.relation_set(None, data)170 remote_service = units[0].split('/')[0]
171 argspec = getargspec(provider.provide_data)
172 if len(argspec.args) > 1:
173 data = provider.provide_data(remote_service, service_ready)
174 else:
175 data = provider.provide_data()
176 if data:
177 hookenv.relation_set(relid, data)
157178
158 def reconfigure_services(self, *service_names):179 def reconfigure_services(self, *service_names):
159 """180 """
160181
=== modified file 'hooks/charmhelpers/fetch/__init__.py'
--- hooks/charmhelpers/fetch/__init__.py 2015-05-01 14:56:06 +0000
+++ hooks/charmhelpers/fetch/__init__.py 2015-06-04 23:12:46 +0000
@@ -158,7 +158,7 @@
158158
159def apt_cache(in_memory=True):159def apt_cache(in_memory=True):
160 """Build and return an apt cache"""160 """Build and return an apt cache"""
161 import apt_pkg161 from apt import apt_pkg
162 apt_pkg.init()162 apt_pkg.init()
163 if in_memory:163 if in_memory:
164 apt_pkg.config.set("Dir::Cache::pkgcache", "")164 apt_pkg.config.set("Dir::Cache::pkgcache", "")
165165
=== modified file 'unit_tests/test_glance_relations.py'
--- unit_tests/test_glance_relations.py 2015-05-12 19:46:43 +0000
+++ unit_tests/test_glance_relations.py 2015-06-04 23:12:46 +0000
@@ -24,7 +24,6 @@
24TO_PATCH = [24TO_PATCH = [
25 # charmhelpers.core.hookenv25 # charmhelpers.core.hookenv
26 'Hooks',26 'Hooks',
27 'canonical_url',
28 'config',27 'config',
29 'juju_log',28 'juju_log',
30 'is_relation_made',29 'is_relation_made',
@@ -320,8 +319,9 @@
320 )319 )
321 self.migrate_database.assert_called_with()320 self.migrate_database.assert_called_with()
322321
323 def test_image_service_joined_leader(self):322 @patch.object(relations, 'canonical_url')
324 self.canonical_url.return_value = 'http://glancehost'323 def test_image_service_joined_leader(self, _canonical_url):
324 _canonical_url.return_value = 'http://glancehost'
325 relations.image_service_joined()325 relations.image_service_joined()
326 args = {326 args = {
327 'glance-api-server': 'http://glancehost:9292',327 'glance-api-server': 'http://glancehost:9292',
@@ -329,8 +329,9 @@
329 }329 }
330 self.relation_set.assert_called_with(**args)330 self.relation_set.assert_called_with(**args)
331331
332 def test_image_service_joined_specified_interface(self):332 @patch.object(relations, 'canonical_url')
333 self.canonical_url.return_value = 'http://glancehost'333 def test_image_service_joined_specified_interface(self, _canonical_url):
334 _canonical_url.return_value = 'http://glancehost'
334 relations.image_service_joined(relation_id='image-service:1')335 relations.image_service_joined(relation_id='image-service:1')
335 args = {336 args = {
336 'glance-api-server': 'http://glancehost:9292',337 'glance-api-server': 'http://glancehost:9292',
@@ -417,10 +418,12 @@
417 for c in [call('/etc/glance/glance.conf')]:418 for c in [call('/etc/glance/glance.conf')]:
418 self.assertNotIn(c, configs.write.call_args_list)419 self.assertNotIn(c, configs.write.call_args_list)
419420
421 @patch("charmhelpers.core.host.service")
420 @patch("glance_relations.relation_get", autospec=True)422 @patch("glance_relations.relation_get", autospec=True)
421 @patch.object(relations, 'CONFIGS')423 @patch.object(relations, 'CONFIGS')
422 def test_ceph_changed_with_key_and_relation_data(self, configs,424 def test_ceph_changed_with_key_and_relation_data(self, configs,
423 mock_relation_get):425 mock_relation_get,
426 mock_service):
424 configs.complete_contexts = MagicMock()427 configs.complete_contexts = MagicMock()
425 configs.complete_contexts.return_value = ['ceph']428 configs.complete_contexts.return_value = ['ceph']
426 configs.write = MagicMock()429 configs.write = MagicMock()
@@ -439,8 +442,9 @@
439 self.delete_keyring.assert_called_with(service='glance')442 self.delete_keyring.assert_called_with(service='glance')
440 self.assertTrue(configs.write_all.called)443 self.assertTrue(configs.write_all.called)
441444
442 def test_keystone_joined(self):445 @patch.object(relations, 'canonical_url')
443 self.canonical_url.return_value = 'http://glancehost'446 def test_keystone_joined(self, _canonical_url):
447 _canonical_url.return_value = 'http://glancehost'
444 relations.keystone_joined()448 relations.keystone_joined()
445 ex = {449 ex = {
446 'region': 'RegionOne',450 'region': 'RegionOne',
@@ -452,8 +456,9 @@
452 }456 }
453 self.relation_set.assert_called_with(**ex)457 self.relation_set.assert_called_with(**ex)
454458
455 def test_keystone_joined_with_relation_id(self):459 @patch.object(relations, 'canonical_url')
456 self.canonical_url.return_value = 'http://glancehost'460 def test_keystone_joined_with_relation_id(self, _canonical_url):
461 _canonical_url.return_value = 'http://glancehost'
457 relations.keystone_joined(relation_id='identity-service:0')462 relations.keystone_joined(relation_id='identity-service:0')
458 ex = {463 ex = {
459 'region': 'RegionOne',464 'region': 'RegionOne',
@@ -465,6 +470,26 @@
465 }470 }
466 self.relation_set.assert_called_with(**ex)471 self.relation_set.assert_called_with(**ex)
467472
473 @patch('charmhelpers.contrib.openstack.ip.is_clustered')
474 @patch('charmhelpers.contrib.openstack.ip.unit_get')
475 @patch('charmhelpers.contrib.openstack.ip.config')
476 def test_keystone_joined_public_endpoint(self, _config, _unit_get,
477 _is_clustered):
478 _unit_get.return_value = 'glancehost'
479 _is_clustered.return_value = False
480 self.test_config.set('os-public-hostname', 'glance.example.com')
481 _config.side_effect = self.test_config.get
482 relations.keystone_joined()
483 ex = {
484 'region': 'RegionOne',
485 'public_url': 'http://glance.example.com:9292',
486 'admin_url': 'http://glancehost:9292',
487 'service': 'glance',
488 'internal_url': 'http://glancehost:9292',
489 'relation_id': None,
490 }
491 self.relation_set.assert_called_with(**ex)
492
468 @patch.object(relations, 'CONFIGS')493 @patch.object(relations, 'CONFIGS')
469 def test_keystone_changes_incomplete(self, configs):494 def test_keystone_changes_incomplete(self, configs):
470 configs.complete_contexts.return_value = []495 configs.complete_contexts.return_value = []
@@ -570,9 +595,11 @@
570 call('/etc/haproxy/haproxy.cfg')],595 call('/etc/haproxy/haproxy.cfg')],
571 configs.write.call_args_list)596 configs.write.call_args_list)
572597
598 @patch.object(relations, 'canonical_url')
573 @patch.object(relations, 'relation_set')599 @patch.object(relations, 'relation_set')
574 @patch.object(relations, 'CONFIGS')600 @patch.object(relations, 'CONFIGS')
575 def test_cluster_changed_with_ipv6(self, configs, relation_set):601 def test_cluster_changed_with_ipv6(self, configs, relation_set,
602 _canonical_url):
576 self.test_config.set('prefer-ipv6', True)603 self.test_config.set('prefer-ipv6', True)
577 configs.complete_contexts = MagicMock()604 configs.complete_contexts = MagicMock()
578 configs.complete_contexts.return_value = ['cluster']605 configs.complete_contexts.return_value = ['cluster']
@@ -683,10 +710,11 @@
683 'ha_changed: hacluster subordinate is not fully clustered.'710 'ha_changed: hacluster subordinate is not fully clustered.'
684 )711 )
685712
713 @patch.object(relations, 'canonical_url')
686 @patch.object(relations, 'keystone_joined')714 @patch.object(relations, 'keystone_joined')
687 @patch.object(relations, 'CONFIGS')715 @patch.object(relations, 'CONFIGS')
688 def test_configure_https_enable_with_identity_service(716 def test_configure_https_enable_with_identity_service(
689 self, configs, keystone_joined):717 self, configs, keystone_joined, _canonical_url):
690 configs.complete_contexts = MagicMock()718 configs.complete_contexts = MagicMock()
691 configs.complete_contexts.return_value = ['https']719 configs.complete_contexts.return_value = ['https']
692 configs.write = MagicMock()720 configs.write = MagicMock()
@@ -697,10 +725,11 @@
697 self.check_call.assert_called_has_calls(calls)725 self.check_call.assert_called_has_calls(calls)
698 keystone_joined.assert_called_with(relation_id='identity-service:0')726 keystone_joined.assert_called_with(relation_id='identity-service:0')
699727
728 @patch.object(relations, 'canonical_url')
700 @patch.object(relations, 'keystone_joined')729 @patch.object(relations, 'keystone_joined')
701 @patch.object(relations, 'CONFIGS')730 @patch.object(relations, 'CONFIGS')
702 def test_configure_https_disable_with_keystone_joined(731 def test_configure_https_disable_with_keystone_joined(
703 self, configs, keystone_joined):732 self, configs, keystone_joined, _canonical_url):
704 configs.complete_contexts = MagicMock()733 configs.complete_contexts = MagicMock()
705 configs.complete_contexts.return_value = ['']734 configs.complete_contexts.return_value = ['']
706 configs.write = MagicMock()735 configs.write = MagicMock()
@@ -711,10 +740,11 @@
711 self.check_call.assert_called_has_calls(calls)740 self.check_call.assert_called_has_calls(calls)
712 keystone_joined.assert_called_with(relation_id='identity-service:0')741 keystone_joined.assert_called_with(relation_id='identity-service:0')
713742
743 @patch.object(relations, 'canonical_url')
714 @patch.object(relations, 'image_service_joined')744 @patch.object(relations, 'image_service_joined')
715 @patch.object(relations, 'CONFIGS')745 @patch.object(relations, 'CONFIGS')
716 def test_configure_https_enable_with_image_service(746 def test_configure_https_enable_with_image_service(
717 self, configs, image_service_joined):747 self, configs, image_service_joined, _canonical_url):
718 configs.complete_contexts = MagicMock()748 configs.complete_contexts = MagicMock()
719 configs.complete_contexts.return_value = ['https']749 configs.complete_contexts.return_value = ['https']
720 configs.write = MagicMock()750 configs.write = MagicMock()
@@ -725,10 +755,11 @@
725 self.check_call.assert_called_has_calls(calls)755 self.check_call.assert_called_has_calls(calls)
726 image_service_joined.assert_called_with(relation_id='image-service:0')756 image_service_joined.assert_called_with(relation_id='image-service:0')
727757
758 @patch.object(relations, 'canonical_url')
728 @patch.object(relations, 'image_service_joined')759 @patch.object(relations, 'image_service_joined')
729 @patch.object(relations, 'CONFIGS')760 @patch.object(relations, 'CONFIGS')
730 def test_configure_https_disable_with_image_service(761 def test_configure_https_disable_with_image_service(
731 self, configs, image_service_joined):762 self, configs, image_service_joined, _canonical_url):
732 configs.complete_contexts = MagicMock()763 configs.complete_contexts = MagicMock()
733 configs.complete_contexts.return_value = ['']764 configs.complete_contexts.return_value = ['']
734 configs.write = MagicMock()765 configs.write = MagicMock()

Subscribers

People subscribed via source and target branches