From 0cec9e933b8f5ecca6ce7d030ad6e1a25f085daa Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 18 Jan 2022 15:31:25 -0800 Subject: [PATCH] Add 10 more s390x builders. Signed-off-by: Kevin Fenzi --- inventory/group_vars/buildvm_s390x | 4 +-- .../buildvm-s390x-25.s390.fedoraproject.org | 30 ++++++++++++++++++ .../buildvm-s390x-26.s390.fedoraproject.org | 31 +++++++++++++++++++ .../buildvm-s390x-27.s390.fedoraproject.org | 31 +++++++++++++++++++ .../buildvm-s390x-28.s390.fedoraproject.org | 31 +++++++++++++++++++ .../buildvm-s390x-29.s390.fedoraproject.org | 31 +++++++++++++++++++ .../buildvm-s390x-30.s390.fedoraproject.org | 31 +++++++++++++++++++ .../buildvm-s390x-31.s390.fedoraproject.org | 31 +++++++++++++++++++ .../buildvm-s390x-32.s390.fedoraproject.org | 31 +++++++++++++++++++ .../buildvm-s390x-33.s390.fedoraproject.org | 31 +++++++++++++++++++ .../buildvm-s390x-34.s390.fedoraproject.org | 31 +++++++++++++++++++ .../buildvm-s390x-35.s390.fedoraproject.org | 31 +++++++++++++++++++ 12 files changed, 342 insertions(+), 2 deletions(-) create mode 100644 inventory/host_vars/buildvm-s390x-25.s390.fedoraproject.org create mode 100644 inventory/host_vars/buildvm-s390x-26.s390.fedoraproject.org create mode 100644 inventory/host_vars/buildvm-s390x-27.s390.fedoraproject.org create mode 100644 inventory/host_vars/buildvm-s390x-28.s390.fedoraproject.org create mode 100644 inventory/host_vars/buildvm-s390x-29.s390.fedoraproject.org create mode 100644 inventory/host_vars/buildvm-s390x-30.s390.fedoraproject.org create mode 100644 inventory/host_vars/buildvm-s390x-31.s390.fedoraproject.org create mode 100644 inventory/host_vars/buildvm-s390x-32.s390.fedoraproject.org create mode 100644 inventory/host_vars/buildvm-s390x-33.s390.fedoraproject.org create mode 100644 inventory/host_vars/buildvm-s390x-34.s390.fedoraproject.org create mode 100644 inventory/host_vars/buildvm-s390x-35.s390.fedoraproject.org diff --git a/inventory/group_vars/buildvm_s390x b/inventory/group_vars/buildvm_s390x index e07a02a859..30cfe45353 100644 --- a/inventory/group_vars/buildvm_s390x +++ b/inventory/group_vars/buildvm_s390x @@ -20,9 +20,9 @@ ks_url: http://10.3.163.35/repo/rhel/ks/kvm-fedora lvm_size: 102400 main_bridge: vmbr max_mem_size: "{{ mem_size }}" -mem_size: 20480 +mem_size: 10240 nm: 255.255.255.0 -num_cpus: 4 +num_cpus: 2 varnish_group: s390kojipkgs virt_install_command: "{{ virt_install_command_s390x_one_nic }}" vmhost: buildvmhost-s390x-01.s390.fedoraproject.org diff --git a/inventory/host_vars/buildvm-s390x-25.s390.fedoraproject.org b/inventory/host_vars/buildvm-s390x-25.s390.fedoraproject.org new file mode 100644 index 0000000000..c9f09dc54a --- /dev/null +++ b/inventory/host_vars/buildvm-s390x-25.s390.fedoraproject.org @@ -0,0 +1,30 @@ +--- +# needed because this host has a varnish cache on it. +custom_rules: ['-A INPUT -s 10.16.0.0/24 -p tcp -m tcp --dport 80 -j ACCEPT'] +dns1: 10.3.163.33 +dns2: 10.3.163.34 +dns_search1: "iad2.fedoraproject.org" +dns_search2: "fedoraproject.org" +eth0_ipv4: 10.16.0.36 +eth0_ipv4_gw: 10.16.0.254 +eth0_ipv4_nm: 24 +eth0_mac: "{{ mac0 }}" +lvm_size: 153600 +network_connections: + - autoconnect: yes + ip: + address: + - "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}" + dhcp4: no + dns: + - "{{ dns1 }}" + - "{{ dns2 }}" + dns_search: + - "{{ dns_search1 }}" + - "{{ dns_search2 }}" + gateway4: "{{ eth0_ipv4_gw }}" + mac: "{{ ansible_default_ipv4.macaddress }}" + name: eth0 + state: up + type: ethernet +volgroup: /dev/fedora_linux_scsi diff --git a/inventory/host_vars/buildvm-s390x-26.s390.fedoraproject.org b/inventory/host_vars/buildvm-s390x-26.s390.fedoraproject.org new file mode 100644 index 0000000000..b5b4881ba6 --- /dev/null +++ b/inventory/host_vars/buildvm-s390x-26.s390.fedoraproject.org @@ -0,0 +1,31 @@ +--- +# needed because this host has a varnish cache on it. +custom_rules: ['-A INPUT -s 10.16.0.0/24 -p tcp -m tcp --dport 80 -j ACCEPT'] +dns1: 10.3.163.33 +dns2: 10.3.163.34 +dns_search1: "iad2.fedoraproject.org" +dns_search2: "fedoraproject.org" +eth0_ipv4: 10.16.0.37 +eth0_ipv4_gw: 10.16.0.254 +eth0_ipv4_nm: 24 +eth0_mac: "{{ mac0 }}" +has_ipv4: yes +lvm_size: 153600 +network_connections: + - autoconnect: yes + ip: + address: + - "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}" + dhcp4: no + dns: + - "{{ dns1 }}" + - "{{ dns2 }}" + dns_search: + - "{{ dns_search1 }}" + - "{{ dns_search2 }}" + gateway4: "{{ eth0_ipv4_gw }}" + mac: "{{ ansible_default_ipv4.macaddress }}" + name: eth0 + state: up + type: ethernet +volgroup: /dev/fedora_linux_scsi diff --git a/inventory/host_vars/buildvm-s390x-27.s390.fedoraproject.org b/inventory/host_vars/buildvm-s390x-27.s390.fedoraproject.org new file mode 100644 index 0000000000..c58a4132e3 --- /dev/null +++ b/inventory/host_vars/buildvm-s390x-27.s390.fedoraproject.org @@ -0,0 +1,31 @@ +--- +# needed because this host has a varnish cache on it. +custom_rules: ['-A INPUT -s 10.16.0.0/24 -p tcp -m tcp --dport 80 -j ACCEPT'] +dns1: 10.3.163.33 +dns2: 10.3.163.34 +dns_search1: "iad2.fedoraproject.org" +dns_search2: "fedoraproject.org" +eth0_ipv4: 10.16.0.38 +eth0_ipv4_gw: 10.16.0.254 +eth0_ipv4_nm: 24 +eth0_mac: "{{ mac0 }}" +has_ipv4: yes +lvm_size: 153600 +network_connections: + - autoconnect: yes + ip: + address: + - "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}" + dhcp4: no + dns: + - "{{ dns1 }}" + - "{{ dns2 }}" + dns_search: + - "{{ dns_search1 }}" + - "{{ dns_search2 }}" + gateway4: "{{ eth0_ipv4_gw }}" + mac: "{{ ansible_default_ipv4.macaddress }}" + name: eth0 + state: up + type: ethernet +volgroup: /dev/fedora_linux_scsi diff --git a/inventory/host_vars/buildvm-s390x-28.s390.fedoraproject.org b/inventory/host_vars/buildvm-s390x-28.s390.fedoraproject.org new file mode 100644 index 0000000000..44d3262abe --- /dev/null +++ b/inventory/host_vars/buildvm-s390x-28.s390.fedoraproject.org @@ -0,0 +1,31 @@ +--- +# needed because this host has a varnish cache on it. +custom_rules: ['-A INPUT -s 10.16.0.0/24 -p tcp -m tcp --dport 80 -j ACCEPT'] +dns1: 10.3.163.33 +dns2: 10.3.163.34 +dns_search1: "iad2.fedoraproject.org" +dns_search2: "fedoraproject.org" +eth0_ipv4: 10.16.0.39 +eth0_ipv4_gw: 10.16.0.254 +eth0_ipv4_nm: 24 +eth0_mac: "{{ mac0 }}" +has_ipv4: yes +lvm_size: 153600 +network_connections: + - autoconnect: yes + ip: + address: + - "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}" + dhcp4: no + dns: + - "{{ dns1 }}" + - "{{ dns2 }}" + dns_search: + - "{{ dns_search1 }}" + - "{{ dns_search2 }}" + gateway4: "{{ eth0_ipv4_gw }}" + mac: "{{ ansible_default_ipv4.macaddress }}" + name: eth0 + state: up + type: ethernet +volgroup: /dev/fedora_linux_scsi diff --git a/inventory/host_vars/buildvm-s390x-29.s390.fedoraproject.org b/inventory/host_vars/buildvm-s390x-29.s390.fedoraproject.org new file mode 100644 index 0000000000..58323d2d85 --- /dev/null +++ b/inventory/host_vars/buildvm-s390x-29.s390.fedoraproject.org @@ -0,0 +1,31 @@ +--- +# needed because this host has a varnish cache on it. +custom_rules: ['-A INPUT -s 10.16.0.0/24 -p tcp -m tcp --dport 80 -j ACCEPT'] +dns1: 10.3.163.33 +dns2: 10.3.163.34 +dns_search1: "iad2.fedoraproject.org" +dns_search2: "fedoraproject.org" +eth0_ipv4: 10.16.0.40 +eth0_ipv4_gw: 10.16.0.254 +eth0_ipv4_nm: 24 +eth0_mac: "{{ mac0 }}" +has_ipv4: yes +lvm_size: 153600 +network_connections: + - autoconnect: yes + ip: + address: + - "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}" + dhcp4: no + dns: + - "{{ dns1 }}" + - "{{ dns2 }}" + dns_search: + - "{{ dns_search1 }}" + - "{{ dns_search2 }}" + gateway4: "{{ eth0_ipv4_gw }}" + mac: "{{ ansible_default_ipv4.macaddress }}" + name: eth0 + state: up + type: ethernet +volgroup: /dev/fedora_linux_scsi diff --git a/inventory/host_vars/buildvm-s390x-30.s390.fedoraproject.org b/inventory/host_vars/buildvm-s390x-30.s390.fedoraproject.org new file mode 100644 index 0000000000..651a63664b --- /dev/null +++ b/inventory/host_vars/buildvm-s390x-30.s390.fedoraproject.org @@ -0,0 +1,31 @@ +--- +# needed because this host has a varnish cache on it. +custom_rules: ['-A INPUT -s 10.16.0.0/24 -p tcp -m tcp --dport 80 -j ACCEPT'] +dns1: 10.3.163.33 +dns2: 10.3.163.34 +dns_search1: "iad2.fedoraproject.org" +dns_search2: "fedoraproject.org" +eth0_ipv4: 10.16.0.41 +eth0_ipv4_gw: 10.16.0.254 +eth0_ipv4_nm: 24 +eth0_mac: "{{ mac0 }}" +has_ipv4: yes +lvm_size: 153600 +network_connections: + - autoconnect: yes + ip: + address: + - "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}" + dhcp4: no + dns: + - "{{ dns1 }}" + - "{{ dns2 }}" + dns_search: + - "{{ dns_search1 }}" + - "{{ dns_search2 }}" + gateway4: "{{ eth0_ipv4_gw }}" + mac: "{{ ansible_default_ipv4.macaddress }}" + name: eth0 + state: up + type: ethernet +volgroup: /dev/fedora_linux_scsi diff --git a/inventory/host_vars/buildvm-s390x-31.s390.fedoraproject.org b/inventory/host_vars/buildvm-s390x-31.s390.fedoraproject.org new file mode 100644 index 0000000000..3b5a69970c --- /dev/null +++ b/inventory/host_vars/buildvm-s390x-31.s390.fedoraproject.org @@ -0,0 +1,31 @@ +--- +# needed because this host has a varnish cache on it. +custom_rules: ['-A INPUT -s 10.16.0.0/24 -p tcp -m tcp --dport 80 -j ACCEPT'] +dns1: 10.3.163.33 +dns2: 10.3.163.34 +dns_search1: "iad2.fedoraproject.org" +dns_search2: "fedoraproject.org" +eth0_ipv4: 10.16.0.42 +eth0_ipv4_gw: 10.16.0.254 +eth0_ipv4_nm: 24 +eth0_mac: "{{ mac0 }}" +has_ipv4: yes +lvm_size: 153600 +network_connections: + - autoconnect: yes + ip: + address: + - "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}" + dhcp4: no + dns: + - "{{ dns1 }}" + - "{{ dns2 }}" + dns_search: + - "{{ dns_search1 }}" + - "{{ dns_search2 }}" + gateway4: "{{ eth0_ipv4_gw }}" + mac: "{{ ansible_default_ipv4.macaddress }}" + name: eth0 + state: up + type: ethernet +volgroup: /dev/fedora_linux_scsi diff --git a/inventory/host_vars/buildvm-s390x-32.s390.fedoraproject.org b/inventory/host_vars/buildvm-s390x-32.s390.fedoraproject.org new file mode 100644 index 0000000000..b8f712e00d --- /dev/null +++ b/inventory/host_vars/buildvm-s390x-32.s390.fedoraproject.org @@ -0,0 +1,31 @@ +--- +# needed because this host has a varnish cache on it. +custom_rules: ['-A INPUT -s 10.16.0.0/24 -p tcp -m tcp --dport 80 -j ACCEPT'] +dns1: 10.3.163.33 +dns2: 10.3.163.34 +dns_search1: "iad2.fedoraproject.org" +dns_search2: "fedoraproject.org" +eth0_ipv4: 10.16.0.43 +eth0_ipv4_gw: 10.16.0.254 +eth0_ipv4_nm: 24 +eth0_mac: "{{ mac0 }}" +has_ipv4: yes +lvm_size: 153600 +network_connections: + - autoconnect: yes + ip: + address: + - "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}" + dhcp4: no + dns: + - "{{ dns1 }}" + - "{{ dns2 }}" + dns_search: + - "{{ dns_search1 }}" + - "{{ dns_search2 }}" + gateway4: "{{ eth0_ipv4_gw }}" + mac: "{{ ansible_default_ipv4.macaddress }}" + name: eth0 + state: up + type: ethernet +volgroup: /dev/fedora_linux_scsi diff --git a/inventory/host_vars/buildvm-s390x-33.s390.fedoraproject.org b/inventory/host_vars/buildvm-s390x-33.s390.fedoraproject.org new file mode 100644 index 0000000000..a803fb51bf --- /dev/null +++ b/inventory/host_vars/buildvm-s390x-33.s390.fedoraproject.org @@ -0,0 +1,31 @@ +--- +# needed because this host has a varnish cache on it. +custom_rules: ['-A INPUT -s 10.16.0.0/24 -p tcp -m tcp --dport 80 -j ACCEPT'] +dns1: 10.3.163.33 +dns2: 10.3.163.34 +dns_search1: "iad2.fedoraproject.org" +dns_search2: "fedoraproject.org" +eth0_ipv4: 10.16.0.44 +eth0_ipv4_gw: 10.16.0.254 +eth0_ipv4_nm: 24 +eth0_mac: "{{ mac0 }}" +has_ipv4: yes +lvm_size: 153600 +network_connections: + - autoconnect: yes + ip: + address: + - "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}" + dhcp4: no + dns: + - "{{ dns1 }}" + - "{{ dns2 }}" + dns_search: + - "{{ dns_search1 }}" + - "{{ dns_search2 }}" + gateway4: "{{ eth0_ipv4_gw }}" + mac: "{{ ansible_default_ipv4.macaddress }}" + name: eth0 + state: up + type: ethernet +volgroup: /dev/fedora_linux_scsi diff --git a/inventory/host_vars/buildvm-s390x-34.s390.fedoraproject.org b/inventory/host_vars/buildvm-s390x-34.s390.fedoraproject.org new file mode 100644 index 0000000000..842618b7eb --- /dev/null +++ b/inventory/host_vars/buildvm-s390x-34.s390.fedoraproject.org @@ -0,0 +1,31 @@ +--- +# needed because this host has a varnish cache on it. +custom_rules: ['-A INPUT -s 10.16.0.0/24 -p tcp -m tcp --dport 80 -j ACCEPT'] +dns1: 10.3.163.33 +dns2: 10.3.163.34 +dns_search1: "iad2.fedoraproject.org" +dns_search2: "fedoraproject.org" +eth0_ipv4: 10.16.0.45 +eth0_ipv4_gw: 10.16.0.254 +eth0_ipv4_nm: 24 +eth0_mac: "{{ mac0 }}" +has_ipv4: yes +lvm_size: 153600 +network_connections: + - autoconnect: yes + ip: + address: + - "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}" + dhcp4: no + dns: + - "{{ dns1 }}" + - "{{ dns2 }}" + dns_search: + - "{{ dns_search1 }}" + - "{{ dns_search2 }}" + gateway4: "{{ eth0_ipv4_gw }}" + mac: "{{ ansible_default_ipv4.macaddress }}" + name: eth0 + state: up + type: ethernet +volgroup: /dev/fedora_linux_scsi diff --git a/inventory/host_vars/buildvm-s390x-35.s390.fedoraproject.org b/inventory/host_vars/buildvm-s390x-35.s390.fedoraproject.org new file mode 100644 index 0000000000..496e0600c2 --- /dev/null +++ b/inventory/host_vars/buildvm-s390x-35.s390.fedoraproject.org @@ -0,0 +1,31 @@ +--- +# needed because this host has a varnish cache on it. +custom_rules: ['-A INPUT -s 10.16.0.0/24 -p tcp -m tcp --dport 80 -j ACCEPT'] +dns1: 10.3.163.33 +dns2: 10.3.163.34 +dns_search1: "iad2.fedoraproject.org" +dns_search2: "fedoraproject.org" +eth0_ipv4: 10.16.0.46 +eth0_ipv4_gw: 10.16.0.254 +eth0_ipv4_nm: 24 +eth0_mac: "{{ mac0 }}" +has_ipv4: yes +lvm_size: 153600 +network_connections: + - autoconnect: yes + ip: + address: + - "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}" + dhcp4: no + dns: + - "{{ dns1 }}" + - "{{ dns2 }}" + dns_search: + - "{{ dns_search1 }}" + - "{{ dns_search2 }}" + gateway4: "{{ eth0_ipv4_gw }}" + mac: "{{ ansible_default_ipv4.macaddress }}" + name: eth0 + state: up + type: ethernet +volgroup: /dev/fedora_linux_scsi