packstack_ironic_vbox.txt 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. # Base Install
  2. sudo yum install -y git
  3. git clone https://git.susnik.work/jan/packstack_ironic_ocata.git
  4. cd packstack_ironic_ocata
  5. sudo bash run_setup.sh ironic enp0s8
  6. # Ironic + VirtualBox (pxe_vbox is not supported anymore as of OpenStack Ocata release)
  7. # On VBox node:
  8. VBoxManage setproperty websrvauthlibrary null
  9. vboxwebsrv --host 172.16.1.5 --port 1234
  10. # For Newton:
  11. yum -y install https://rdo.fedorapeople.org/rdo-release.rpm
  12. yum -y install git python-setuptools
  13. yum -y update
  14. yum install -y python-crypto python-devel libffi-devel openssl-devel gcc-c++
  15. pip install docutils pbr pyopenssl pyyaml
  16. yum install -y python-pip
  17. pip install --upgrade pip
  18. pip install pyremotevbox
  19. ironic node-create -n baremetal -d pxe_vbox -i virtualbox_host=172.16.1.5 -i virtualbox_port=1234 -i virtualbox_vmname=baremetal
  20. ####
  21. # Edit /etc/ironic/ironic.conf and change ...
  22. # enabled_drivers = pxe_ssh
  23. systemctl restart openstack-ironic-conductor
  24. . keystonerc_admin
  25. NODE_HOSTNAME="baremetal"
  26. ironic node-create -n "$NODE_HOSTNAME" -d pxe_ssh -i ssh_address=172.16.1.5 -i ssh_username=jan -i ssh_virt_type=vbox -i ssh_key_contents="$(cat private.key)"
  27. ironic port-create -n 95a45f0a-f8f3-4080-a06d-c46d89640ed0 -a 00:12:34:56:78:90
  28. # Check if connection to VirtualBox works
  29. ironic node-set-power-state baremetal on
  30. # When you'll prompted for boot image click Cancel and afterwards stop ironic node
  31. ironic node-set-power-state baremetal off
  32. # Create TFTP directory and place all required files into it
  33. # https://docs.openstack.org/project-install-guide/baremetal/draft/setup-drivers.html
  34. mkdir -p /tftpboot
  35. chown -R ironic /tftpboot
  36. yum install -y tftp-server syslinux-tftpboot xinetd
  37. # Edit file /etc/xinetd.d/tftp and replace it's service contents with
  38. service tftp
  39. {
  40. protocol = udp
  41. port = 69
  42. socket_type = dgram
  43. wait = yes
  44. user = root
  45. server = /usr/sbin/in.tftpd
  46. server_args = -v -v -v -v -v --map-file /tftpboot/map-file /tftpboot
  47. disable = no
  48. # This is a workaround for Fedora, where TFTP will listen only on
  49. # IPv6 endpoint, if IPv4 flag is not used.
  50. flags = IPv4
  51. }
  52. systemctl restart xinetd
  53. cp /usr/share/syslinux/{pxelinux.0,chain.c32} /tftpboot/
  54. echo 're ^(/tftpboot/) /tftpboot/\2' > /tftpboot/map-file
  55. echo 're ^/tftpboot/ /tftpboot/' >> /tftpboot/map-file
  56. echo 're ^(^/) /tftpboot/\1' >> /tftpboot/map-file
  57. echo 're ^([^/]) /tftpboot/\1' >> /tftpboot/map-file
  58. chcon -R -t tftpdir_rw_t /tftpboot
  59. # Enable web console
  60. yum install -y epel-release
  61. yum install -y shellinabox
  62. # Uncomment following lines in /etc/ironic/ironic.conf for TFTP/PXE ...
  63. # tftp_server = $my_ip
  64. # tftp_root = /tftpboot
  65. # pxe_bootfile_name = pxelinux.0
  66. # ... and change following line to:
  67. # pxe_append_params = nofb nomodeset vga=normal console=tty0 console=ttyS0,115200n8
  68. systemctl restart openstack-ironic-conductor
  69. # Update node to support web console
  70. ironic node-update 95a45f0a-f8f3-4080-a06d-c46d89640ed0 add driver_info/ssh_terminal_port=8023
  71. ironic node-set-console-mode 95a45f0a-f8f3-4080-a06d-c46d89640ed0 true
  72. # Configure Ironic
  73. # https://docs.openstack.org/developer/openstack-ansible-os_ironic/ocata/configure-ironic.html
  74. neutron net-create ironic-net --shared --provider:network_type flat --provider:physical_network physnet1
  75. neutron subnet-create ironic-net 172.16.1.176/28 --name ironic-subnet --ip-version=4 --allocation-pool start=172.16.1.178,end=172.16.1.190 --gateway 172.16.1.50 --enable-dhcp --dns-nameservers list=true 8.8.4.4 8.8.8.8
  76. # SET GATEWAY TO 10.1.2.1 !!!
  77. # neutron subnet-create ironic-net 10.1.2.176/28 --name ironic-subnet --ip-version=4 --allocation-pool start=10.1.2.178,end=10.1.2.190 --gateway 10.1.2.1 --enable-dhcp --dns-nameservers list=true 8.8.4.4 8.8.8.8
  78. # Change /etc/neutron/plugins/ml2/ml2_conf.ini to ...
  79. # [ml2_type_vlan]
  80. # network_vlan_ranges = physnet1
  81. systemctl restart neutron-{openvswitch-agent,server}
  82. # We also need to update cleaning network in /etc/ironic/ironic.conf now
  83. # cleaning_network = ironic-net
  84. systemctl restart openstack-ironic-conductor
  85. # https://docs.openstack.org/developer/diskimage-builder/user_guide/installation.html
  86. yum install -y python-pip
  87. pip install --upgrade pip
  88. pip install diskimage-builder
  89. # Generate disk image for booting on node
  90. IMAGE_NAME="fedora"
  91. mkdir "$IMAGE_NAME" && cd "$IMAGE_NAME"
  92. disk-image-create fedora iso -o "$IMAGE_NAME" ironic-agent
  93. glance image-create --name "${IMAGE_NAME}.kernel" --visibility public --disk-format aki --property hypervisor_type=baremetal --protected=True --container-format aki < "${IMAGE_NAME}.kernel"
  94. glance image-create --name "${IMAGE_NAME}.initramfs" --visibility public --disk-format ari --property hypervisor_type=baremetal --protected=True --container-format ari < "${IMAGE_NAME}.initramfs"
  95. IMAGE_SOURCE=$(openstack image create "$IMAGE_NAME" --public --disk-format=iso --container-format=bare < "${IMAGE_NAME}.iso" -f value -c id)
  96. # Create flavor
  97. FLAVOR_NAME="$IMAGE_NAME"
  98. FLAVOR_ID=auto
  99. FLAVOR_RAM=2048
  100. FLAVOR_DISK=10
  101. FLAVOR_CPU=1
  102. nova flavor-create ${FLAVOR_NAME} ${FLAVOR_ID} ${FLAVOR_RAM} ${FLAVOR_DISK} ${FLAVOR_CPU}
  103. nova flavor-key ${FLAVOR_NAME} set cpu_arch=x86_64
  104. nova flavor-key ${FLAVOR_NAME} set capabilities:boot_option="local"
  105. # Update node info
  106. KERNEL_IMAGE=$(glance image-list | awk "/${IMAGE_NAME}.kernel/ {print \$2}")
  107. INITRAMFS_IMAGE=$(glance image-list | awk "/${IMAGE_NAME}.initramfs/ {print \$2}")
  108. ROOT_DISK_SIZE_GB="$FLAVOR_DISK"
  109. ironic node-update "$NODE_HOSTNAME" add \
  110. driver_info/deploy_kernel=$KERNEL_IMAGE \
  111. driver_info/deploy_ramdisk=$INITRAMFS_IMAGE \
  112. instance_info/kernel=$KERNEL_IMAGE \
  113. instance_info/ramdisk=$INITRAMFS_IMAGE \
  114. instance_info/root_gb=${ROOT_DISK_SIZE_GB} \
  115. instance_info/image_source=${IMAGE_SOURCE}
  116. ironic node-update "$NODE_HOSTNAME" add \
  117. properties/cpus="$FLAVOR_CPU" \
  118. properties/memory_mb="$FLAVOR_RAM" \
  119. properties/local_gb="$ROOT_DISK_SIZE_GB" \
  120. properties/size=3600 \
  121. properties/cpu_arch=x86_64 \
  122. properties/capabilities=memory_mb:"$FLAVOR_RAM",local_gb:"$ROOT_DISK_SIZE_GB",cpu_arch:x86_64,cpus:"$FLAVOR_CPU",boot_option:local
  123. # Add SSH keypair
  124. nova keypair-add --pub-key ~/.ssh/id_rsa.pub admin
  125. # Check if keystone authentication config in /etc/nova/nova.conf is correct or change part with all values below (those values are usually already written at the end of config block, but are most probably wrong - that's why openstack-nova-compute service is inactive)
  126. # [ironic]
  127. # username=ironic
  128. # password=<ironic-password>
  129. # auth_plugin=password
  130. # admin_username=ironic
  131. # admin_password=<ironic-password>
  132. # admin_url=http://127.0.0.1:35357/
  133. # admin_tenant_name=services
  134. # Restart Nova Compute to apply changed config
  135. systemctl restart openstack-nova-compute
  136. # Make sure we have available hosts
  137. nova-manage cell_v2 discover_hosts
  138. # Make services available to Ironic network
  139. iptables -I INPUT -p udp --dport 67 -s 10.1.2.0/24 -j ACCEPT
  140. iptables -I INPUT -p udp --dport 69 -s 10.1.2.0/24 -j ACCEPT
  141. iptables -I INPUT -p tcp --dport 3260 -s 10.1.2.0/24 -j ACCEPT
  142. service iptables save
  143. service iptables restart
  144. # Boot node with generated image
  145. nova boot --flavor "$FLAVOR_NAME" --image "$IMAGE_NAME" --key-name admin "$NODE_HOSTNAME" --nic net-name=ironic-net
  146. # (Warning: Don't perform this step until you tried to boot node!) In case that status of node is Error, we need to change RAM allocation value to a bit more then currently (usually this is 1.0), so we open /etc/nova/nova.conf and set
  147. # ram_allocation_ratio=3.0
  148. # And restart Nova Compute & Nova Conductor to apply changes
  149. systemctl restart openstack-nova-{compute,conductor}
  150. #############################
  151. #echo 'linux-image-generic-lts-xenial:' > /usr/share/diskimage-builder/elements/ubuntu/package-installs.yaml
  152. echo 'linux-image-generic-lts-xenial:' > /usr/lib/python2.7/site-packages/diskimage_builder/elements/ubuntu/package-installs.yaml
  153. IMAGE_NAME=ubuntu-xenial
  154. disk-image-create ironic-agent ubuntu -o ${IMAGE_NAME}
  155. glance image-create --name ${IMAGE_NAME}.kernel --visibility public --disk-format aki --container-format aki < ${IMAGE_NAME}.kernel
  156. glance image-create --name ${IMAGE_NAME}.initramfs --visibility public --disk-format ari --container-format ari < ${IMAGE_NAME}.initramfs
  157. pip install tripleo-image-elements
  158. export ELEMENTS_PATH=/usr/share/tripleo-image-elements
  159. disk-image-create ubuntu baremetal localboot local-config dhcp-all-interfaces grub2 -o ${IMAGE_NAME}
  160. VMLINUZ_UUID="$(glance image-create --name ${IMAGE_NAME}.vmlinuz --visibility public --disk-format aki --container-format aki < ${IMAGE_NAME}.vmlinuz | awk '/\| id/ {print $4}')"
  161. INITRD_UUID="$(glance image-create --name ${IMAGE_NAME}.initrd --visibility public --disk-format ari --container-format ari < ${IMAGE_NAME}.initrd | awk '/\| id/ {print $4}')"
  162. glance image-create --name ${IMAGE_NAME} --visibility public --disk-format qcow2 --container-format bare --property kernel_id=${VMLINUZ_UUID} --property ramdisk_id=${INITRD_UUID} < ${IMAGE_NAME}.qcow2
  163. FLAVOR_NAME="$IMAGE_NAME"
  164. FLAVOR_ID=auto
  165. FLAVOR_RAM=1512
  166. FLAVOR_DISK=5
  167. FLAVOR_CPU=1
  168. nova flavor-create ${FLAVOR_NAME} ${FLAVOR_ID} ${FLAVOR_RAM} ${FLAVOR_DISK} ${FLAVOR_CPU}
  169. nova flavor-key ${FLAVOR_NAME} set cpu_arch=x86_64
  170. nova flavor-key ${FLAVOR_NAME} set capabilities:boot_option="local"
  171. NODE_HOSTNAME="baremetal"
  172. KERNEL_IMAGE=$(glance image-list | awk "/${IMAGE_NAME}.kernel/ {print \$2}")
  173. INITRAMFS_IMAGE=$(glance image-list | awk "/${IMAGE_NAME}.initramfs/ {print \$2}")
  174. ROOT_DISK_SIZE_GB="$FLAVOR_DISK"
  175. ironic node-update "$NODE_HOSTNAME" add \
  176. driver_info/kernel=$KERNEL_IMAGE \
  177. driver_info/ramdisk=$INITRAMFS_IMAGE \
  178. instance_info/kernel=$KERNEL_IMAGE \
  179. instance_info/ramdisk=$INITRAMFS_IMAGE \
  180. instance_info/root_gb=${ROOT_DISK_SIZE_GB} \
  181. instance_info/image_source=${IMAGE_NAME}
  182. ironic node-update "$NODE_HOSTNAME" add \
  183. properties/cpus="$FLAVOR_CPU" \
  184. properties/memory_mb="$FLAVOR_RAM" \
  185. properties/local_gb="$ROOT_DISK_SIZE_GB" \
  186. properties/size=3600 \
  187. properties/cpu_arch=x86_64 \
  188. properties/capabilities=memory_mb:"$FLAVOR_RAM",local_gb:"$ROOT_DISK_SIZE_GB",cpu_arch:x86_64,cpus:"$FLAVOR_CPU",boot_option:local
  189. nova keypair-add --pub-key ~/.ssh/id_rsa.pub admin
  190. # change username & password + ram allocation to 3.0 for [ironic] in /etc/nova/nova.conf
  191. nova-manage cell_v2 discover_hosts
  192. chcon -R -t tftpdir_rw_t /tftpboot
  193. iptables -I INPUT -p udp --dport 67 -s 10.1.2.0/24 -j ACCEPT
  194. iptables -I INPUT -p udp --dport 69 -s 10.1.2.0/24 -j ACCEPT
  195. iptables -I INPUT -p tcp --dport 3260 -s 10.1.2.0/24 -j ACCEPT
  196. service iptables save
  197. service iptables restart
  198. # nova compute install + systemctl enable openstack-nova-compute + api in nova/nova.conf for ironic, cleaning net ironic, chcon /tftpboot, iptables dhcp + tftp
  199. nova boot --flavor ${FLAVOR_NAME} --image ${IMAGE_NAME} --key-name admin ${NODE_HOSTNAME} --nic net-name=ironic-net
  200. # nova boot --flavor ubuntu-xenial --image ubuntu-xenial --key-name admin baremetal --nic net-name=ironic-net
  201. # dnsmasq with --no-daemon && without bind-interfaces