diff options
author | Guillermo Herrero <guillermo.herrero@enea.com> | 2018-01-11 13:23:28 +0100 |
---|---|---|
committer | Guillermo Herrero <guillermo.herrero@enea.com> | 2018-01-22 12:07:17 +0100 |
commit | 7c79115c2a1b6716f23f73be244bd1840a9e6f82 (patch) | |
tree | f6d44c8a2ce3c478d9c71548fed7db5b46350bbe /mcp/scripts/lib.sh | |
parent | 252fd2b6fe32a77a4014ce33ead9f77817b1d2c9 (diff) |
Add support for different public network netmask
- Remove hardcoded /24 mask
- Use PDF as source for public network, with reclass params:
opnfv_net_public, _mask, _gw, _pool_start, _pool_end
JIRA: FUEL-315
Change-Id: Idf3a4ed8f63f58fa90d9c1dcb7751ef3b1c9bd36
Signed-off-by: Guillermo Herrero <guillermo.herrero@enea.com>
Diffstat (limited to 'mcp/scripts/lib.sh')
-rw-r--r-- | mcp/scripts/lib.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mcp/scripts/lib.sh b/mcp/scripts/lib.sh index 29c27d9e9..298590309 100644 --- a/mcp/scripts/lib.sh +++ b/mcp/scripts/lib.sh @@ -456,3 +456,10 @@ function wait_for { return 1 ) } + +function get_nova_compute_pillar_data { + local value=$(salt -C 'I@nova:compute and *01*' pillar.get _param:"${1}" --out yaml | cut -d ' ' -f2) + if [ "${value}" != "''" ]; then + echo ${value} + fi +} |