From fddbe62e277542d76ec6147f0d3e97f3c451917c Mon Sep 17 00:00:00 2001 From: Diego Tapia <64498901+dtapia-IT@users.noreply.github.com> Date: Fri, 26 Apr 2024 12:30:29 -0400 Subject: [PATCH] (spec) clean up old core3.cp tests --- spec/hosts/nodes/core3.cp.lsst.org_spec.rb | 48 ---------------------- 1 file changed, 48 deletions(-) delete mode 100644 spec/hosts/nodes/core3.cp.lsst.org_spec.rb diff --git a/spec/hosts/nodes/core3.cp.lsst.org_spec.rb b/spec/hosts/nodes/core3.cp.lsst.org_spec.rb deleted file mode 100644 index 6c59eb405a..0000000000 --- a/spec/hosts/nodes/core3.cp.lsst.org_spec.rb +++ /dev/null @@ -1,48 +0,0 @@ -# frozen_string_literal: true - -require 'spec_helper' - -describe 'core3.cp.lsst.org', :sitepp do - on_supported_os.each do |os, os_facts| - # XXX networking needs to be updated to support EL8+ - next unless os =~ %r{centos-7-x86_64} - - context "on #{os}" do - let(:facts) do - override_facts(os_facts, - fqdn: 'core3.cp.lsst.org', - is_virtual: false, - virtual: 'physical', - dmi: { - 'product' => { - 'name' => 'PowerEdge R440', - }, - }) - end - let(:node_params) do - { - role: 'hypervisor', - site: 'cp', - } - end - - it { is_expected.to compile.with_all_deps } - - include_examples('baremetal', - bmc: { - lan1: { - ip: '10.18.3.12', - netmask: '255.255.255.0', - gateway: '10.18.3.254', - type: 'static', - }, - }) - - it do - is_expected.to contain_network__interface('em1').with( - ipaddress: '139.229.160.3', - ) - end - end # on os - end # on_supported_os -end # role