Killed trailing spaces in group/host vars with fire.
Normally it's just a nitpick to not have trailing spaces on variables. However, for some things like mac address, it really matters. Bunches of buildhw's were failing ansibile because they were passing "mac address " to linux-system-roles networking and ansible was going 'huh, nope, I can't find that mac address here at all'. So, just blow all the tailing spaces away to avoid any other variables that hit this. Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
parent
f7f7a3e8de
commit
3c12ef6aa9
231 changed files with 947 additions and 949 deletions
|
@ -406,18 +406,18 @@ dns2: "10.3.163.34"
|
||||||
# This is a list of services that need to wait for VPN to be up before getting started.
|
# This is a list of services that need to wait for VPN to be up before getting started.
|
||||||
postvpnservices: []
|
postvpnservices: []
|
||||||
|
|
||||||
# true or false if we are or are not a copr build virthost.
|
# true or false if we are or are not a copr build virthost.
|
||||||
# Default to false
|
# Default to false
|
||||||
copr_build_virthost: false
|
copr_build_virthost: false
|
||||||
|
|
||||||
#
|
#
|
||||||
# Set a redirectmatch variable we can use to disable some redirectmatches
|
# Set a redirectmatch variable we can use to disable some redirectmatches
|
||||||
# like the prerelease to final ones.
|
# like the prerelease to final ones.
|
||||||
#
|
#
|
||||||
redirectmatch_enabled: True
|
redirectmatch_enabled: True
|
||||||
|
|
||||||
#
|
#
|
||||||
# sshd can run a internal sftp server, we need this on some hosts, but
|
# sshd can run a internal sftp server, we need this on some hosts, but
|
||||||
# not on most of them, so default to false
|
# not on most of them, so default to false
|
||||||
sshd_sftp: false
|
sshd_sftp: false
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 30000
|
lvm_size: 30000
|
||||||
mem_size: 2048
|
mem_size: 2048
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -53,7 +53,7 @@ csi_relationship: |
|
||||||
|
|
||||||
* Locally, of note there exists:
|
* Locally, of note there exists:
|
||||||
* a git repo of badge rules and images to be synced here by ansible
|
* a git repo of badge rules and images to be synced here by ansible
|
||||||
to /usr/share/badges/
|
to /usr/share/badges/
|
||||||
* a local file cache in /var/tmp/fedbadges-cache.dbm (not memcached, atm)
|
* a local file cache in /var/tmp/fedbadges-cache.dbm (not memcached, atm)
|
||||||
* Furthermore, there are a ton of cronjobs for awarding badges in
|
* Furthermore, there are a ton of cronjobs for awarding badges in
|
||||||
/usr/share/badges/cronjobs/ that depends on all sorts of third parties
|
/usr/share/badges/cronjobs/ that depends on all sorts of third parties
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 8192
|
mem_size: 8192
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
@ -52,7 +52,7 @@ csi_relationship: |
|
||||||
|
|
||||||
* Locally, of note there exists:
|
* Locally, of note there exists:
|
||||||
* a git repo of badge rules and images to be synced here by ansible
|
* a git repo of badge rules and images to be synced here by ansible
|
||||||
to /usr/share/badges/
|
to /usr/share/badges/
|
||||||
* a local file cache in /var/tmp/fedbadges-cache.dbm (not memcached, atm)
|
* a local file cache in /var/tmp/fedbadges-cache.dbm (not memcached, atm)
|
||||||
* Furthermore, there are a ton of cronjobs for awarding badges in
|
* Furthermore, there are a ton of cronjobs for awarding badges in
|
||||||
/usr/share/badges/cronjobs/ that depends on all sorts of third parties
|
/usr/share/badges/cronjobs/ that depends on all sorts of third parties
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 2048
|
mem_size: 2048
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -65,9 +65,9 @@ csi_purpose: Central management host for ansible
|
||||||
csi_relationship: |
|
csi_relationship: |
|
||||||
From the batcave batman ventures out to fight crime and protect gotham city!
|
From the batcave batman ventures out to fight crime and protect gotham city!
|
||||||
|
|
||||||
batcave is the central management host for ansible.
|
batcave is the central management host for ansible.
|
||||||
It also is the infrastructure.fedoraproject.org website with various content.
|
It also is the infrastructure.fedoraproject.org website with various content.
|
||||||
It houses a number of infrastructure git repos.
|
It houses a number of infrastructure git repos.
|
||||||
|
|
||||||
* This host relies on:
|
* This host relies on:
|
||||||
The virthost it's hosted on (virthost22)
|
The virthost it's hosted on (virthost22)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 4096
|
mem_size: 4096
|
||||||
num_cpus: 1
|
num_cpus: 1
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 8192
|
mem_size: 8192
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 4096
|
mem_size: 4096
|
||||||
num_cpus: 1
|
num_cpus: 1
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 2048
|
mem_size: 2048
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 2048
|
mem_size: 2048
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
nagios_Check_Services:
|
nagios_Check_Services:
|
||||||
mail: false
|
mail: false
|
||||||
nrpe: false
|
nrpe: false
|
||||||
swap: false
|
swap: false
|
||||||
|
|
|
@ -16,7 +16,7 @@ postfix_maincf: "postfix/main.cf/main.cf.copr"
|
||||||
frontend_base_url: "https://copr.fedorainfracloud.org"
|
frontend_base_url: "https://copr.fedorainfracloud.org"
|
||||||
dist_git_base_url: "copr-dist-git.fedorainfracloud.org"
|
dist_git_base_url: "copr-dist-git.fedorainfracloud.org"
|
||||||
|
|
||||||
ansible_ifcfg_blocklist: true
|
ansible_ifcfg_blocklist: true
|
||||||
|
|
||||||
copr_aws_region: us-east-1
|
copr_aws_region: us-east-1
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ postfix_maincf: "postfix/main.cf/main.cf.copr"
|
||||||
frontend_base_url: "https://copr-fe-dev.cloud.fedoraproject.org"
|
frontend_base_url: "https://copr-fe-dev.cloud.fedoraproject.org"
|
||||||
dist_git_base_url: "copr-dist-git-dev.fedorainfracloud.org"
|
dist_git_base_url: "copr-dist-git-dev.fedorainfracloud.org"
|
||||||
|
|
||||||
ansible_ifcfg_blocklist: true
|
ansible_ifcfg_blocklist: true
|
||||||
|
|
||||||
copr_aws_region: us-east-1
|
copr_aws_region: us-east-1
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 8192
|
mem_size: 8192
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 2048
|
mem_size: 2048
|
||||||
num_cpus: 1
|
num_cpus: 1
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 500000
|
lvm_size: 500000
|
||||||
mem_size: 8192
|
mem_size: 8192
|
||||||
max_mem_size: 16384
|
max_mem_size: 16384
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 500000
|
lvm_size: 500000
|
||||||
mem_size: 8192
|
mem_size: 8192
|
||||||
max_mem_size: 16384
|
max_mem_size: 16384
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 30000
|
lvm_size: 30000
|
||||||
mem_size: 2048
|
mem_size: 2048
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -21,7 +21,7 @@ ipa_client_shell_groups:
|
||||||
ipa_client_sudo_groups:
|
ipa_client_sudo_groups:
|
||||||
- sysadmin-releng
|
- sysadmin-releng
|
||||||
|
|
||||||
fedmsg_debug_loopback: True
|
fedmsg_debug_loopback: True
|
||||||
|
|
||||||
# These people get told when something goes wrong.
|
# These people get told when something goes wrong.
|
||||||
fedmsg_error_recipients:
|
fedmsg_error_recipients:
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 4096
|
mem_size: 4096
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 2048
|
mem_size: 2048
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 4096
|
mem_size: 4096
|
||||||
num_cpus: 1
|
num_cpus: 1
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
freezes: False
|
freezes: False
|
||||||
csi_purpose: GNOME Infrastructure Backups facility
|
csi_purpose: GNOME Infrastructure Backups facility
|
||||||
csi_relationship: |
|
csi_relationship: |
|
||||||
Provides rdiff-backup based backups to all the GNOME Infrastructure
|
Provides rdiff-backup based backups to all the GNOME Infrastructure
|
||||||
machines and services
|
machines and services
|
||||||
- This machine mainly relies on the Red Hat sponsored NetApp assigned
|
- This machine mainly relies on the Red Hat sponsored NetApp assigned
|
||||||
to the GNOME Project where all the backups do reside
|
to the GNOME Project where all the backups do reside
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 30000
|
lvm_size: 30000
|
||||||
mem_size: 8192
|
mem_size: 8192
|
||||||
num_cpus: 4
|
num_cpus: 4
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 4096
|
mem_size: 4096
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 4096
|
mem_size: 4096
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 4096
|
mem_size: 4096
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -32,7 +32,7 @@ csi_purpose: Cache packages from koji for builders and others
|
||||||
csi_relationship: |
|
csi_relationship: |
|
||||||
There are a few things running here:
|
There are a few things running here:
|
||||||
|
|
||||||
- apache web server and varnish caching proxy.
|
- apache web server and varnish caching proxy.
|
||||||
|
|
||||||
- This host relies on:
|
- This host relies on:
|
||||||
- koji nfs storage
|
- koji nfs storage
|
||||||
|
@ -41,6 +41,6 @@ csi_relationship: |
|
||||||
- Things that rely on this host:
|
- Things that rely on this host:
|
||||||
- all koji builders/buildsystem
|
- all koji builders/buildsystem
|
||||||
- koschei
|
- koschei
|
||||||
- external users downloading packages from koji.
|
- external users downloading packages from koji.
|
||||||
|
|
||||||
virt_install_command: "{{ virt_install_command_two_nic }}"
|
virt_install_command: "{{ virt_install_command_two_nic }}"
|
||||||
|
|
|
@ -3,7 +3,7 @@ freezes: false
|
||||||
sudoers: "{{ private }}/files/sudo/arm-packager-sudoers"
|
sudoers: "{{ private }}/files/sudo/arm-packager-sudoers"
|
||||||
sudoers_main: nopasswd
|
sudoers_main: nopasswd
|
||||||
datacenter: aws
|
datacenter: aws
|
||||||
ansible_ifcfg_blocklist: true
|
ansible_ifcfg_blocklist: true
|
||||||
|
|
||||||
vpn: true
|
vpn: true
|
||||||
primary_auth_source: ipa
|
primary_auth_source: ipa
|
||||||
|
|
|
@ -27,7 +27,7 @@ fedmsg_certs:
|
||||||
#- mbs.component.state.change
|
#- mbs.component.state.change
|
||||||
|
|
||||||
# For the MOTD
|
# For the MOTD
|
||||||
csi_security_category: Moderate
|
csi_security_category: Moderate
|
||||||
csi_primary_contact: Modularity WG - modularity-wg-members@fedoraproject.org
|
csi_primary_contact: Modularity WG - modularity-wg-members@fedoraproject.org
|
||||||
csi_purpose: Run the module-build-service frontend API.
|
csi_purpose: Run the module-build-service frontend API.
|
||||||
csi_relationship: |
|
csi_relationship: |
|
||||||
|
|
|
@ -27,7 +27,7 @@ fedmsg_certs:
|
||||||
#- mbs.component.state.change
|
#- mbs.component.state.change
|
||||||
|
|
||||||
# For the MOTD
|
# For the MOTD
|
||||||
csi_security_category: Moderate
|
csi_security_category: Moderate
|
||||||
csi_primary_contact: Modularity WG - modularity-wg-members@fedoraproject.org
|
csi_primary_contact: Modularity WG - modularity-wg-members@fedoraproject.org
|
||||||
csi_purpose: Run the module-build-service frontend API.
|
csi_purpose: Run the module-build-service frontend API.
|
||||||
csi_relationship: |
|
csi_relationship: |
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 10000
|
lvm_size: 10000
|
||||||
mem_size: 8192
|
mem_size: 8192
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 10000
|
lvm_size: 10000
|
||||||
mem_size: 4096
|
mem_size: 4096
|
||||||
num_cpus: 1
|
num_cpus: 1
|
||||||
|
|
|
@ -16,7 +16,7 @@ fedmsg_certs:
|
||||||
- service: mirrormanager2
|
- service: mirrormanager2
|
||||||
owner: root
|
owner: root
|
||||||
group: apache
|
group: apache
|
||||||
|
|
||||||
|
|
||||||
# For the MOTD
|
# For the MOTD
|
||||||
csi_security_category: Moderate
|
csi_security_category: Moderate
|
||||||
|
|
|
@ -15,7 +15,7 @@ fedmsg_certs:
|
||||||
- service: mirrormanager2
|
- service: mirrormanager2
|
||||||
owner: root
|
owner: root
|
||||||
group: apache
|
group: apache
|
||||||
|
|
||||||
|
|
||||||
# For the MOTD
|
# For the MOTD
|
||||||
csi_security_category: Moderate
|
csi_security_category: Moderate
|
||||||
|
|
|
@ -80,7 +80,7 @@ iad2_management_hosts:
|
||||||
- vmhost-x86-05.mgmt.iad2.fedoraproject.org
|
- vmhost-x86-05.mgmt.iad2.fedoraproject.org
|
||||||
- vmhost-x86-06.mgmt.iad2.fedoraproject.org
|
- vmhost-x86-06.mgmt.iad2.fedoraproject.org
|
||||||
- vmhost-x86-07.mgmt.iad2.fedoraproject.org
|
- vmhost-x86-07.mgmt.iad2.fedoraproject.org
|
||||||
|
|
||||||
#
|
#
|
||||||
# These are management interfaces we only want
|
# These are management interfaces we only want
|
||||||
# to test ping against. No http/https
|
# to test ping against. No http/https
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 65536
|
lvm_size: 65536
|
||||||
mem_size: 24576
|
mem_size: 24576
|
||||||
max_mem_size: "{{ mem_size }}"
|
max_mem_size: "{{ mem_size }}"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 16384
|
mem_size: 16384
|
||||||
max_mem_size: "{{ mem_size }}"
|
max_mem_size: "{{ mem_size }}"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 1024
|
mem_size: 1024
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 1024
|
mem_size: 1024
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -29,7 +29,7 @@ nfs_mount_opts: "ro,hard,bg,intr,noatime,nodev,nosuid,nfsvers=3"
|
||||||
custom_rules: [ '-A INPUT -p tcp -m tcp -s 10.3.163.39 --dport 873 -j ACCEPT', '-A INPUT -p tcp -m tcp -s 192.168.1.59 --dport 873 -j ACCEPT' ]
|
custom_rules: [ '-A INPUT -p tcp -m tcp -s 10.3.163.39 --dport 873 -j ACCEPT', '-A INPUT -p tcp -m tcp -s 192.168.1.59 --dport 873 -j ACCEPT' ]
|
||||||
|
|
||||||
fedmsg_hub_auto_restart: False
|
fedmsg_hub_auto_restart: False
|
||||||
|
|
||||||
# These are consumed by a task in roles/fedmsg/base/main.yml
|
# These are consumed by a task in roles/fedmsg/base/main.yml
|
||||||
fedmsg_certs:
|
fedmsg_certs:
|
||||||
- service: odcs
|
- service: odcs
|
||||||
|
|
|
@ -44,7 +44,7 @@ csi_relationship: |
|
||||||
The apache/mod_wsgi app is the only thing really running here
|
The apache/mod_wsgi app is the only thing really running here
|
||||||
|
|
||||||
This host:
|
This host:
|
||||||
|
|
||||||
- relies on db01 for its database of activity (what composes have been
|
- relies on db01 for its database of activity (what composes have been
|
||||||
requested and what state are they in?)
|
requested and what state are they in?)
|
||||||
- It also mounts an nfs shared provided by odcs-backend01.
|
- It also mounts an nfs shared provided by odcs-backend01.
|
||||||
|
|
|
@ -37,7 +37,7 @@ csi_relationship: |
|
||||||
The apache/mod_wsgi app is the only thing really running here
|
The apache/mod_wsgi app is the only thing really running here
|
||||||
|
|
||||||
This host:
|
This host:
|
||||||
|
|
||||||
- relies on db01 for its database of activity (what composes have been
|
- relies on db01 for its database of activity (what composes have been
|
||||||
requested and what state are they in?)
|
requested and what state are they in?)
|
||||||
- It also mounts an nfs shared provided by odcs-backend01.
|
- It also mounts an nfs shared provided by odcs-backend01.
|
||||||
|
|
|
@ -13,7 +13,7 @@ openqa_env_prefix:
|
||||||
openqa_env: production
|
openqa_env: production
|
||||||
|
|
||||||
# 2020-11: we're deploying prod from u-t ATM because I don't
|
# 2020-11: we're deploying prod from u-t ATM because I don't
|
||||||
# want to wait a week to push stable
|
# want to wait a week to push stable
|
||||||
openqa_repo: updates-testing
|
openqa_repo: updates-testing
|
||||||
|
|
||||||
# we are all NFS workers for now at least
|
# we are all NFS workers for now at least
|
||||||
|
|
|
@ -2,5 +2,5 @@
|
||||||
host_group: openstack-compute
|
host_group: openstack-compute
|
||||||
nrpe_procs_warn: 1100
|
nrpe_procs_warn: 1100
|
||||||
nrpe_procs_crit: 1200
|
nrpe_procs_crit: 1200
|
||||||
ansible_ifcfg_blocklist: true
|
ansible_ifcfg_blocklist: true
|
||||||
baseiptables: False
|
baseiptables: False
|
||||||
|
|
|
@ -52,6 +52,6 @@ csi_relationship: |
|
||||||
Private/Secret SSH or GPG keys onto this system. Any such keys found
|
Private/Secret SSH or GPG keys onto this system. Any such keys found
|
||||||
will be deleted.
|
will be deleted.
|
||||||
|
|
||||||
blocked_ips: [
|
blocked_ips: [
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
@ -4,8 +4,8 @@ lvm_size: 50000
|
||||||
mem_size: 8192
|
mem_size: 8192
|
||||||
num_cpus: 6
|
num_cpus: 6
|
||||||
|
|
||||||
# This is used in the httpd.conf to determine the value for serverlimit and
|
# This is used in the httpd.conf to determine the value for serverlimit and
|
||||||
# maxrequestworkers. On 8gb proxies, 900 seems fine. But on 4gb proxies, this
|
# maxrequestworkers. On 8gb proxies, 900 seems fine. But on 4gb proxies, this
|
||||||
# should be lowered in the host vars for that proxy.
|
# should be lowered in the host vars for that proxy.
|
||||||
maxrequestworkers: 900
|
maxrequestworkers: 900
|
||||||
|
|
||||||
|
@ -70,7 +70,7 @@ nat_rules: [
|
||||||
'-A PREROUTING -s 209.132.183.252 -p tcp --dport 443 -j REDIRECT --to 44342'
|
'-A PREROUTING -s 209.132.183.252 -p tcp --dport 443 -j REDIRECT --to 44342'
|
||||||
]
|
]
|
||||||
|
|
||||||
blocked_ips: [
|
blocked_ips: [
|
||||||
'14.102.69.78',
|
'14.102.69.78',
|
||||||
'104.219.54.236',
|
'104.219.54.236',
|
||||||
'103.38.177.2',
|
'103.38.177.2',
|
||||||
|
|
|
@ -4,8 +4,8 @@ lvm_size: 50000
|
||||||
mem_size: 8192
|
mem_size: 8192
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
||||||
# This is used in the httpd.conf to determine the value for serverlimit and
|
# This is used in the httpd.conf to determine the value for serverlimit and
|
||||||
# maxrequestworkers. On 8gb proxies, 900 seems fine. But on 4gb proxies, this
|
# maxrequestworkers. On 8gb proxies, 900 seems fine. But on 4gb proxies, this
|
||||||
# should be lowered in the host vars for that proxy.
|
# should be lowered in the host vars for that proxy.
|
||||||
maxrequestworkers: 900
|
maxrequestworkers: 900
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@ custom_rules: [
|
||||||
|
|
||||||
# Allow openqa to talk to the inbound fedmsg relay.
|
# Allow openqa to talk to the inbound fedmsg relay.
|
||||||
'-A INPUT -p tcp -m tcp --dport 9941 -s 10.5.131.72 -j ACCEPT',
|
'-A INPUT -p tcp -m tcp --dport 9941 -s 10.5.131.72 -j ACCEPT',
|
||||||
|
|
||||||
# Allow happinesspackets-stg.fedorainfracloud.org to talk to the inbound fedmsg relay
|
# Allow happinesspackets-stg.fedorainfracloud.org to talk to the inbound fedmsg relay
|
||||||
'-A INPUT -p tcp -m tcp --dport 9941 -s 209.132.184.123 -j ACCEPT',
|
'-A INPUT -p tcp -m tcp --dport 9941 -s 209.132.184.123 -j ACCEPT',
|
||||||
]
|
]
|
||||||
|
|
|
@ -8,7 +8,7 @@ ks_repo: http://10.3.163.35/repo/rhel/RHEL8-x86_64/
|
||||||
|
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
|
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 4096
|
mem_size: 4096
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -14,7 +14,7 @@ ansible_ifcfg_blocklist: true
|
||||||
|
|
||||||
tcp_ports: [ 80, 443 ]
|
tcp_ports: [ 80, 443 ]
|
||||||
|
|
||||||
custom_rules: [ '-A INPUT -p tcp -m tcp -s 10.5.78.11 --dport 2049 -j ACCEPT',
|
custom_rules: [ '-A INPUT -p tcp -m tcp -s 10.5.78.11 --dport 2049 -j ACCEPT',
|
||||||
'-A INPUT -p tcp -m tcp -s 10.5.78.11 --dport 5432 -j ACCEPT' ]
|
'-A INPUT -p tcp -m tcp -s 10.5.78.11 --dport 5432 -j ACCEPT' ]
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
# We need to mount koji storage rw here so run_root can work.
|
# We need to mount koji storage rw here so run_root can work.
|
||||||
# The rest of the group can be ro, it's only builders in the
|
# The rest of the group can be ro, it's only builders in the
|
||||||
# compose channel that need a rw mount
|
# compose channel that need a rw mount
|
||||||
nfs_mount_opts: "rw,hard,bg,intr,noatime,nodev,nosuid,sec=sys,nfsvers=3"
|
nfs_mount_opts: "rw,hard,bg,intr,noatime,nodev,nosuid,sec=sys,nfsvers=3"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
freezes: true
|
freezes: true
|
||||||
postfix_group: sign
|
postfix_group: sign
|
||||||
|
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 50000
|
lvm_size: 50000
|
||||||
mem_size: 4096
|
mem_size: 4096
|
||||||
num_cpus: 4
|
num_cpus: 4
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 20000
|
lvm_size: 20000
|
||||||
mem_size: 2048
|
mem_size: 2048
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 50000
|
lvm_size: 50000
|
||||||
mem_size: 2048
|
mem_size: 2048
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 50000
|
lvm_size: 50000
|
||||||
mem_size: 2048
|
mem_size: 2048
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 750000
|
lvm_size: 750000
|
||||||
mem_size: 4096
|
mem_size: 4096
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
@ -32,7 +32,7 @@ csi_relationship: |
|
||||||
- The virthost it's hosted on (ibiblio05.fedoraproject.org)
|
- The virthost it's hosted on (ibiblio05.fedoraproject.org)
|
||||||
- FAS to authenticate users
|
- FAS to authenticate users
|
||||||
- VPN connectivity
|
- VPN connectivity
|
||||||
|
|
||||||
Things that rely on this host:
|
Things that rely on this host:
|
||||||
- If this host is down, Fedora will lose a release distribution channel
|
- If this host is down, Fedora will lose a release distribution channel
|
||||||
- The Apache that displays the torrent website
|
- The Apache that displays the torrent website
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 30000
|
lvm_size: 30000
|
||||||
mem_size: 6144
|
mem_size: 6144
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 30000
|
lvm_size: 30000
|
||||||
mem_size: 6144
|
mem_size: 6144
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 30000
|
lvm_size: 30000
|
||||||
mem_size: 8192
|
mem_size: 8192
|
||||||
max_mem_size: 8192
|
max_mem_size: 8192
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 30000
|
lvm_size: 30000
|
||||||
mem_size: 4096
|
mem_size: 4096
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# Define resources for this group of hosts here.
|
# Define resources for this group of hosts here.
|
||||||
lvm_size: 100000
|
lvm_size: 100000
|
||||||
mem_size: 8192
|
mem_size: 8192
|
||||||
num_cpus: 2
|
num_cpus: 2
|
||||||
|
@ -30,4 +30,4 @@ csi_relationship: |
|
||||||
|
|
||||||
nagios_Can_Connect: false
|
nagios_Can_Connect: false
|
||||||
nagios_Check_Services:
|
nagios_Check_Services:
|
||||||
ping: false
|
ping: false
|
||||||
|
|
|
@ -2,16 +2,16 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth1_ipv4: 10.3.170.122
|
eth1_ipv4: 10.3.170.122
|
||||||
eth1_ipv4_nm: 24
|
eth1_ipv4_nm: 24
|
||||||
eth1_ipv4_gw: 10.3.170.254
|
eth1_ipv4_gw: 10.3.170.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 00:1b:21:de:34:63
|
mac0: 00:1b:21:de:34:63
|
||||||
mac1: 50:6b:4b:6a:ec:90
|
mac1: 50:6b:4b:6a:ec:90
|
||||||
mac2: 50:6b:4b:6a:ec:91
|
mac2: 50:6b:4b:6a:ec:91
|
||||||
|
|
||||||
network_connections:
|
network_connections:
|
||||||
|
@ -19,20 +19,20 @@ network_connections:
|
||||||
mac: "{{ mac0 }}"
|
mac: "{{ mac0 }}"
|
||||||
state: down
|
state: down
|
||||||
type: ethernet
|
type: ethernet
|
||||||
|
|
||||||
- name: eth1
|
- name: eth1
|
||||||
mac: "{{ mac1 }}"
|
mac: "{{ mac1 }}"
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
autoconnect: yes
|
autoconnect: yes
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth1_ipv4 }}/{{ eth1_ipv4_nm }}"
|
- "{{ eth1_ipv4 }}/{{ eth1_ipv4_nm }}"
|
||||||
gateway4: "{{ eth1_ipv4_gw }}"
|
gateway4: "{{ eth1_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
@ -41,5 +41,4 @@ network_connections:
|
||||||
- name: eth2
|
- name: eth2
|
||||||
mac: "{{ mac2 }}"
|
mac: "{{ mac2 }}"
|
||||||
state: down
|
state: down
|
||||||
type: ethernet
|
type: ethernet
|
||||||
|
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.170.123
|
eth0_ipv4: 10.3.170.123
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.170.254
|
eth0_ipv4_gw: 10.3.170.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 00:01:73:02:08:83
|
mac0: 00:01:73:02:08:83
|
||||||
mac1: fe:2f:0f:b7:1c:1e
|
mac1: fe:2f:0f:b7:1c:1e
|
||||||
mac2: e6:6d:96:cc:7a:cd
|
mac2: e6:6d:96:cc:7a:cd
|
||||||
|
@ -21,13 +21,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
@ -37,12 +37,12 @@ network_connections:
|
||||||
state: down
|
state: down
|
||||||
type: ethernet
|
type: ethernet
|
||||||
autoconnect: yes
|
autoconnect: yes
|
||||||
|
|
||||||
- name: eth2
|
- name: eth2
|
||||||
mac: "{{ mac2 }}"
|
mac: "{{ mac2 }}"
|
||||||
state: down
|
state: down
|
||||||
type: ethernet
|
type: ethernet
|
||||||
|
|
||||||
- name: eth3
|
- name: eth3
|
||||||
mac: "{{ mac3 }}"
|
mac: "{{ mac3 }}"
|
||||||
state: down
|
state: down
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.170.124
|
eth0_ipv4: 10.3.170.124
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.170.254
|
eth0_ipv4_gw: 10.3.170.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 2c:59:e5:36:9a:53
|
mac0: 2c:59:e5:36:9a:53
|
||||||
mac1: a6:df:61:ff:e4:3f
|
mac1: a6:df:61:ff:e4:3f
|
||||||
mac2: da:2c:8f:e7:99:2b
|
mac2: da:2c:8f:e7:99:2b
|
||||||
|
@ -21,13 +21,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
@ -37,12 +37,12 @@ network_connections:
|
||||||
state: down
|
state: down
|
||||||
type: ethernet
|
type: ethernet
|
||||||
autoconnect: yes
|
autoconnect: yes
|
||||||
|
|
||||||
- name: eth2
|
- name: eth2
|
||||||
mac: "{{ mac2 }}"
|
mac: "{{ mac2 }}"
|
||||||
state: down
|
state: down
|
||||||
type: ethernet
|
type: ethernet
|
||||||
|
|
||||||
- name: eth3
|
- name: eth3
|
||||||
mac: "{{ mac3 }}"
|
mac: "{{ mac3 }}"
|
||||||
state: down
|
state: down
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.170.125
|
eth0_ipv4: 10.3.170.125
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.170.254
|
eth0_ipv4_gw: 10.3.170.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 00:01:73:02:09:c3
|
mac0: 00:01:73:02:09:c3
|
||||||
mac1: ee:cb:e1:1b:27:6e
|
mac1: ee:cb:e1:1b:27:6e
|
||||||
mac2: f2:b7:9e:26:0d:9a
|
mac2: f2:b7:9e:26:0d:9a
|
||||||
|
@ -21,13 +21,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
@ -43,7 +43,7 @@ network_connections:
|
||||||
mac: "{{ mac2 }}"
|
mac: "{{ mac2 }}"
|
||||||
state: down
|
state: down
|
||||||
type: ethernet
|
type: ethernet
|
||||||
|
|
||||||
- name: eth3
|
- name: eth3
|
||||||
mac: "{{ mac3 }}"
|
mac: "{{ mac3 }}"
|
||||||
state: down
|
state: down
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.170.126
|
eth0_ipv4: 10.3.170.126
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.170.254
|
eth0_ipv4_gw: 10.3.170.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 2c:59:e5:36:9a:51
|
mac0: 2c:59:e5:36:9a:51
|
||||||
mac1: ce:a6:3d:c6:22:51
|
mac1: ce:a6:3d:c6:22:51
|
||||||
mac2: 66:19:15:4e:89:56
|
mac2: 66:19:15:4e:89:56
|
||||||
|
@ -21,13 +21,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
@ -42,7 +42,7 @@ network_connections:
|
||||||
mac: "{{ mac2 }}"
|
mac: "{{ mac2 }}"
|
||||||
state: down
|
state: down
|
||||||
type: ethernet
|
type: ethernet
|
||||||
|
|
||||||
- name: eth3
|
- name: eth3
|
||||||
mac: "{{ mac3 }}"
|
mac: "{{ mac3 }}"
|
||||||
state: down
|
state: down
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.170.131
|
eth0_ipv4: 10.3.170.131
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.170.254
|
eth0_ipv4_gw: 10.3.170.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 00:01:73:02:08:ff
|
mac0: 00:01:73:02:08:ff
|
||||||
mac1: 72:a3:68:ad:39:05
|
mac1: 72:a3:68:ad:39:05
|
||||||
mac2: 8a:93:68:8d:ca:cd
|
mac2: 8a:93:68:8d:ca:cd
|
||||||
|
@ -21,13 +21,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
@ -42,7 +42,7 @@ network_connections:
|
||||||
mac: "{{ mac2 }}"
|
mac: "{{ mac2 }}"
|
||||||
state: down
|
state: down
|
||||||
type: ethernet
|
type: ethernet
|
||||||
|
|
||||||
- name: eth3
|
- name: eth3
|
||||||
mac: "{{ mac3 }}"
|
mac: "{{ mac3 }}"
|
||||||
state: down
|
state: down
|
||||||
|
|
|
@ -2,18 +2,18 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.170.139
|
eth0_ipv4: 10.3.170.139
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.170.254
|
eth0_ipv4_gw: 10.3.170.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: f4:e9:d4:cc:2f:f4
|
mac0: f4:e9:d4:cc:2f:f4
|
||||||
mac1: f4:e9:d4:cc:2f:f5
|
mac1: f4:e9:d4:cc:2f:f5
|
||||||
mac2: f4:e9:d4:f2:e7:f4
|
mac2: f4:e9:d4:f2:e7:f4
|
||||||
mac3: f4:e9:d4:f2:e7:f5
|
mac3: f4:e9:d4:f2:e7:f5
|
||||||
|
|
||||||
network_connections:
|
network_connections:
|
||||||
- name: eth0
|
- name: eth0
|
||||||
|
@ -21,13 +21,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
@ -42,7 +42,7 @@ network_connections:
|
||||||
mac: "{{ mac2 }}"
|
mac: "{{ mac2 }}"
|
||||||
state: down
|
state: down
|
||||||
type: ethernet
|
type: ethernet
|
||||||
|
|
||||||
- name: eth3
|
- name: eth3
|
||||||
mac: "{{ mac3 }}"
|
mac: "{{ mac3 }}"
|
||||||
state: down
|
state: down
|
||||||
|
|
|
@ -2,18 +2,18 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.170.140
|
eth0_ipv4: 10.3.170.140
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.170.254
|
eth0_ipv4_gw: 10.3.170.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: f4:e9:d4:cc:32:b2
|
mac0: f4:e9:d4:cc:32:b2
|
||||||
mac1: f4:e9:d4:cc:32:b3
|
mac1: f4:e9:d4:cc:32:b3
|
||||||
mac2: f4:e9:d4:f2:e9:6e
|
mac2: f4:e9:d4:f2:e9:6e
|
||||||
mac3: f4:e9:d4:f2:e9:6f
|
mac3: f4:e9:d4:f2:e9:6f
|
||||||
|
|
||||||
network_connections:
|
network_connections:
|
||||||
- name: eth0
|
- name: eth0
|
||||||
|
@ -21,13 +21,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
@ -42,7 +42,7 @@ network_connections:
|
||||||
mac: "{{ mac2 }}"
|
mac: "{{ mac2 }}"
|
||||||
state: down
|
state: down
|
||||||
type: ethernet
|
type: ethernet
|
||||||
|
|
||||||
- name: eth3
|
- name: eth3
|
||||||
mac: "{{ mac3 }}"
|
mac: "{{ mac3 }}"
|
||||||
state: down
|
state: down
|
||||||
|
|
|
@ -26,13 +26,13 @@ network_connections:
|
||||||
autoconnect: yes
|
autoconnect: yes
|
||||||
mac: "{{ mac1 }}"
|
mac: "{{ mac1 }}"
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth1_ipv4 }}/{{ eth1_ipv4_nm }}"
|
- "{{ eth1_ipv4 }}/{{ eth1_ipv4_nm }}"
|
||||||
gateway4: "{{ eth1_ipv4_gw }}"
|
gateway4: "{{ eth1_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -26,13 +26,13 @@ network_connections:
|
||||||
autoconnect: yes
|
autoconnect: yes
|
||||||
mac: "{{ mac1 }}"
|
mac: "{{ mac1 }}"
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth1_ipv4 }}/{{ eth1_ipv4_nm }}"
|
- "{{ eth1_ipv4 }}/{{ eth1_ipv4_nm }}"
|
||||||
gateway4: "{{ eth1_ipv4_gw }}"
|
gateway4: "{{ eth1_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -26,13 +26,13 @@ network_connections:
|
||||||
autoconnect: yes
|
autoconnect: yes
|
||||||
mac: "{{ mac1 }}"
|
mac: "{{ mac1 }}"
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth1_ipv4 }}/{{ eth1_ipv4_nm }}"
|
- "{{ eth1_ipv4 }}/{{ eth1_ipv4_nm }}"
|
||||||
gateway4: "{{ eth1_ipv4_gw }}"
|
gateway4: "{{ eth1_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -26,13 +26,13 @@ network_connections:
|
||||||
autoconnect: yes
|
autoconnect: yes
|
||||||
mac: "{{ mac1 }}"
|
mac: "{{ mac1 }}"
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth1_ipv4 }}/{{ eth1_ipv4_nm }}"
|
- "{{ eth1_ipv4 }}/{{ eth1_ipv4_nm }}"
|
||||||
gateway4: "{{ eth1_ipv4_gw }}"
|
gateway4: "{{ eth1_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
---
|
---
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.169.31
|
eth0_ipv4: 10.3.169.31
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.169.254
|
eth0_ipv4_gw: 10.3.169.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 14:9e:cf:61:9e:61
|
mac0: 14:9e:cf:61:9e:61
|
||||||
mac1: 14:9e:cf:61:9e:64
|
mac1: 14:9e:cf:61:9e:64
|
||||||
|
|
||||||
|
@ -19,10 +19,10 @@ network_connections:
|
||||||
type: ethernet
|
type: ethernet
|
||||||
autoconnect: yes
|
autoconnect: yes
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
auto6: no
|
auto6: no
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.169.32
|
eth0_ipv4: 10.3.169.32
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.169.254
|
eth0_ipv4_gw: 10.3.169.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 14:9e:cf:61:9e:61
|
mac0: 14:9e:cf:61:9e:61
|
||||||
mac1: 14:9e:cf:61:9e:64
|
mac1: 14:9e:cf:61:9e:64
|
||||||
|
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.169.33
|
eth0_ipv4: 10.3.169.33
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.169.254
|
eth0_ipv4_gw: 10.3.169.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 14:9e:cf:61:9e:c9
|
mac0: 14:9e:cf:61:9e:c9
|
||||||
mac1: 14:9e:cf:61:9e:cc
|
mac1: 14:9e:cf:61:9e:cc
|
||||||
|
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.169.34
|
eth0_ipv4: 10.3.169.34
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.169.254
|
eth0_ipv4_gw: 10.3.169.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 14:9e:cf:61:a5:07
|
mac0: 14:9e:cf:61:a5:07
|
||||||
mac1: 14:9e:cf:61:a5:0a
|
mac1: 14:9e:cf:61:a5:0a
|
||||||
|
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.169.36
|
eth0_ipv4: 10.3.169.36
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.169.254
|
eth0_ipv4_gw: 10.3.169.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 14:9e:cf:61:a0:bd
|
mac0: 14:9e:cf:61:a0:bd
|
||||||
mac1: 14:9e:cf:61:a0:c0
|
mac1: 14:9e:cf:61:a0:c0
|
||||||
|
|
||||||
|
@ -20,13 +20,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -2,16 +2,16 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.169.37
|
eth0_ipv4: 10.3.169.37
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.169.254
|
eth0_ipv4_gw: 10.3.169.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 14:9e:cf:61:9e:e3
|
mac0: 14:9e:cf:61:9e:e3
|
||||||
mac1: 14:9e:cf:61:9e:e6
|
mac1: 14:9e:cf:61:9e:e6
|
||||||
|
|
||||||
network_connections:
|
network_connections:
|
||||||
- name: eth0
|
- name: eth0
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -2,16 +2,16 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.169.38
|
eth0_ipv4: 10.3.169.38
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.169.254
|
eth0_ipv4_gw: 10.3.169.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 14:9e:cf:61:a6:75
|
mac0: 14:9e:cf:61:a6:75
|
||||||
mac1: 14:9e:cf:61:a6:78
|
mac1: 14:9e:cf:61:a6:78
|
||||||
|
|
||||||
network_connections:
|
network_connections:
|
||||||
- name: eth0
|
- name: eth0
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
@ -35,4 +35,4 @@ network_connections:
|
||||||
state: down
|
state: down
|
||||||
type: ethernet
|
type: ethernet
|
||||||
autoconnect: yes
|
autoconnect: yes
|
||||||
|
|
||||||
|
|
|
@ -2,16 +2,16 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.169.39
|
eth0_ipv4: 10.3.169.39
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.169.254
|
eth0_ipv4_gw: 10.3.169.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: f8:ca:b8:f7:26:e1
|
mac0: f8:ca:b8:f7:26:e1
|
||||||
mac1: f8:ca:b8:f7:26:e4
|
mac1: f8:ca:b8:f7:26:e4
|
||||||
|
|
||||||
network_connections:
|
network_connections:
|
||||||
- name: eth0
|
- name: eth0
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.169.40
|
eth0_ipv4: 10.3.169.40
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.169.254
|
eth0_ipv4_gw: 10.3.169.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: f8:ca:b8:f7:27:cf
|
mac0: f8:ca:b8:f7:27:cf
|
||||||
mac1: f8:ca:b8:f7:27:d2
|
mac1: f8:ca:b8:f7:27:d2
|
||||||
|
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.169.41
|
eth0_ipv4: 10.3.169.41
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.169.254
|
eth0_ipv4_gw: 10.3.169.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: f8:ca:b8:f7:27:63
|
mac0: f8:ca:b8:f7:27:63
|
||||||
mac1: f8:ca:b8:f7:27:66
|
mac1: f8:ca:b8:f7:27:66
|
||||||
|
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.169.42
|
eth0_ipv4: 10.3.169.42
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.169.254
|
eth0_ipv4_gw: 10.3.169.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: f8:ca:b8:f7:2e:f5
|
mac0: f8:ca:b8:f7:2e:f5
|
||||||
mac1: f8:ca:b8:f7:2e:f8
|
mac1: f8:ca:b8:f7:2e:f8
|
||||||
|
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.169.43
|
eth0_ipv4: 10.3.169.43
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.169.254
|
eth0_ipv4_gw: 10.3.169.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: f8:ca:b8:f7:27:49
|
mac0: f8:ca:b8:f7:27:49
|
||||||
mac1: f8:ca:b8:f7:27:4c
|
mac1: f8:ca:b8:f7:27:4c
|
||||||
|
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.169.44
|
eth0_ipv4: 10.3.169.44
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.169.254
|
eth0_ipv4_gw: 10.3.169.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: f8:ca:b8:f7:2d:87
|
mac0: f8:ca:b8:f7:2d:87
|
||||||
mac1: f8:ca:b8:f7:2d:8a
|
mac1: f8:ca:b8:f7:2d:8a
|
||||||
|
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.169.45
|
eth0_ipv4: 10.3.169.45
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.169.254
|
eth0_ipv4_gw: 10.3.169.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: f8:ca:b8:f7:26:fb
|
mac0: f8:ca:b8:f7:26:fb
|
||||||
mac1: f8:ca:b8:f7:26:fe
|
mac1: f8:ca:b8:f7:26:fe
|
||||||
|
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.169.46
|
eth0_ipv4: 10.3.169.46
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.169.254
|
eth0_ipv4_gw: 10.3.169.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: f8:ca:b8:f7:29:3d
|
mac0: f8:ca:b8:f7:29:3d
|
||||||
mac1: f8:ca:b8:f7:29:40
|
mac1: f8:ca:b8:f7:29:40
|
||||||
|
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -3,14 +3,14 @@ vmhost: bvmhost-a64-01.iad2.fedoraproject.org
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.170.61
|
eth0_ipv4: 10.3.170.61
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.170.254
|
eth0_ipv4_gw: 10.3.170.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 52:54:00:0d:2c:f0
|
mac0: 52:54:00:0d:2c:f0
|
||||||
|
|
||||||
network_connections:
|
network_connections:
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -4,7 +4,7 @@ vmhost: bvmhost-a64-01.stg.iad2.fedoraproject.org
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ip: 10.3.167.46
|
eth0_ip: 10.3.167.46
|
||||||
eth0_ipv4: 10.3.167.46
|
eth0_ipv4: 10.3.167.46
|
||||||
|
@ -12,7 +12,7 @@ eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.167.254
|
eth0_ipv4_gw: 10.3.167.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 52:54:00:d4:6a:ca
|
mac0: 52:54:00:d4:6a:ca
|
||||||
|
|
||||||
network_connections:
|
network_connections:
|
||||||
|
@ -21,13 +21,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -3,14 +3,14 @@ vmhost: bvmhost-a64-01.iad2.fedoraproject.org
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.170.62
|
eth0_ipv4: 10.3.170.62
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.170.254
|
eth0_ipv4_gw: 10.3.170.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 52:54:00:ac:8e:53
|
mac0: 52:54:00:ac:8e:53
|
||||||
|
|
||||||
network_connections:
|
network_connections:
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -3,14 +3,14 @@ vmhost: bvmhost-a64-01.stg.iad2.fedoraproject.org
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.167.54
|
eth0_ipv4: 10.3.167.54
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.167.254
|
eth0_ipv4_gw: 10.3.167.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 52:54:00:ac:8e:53
|
mac0: 52:54:00:ac:8e:53
|
||||||
|
|
||||||
network_connections:
|
network_connections:
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -3,14 +3,14 @@ vmhost: bvmhost-a64-01.iad2.fedoraproject.org
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.170.63
|
eth0_ipv4: 10.3.170.63
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.170.254
|
eth0_ipv4_gw: 10.3.170.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 52:54:00:c3:fb:32
|
mac0: 52:54:00:c3:fb:32
|
||||||
|
|
||||||
network_connections:
|
network_connections:
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -3,14 +3,14 @@ vmhost: bvmhost-a64-02.iad2.fedoraproject.org
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.170.64
|
eth0_ipv4: 10.3.170.64
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.170.254
|
eth0_ipv4_gw: 10.3.170.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 52:54:00:5c:f6:d2
|
mac0: 52:54:00:5c:f6:d2
|
||||||
|
|
||||||
network_connections:
|
network_connections:
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -3,14 +3,14 @@ vmhost: bvmhost-a64-02.iad2.fedoraproject.org
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.170.65
|
eth0_ipv4: 10.3.170.65
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.170.254
|
eth0_ipv4_gw: 10.3.170.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 52:54:00:d7:98:00
|
mac0: 52:54:00:d7:98:00
|
||||||
|
|
||||||
network_connections:
|
network_connections:
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -3,14 +3,14 @@ vmhost: bvmhost-a64-02.iad2.fedoraproject.org
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.170.66
|
eth0_ipv4: 10.3.170.66
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.170.254
|
eth0_ipv4_gw: 10.3.170.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 52:54:00:de:fc:9e
|
mac0: 52:54:00:de:fc:9e
|
||||||
|
|
||||||
network_connections:
|
network_connections:
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -3,14 +3,14 @@ vmhost: bvmhost-a64-03.iad2.fedoraproject.org
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.170.67
|
eth0_ipv4: 10.3.170.67
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.170.254
|
eth0_ipv4_gw: 10.3.170.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 52:54:00:5d:9e:16
|
mac0: 52:54:00:5d:9e:16
|
||||||
|
|
||||||
network_connections:
|
network_connections:
|
||||||
|
@ -19,15 +19,14 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
auto6: no
|
auto6: no
|
||||||
|
|
|
@ -3,14 +3,14 @@ vmhost: bvmhost-a64-03.iad2.fedoraproject.org
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.170.68
|
eth0_ipv4: 10.3.170.68
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.170.254
|
eth0_ipv4_gw: 10.3.170.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 52:54:00:08:bd:f4
|
mac0: 52:54:00:08:bd:f4
|
||||||
|
|
||||||
network_connections:
|
network_connections:
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
|
@ -3,14 +3,14 @@ vmhost: bvmhost-a64-03.iad2.fedoraproject.org
|
||||||
datacenter: iad2
|
datacenter: iad2
|
||||||
dns1: 10.3.163.33
|
dns1: 10.3.163.33
|
||||||
dns2: 10.3.163.34
|
dns2: 10.3.163.34
|
||||||
|
|
||||||
has_ipv4: yes
|
has_ipv4: yes
|
||||||
eth0_ipv4: 10.3.170.69
|
eth0_ipv4: 10.3.170.69
|
||||||
eth0_ipv4_nm: 24
|
eth0_ipv4_nm: 24
|
||||||
eth0_ipv4_gw: 10.3.170.254
|
eth0_ipv4_gw: 10.3.170.254
|
||||||
|
|
||||||
has_ipv6: no
|
has_ipv6: no
|
||||||
|
|
||||||
mac0: 52:54:00:e5:6a:68
|
mac0: 52:54:00:e5:6a:68
|
||||||
|
|
||||||
network_connections:
|
network_connections:
|
||||||
|
@ -19,13 +19,13 @@ network_connections:
|
||||||
state: up
|
state: up
|
||||||
type: ethernet
|
type: ethernet
|
||||||
ip:
|
ip:
|
||||||
address:
|
address:
|
||||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||||
gateway4: "{{ eth0_ipv4_gw }}"
|
gateway4: "{{ eth0_ipv4_gw }}"
|
||||||
dns:
|
dns:
|
||||||
- "{{ dns1 }}"
|
- "{{ dns1 }}"
|
||||||
- "{{ dns2 }}"
|
- "{{ dns2 }}"
|
||||||
dns_search:
|
dns_search:
|
||||||
- iad2.fedoraproject.org
|
- iad2.fedoraproject.org
|
||||||
- fedoraproject.org
|
- fedoraproject.org
|
||||||
dhcp4: no
|
dhcp4: no
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue