diff options
author | Giulio Fidente <gfidente@redhat.com> | 2017-08-08 21:00:30 +0200 |
---|---|---|
committer | Giulio Fidente <gfidente@redhat.com> | 2017-08-08 21:00:30 +0200 |
commit | 7d332c92a688112aa4e182e5d0df272ad98a527a (patch) | |
tree | 2b192c0920d36d0855b700140454e3caba4de4da /network/storage_v6.yaml | |
parent | 5bf7d6582b2346a9c1671430ebead6c358508863 (diff) |
Fix cidr get_attr in custom networks
We were missing the square brackets around the list of arguments
for get_attr when building the networks cidr output.
This passed CI because Heat does not fail validation and Ceph (which
is consuming the cidr output) is tested with a single network (ctlplane)
which does not build the output using the same templates.
Change-Id: I40bba0784a30295cb0d4eda1fbff20ebac85db99
Closes-Bug: #1709464
Diffstat (limited to 'network/storage_v6.yaml')
-rw-r--r-- | network/storage_v6.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/network/storage_v6.yaml b/network/storage_v6.yaml index bf796b2b..51edd4b3 100644 --- a/network/storage_v6.yaml +++ b/network/storage_v6.yaml @@ -69,4 +69,4 @@ outputs: description: Neutron storage network value: {get_resource: StorageNetwork} subnet_cidr: - value: {get_attr: StorageSubnet, cidr} + value: {get_attr: [StorageSubnet, cidr]} |