From e78fbcc5e472824d043daf74bd689ce470f1ce3e Mon Sep 17 00:00:00 2001 From: Yolanda Robla Mota Date: Mon, 3 Oct 2016 10:33:17 +0200 Subject: Add missing dhcp_static_mask value Change-Id: I1ba1aeea6a9a5a97b592e484b205868811b9f4e9 Signed-Off-By: Yolanda Robla --- prototypes/puppet-infracloud/hiera/common.yaml | 1 + prototypes/puppet-infracloud/manifests/site.pp | 1 + 2 files changed, 2 insertions(+) diff --git a/prototypes/puppet-infracloud/hiera/common.yaml b/prototypes/puppet-infracloud/hiera/common.yaml index 9357b6489..5a758afe4 100644 --- a/prototypes/puppet-infracloud/hiera/common.yaml +++ b/prototypes/puppet-infracloud/hiera/common.yaml @@ -112,6 +112,7 @@ bifrost_ssh_public_key: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC/CvYtt8lC4pkM5Cx7 infracloud_vlan: 415 infracloud_gateway_ip: 172.30.13.1 default_network_interface: eno3 +dhcp_static_mask: 255.255.255.128 dchp_pool_start: 10.20.0.130 dhcp_pool_end: 10.20.0.254 network_interface: eno1 diff --git a/prototypes/puppet-infracloud/manifests/site.pp b/prototypes/puppet-infracloud/manifests/site.pp index ae229d8ee..144906061 100644 --- a/prototypes/puppet-infracloud/manifests/site.pp +++ b/prototypes/puppet-infracloud/manifests/site.pp @@ -91,6 +91,7 @@ node 'baremetal.opnfvlocal', 'lfpod5-jumpserver' { vlan => hiera('infracloud_vlan'), gateway_ip => hiera('infracloud_gateway_ip'), default_network_interface => hiera('default_network_interface'), + dhcp_static_mask => hiera('dhcp_static_mask'), dhcp_pool_start => hiera('dhcp_pool_start'), dhcp_pool_end => hiera('dhcp_pool_end'), network_interface => hiera('network_interface'), -- cgit 1.2.3-korg