(maint) change domain to example.com

Prior to this commit the docs and examples used 'company.com'
(a real domain). This commit changes those occurrences to
'example.com', which is a IANA-managed reserved domain.
This commit is contained in:
Steve Axthelm 2018-07-19 15:19:26 -07:00
parent 099b53f348
commit c3d90dbfa6
9 changed files with 44 additions and 44 deletions

View file

@ -23,7 +23,7 @@
allowed_tags:
- 'created_by'
- 'project'
domain: 'company.com'
domain: 'example.com'
prefix: 'poolvm-'
# Uncomment the lines below to suppress metrics to STDOUT

View file

@ -23,7 +23,7 @@
allowed_tags:
- 'created_by'
- 'project'
domain: 'company.com'
domain: 'example.com'
prefix: 'poolvm-'
# Uncomment the lines below to suppress metrics to STDOUT

View file

@ -2255,7 +2255,7 @@ EOT
let(:config) {
YAML.load(<<-EOT
:vsphere:
server: 'vsphere.company.com'
server: 'vsphere.example.com'
username: 'vmpooler'
password: 'password'
:pools:
@ -2267,7 +2267,7 @@ EOT
expect(subject.config[:providers]).to be nil
subject.execute!(1,0)
expect(subject.config[:providers][:vsphere]['server']).to eq('vsphere.company.com')
expect(subject.config[:providers][:vsphere]['server']).to eq('vsphere.example.com')
expect(subject.config[:providers][:vsphere]['username']).to eq('vmpooler')
expect(subject.config[:providers][:vsphere]['password']).to eq('password')
end