aboutsummaryrefslogtreecommitdiffstats
path: root/spec/classes
diff options
context:
space:
mode:
authorBrent Eagles <beagles@redhat.com>2017-08-24 17:13:01 -0230
committerBrent Eagles <beagles@redhat.com>2017-08-26 09:34:55 -0230
commit6786525fda6b8b2e3ca7ade98666a5ba1758d5af (patch)
tree9270fc30a2ee8e4819b840edd31833cbce94f9d5 /spec/classes
parent3dbb20825ab309320df401ad2ae7176df20e9306 (diff)
Repair immediate VF configuration for PCI SR-IOV
Change I71edc135432ab2193741c37ce977dd11172401e6 broke the host VF configuration that set VF counts when the puppet is applied. This patch re-adds the ensure => present property required for proper behavior. Change-Id: Ibd18c4f3b7f0d8cee330f94f87e7ad4ea7ceeffb Closes-Bug: #1712903 (cherry picked from commit 1e133f31466bf17df66b0f552a2ce5b3b056e666)
Diffstat (limited to 'spec/classes')
-rw-r--r--spec/classes/tripleo_host_sriov_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/classes/tripleo_host_sriov_spec.rb b/spec/classes/tripleo_host_sriov_spec.rb
index eb2213a..4c81c72 100644
--- a/spec/classes/tripleo_host_sriov_spec.rb
+++ b/spec/classes/tripleo_host_sriov_spec.rb
@@ -17,8 +17,8 @@ describe 'tripleo::host::sriov' do
end
it 'configures numvfs' do
- is_expected.to contain_sriov_vf_config('eth0:4')
- is_expected.to contain_sriov_vf_config('eth1:5')
+ is_expected.to contain_sriov_vf_config('eth0:4').with( :ensure => 'present' )
+ is_expected.to contain_sriov_vf_config('eth1:5').with( :ensure => 'present' )
is_expected.to contain_tripleo__host__sriov__numvfs_persistence('persistent_numvfs').with(
:vf_defs => ['eth0:4','eth1:5'],
:content_string => "#!/bin/bash\n"