packstack_ironic_ipmi.txt 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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 eno2
  6. # Source OpenStack credentials
  7. . keystonerc_admin
  8. NODE_HOSTNAME="baremetal"
  9. ironic node-create -n "$NODE_HOSTNAME" -d pxe_ipmitool -i ipmi_address='10.0.0.2' -i ipmi_username='user' -i ipmi_password='password'
  10. ironic node-update a378e5f9-8e44-44ae-9ba1-1f5b973a6b36 add driver_info/ipmi_protocol_version='1.5'
  11. ironic port-create -n a378e5f9-8e44-44ae-9ba1-1f5b973a6b36 -a 00:12:34:56:78:90
  12. # Check if connection to machine works
  13. ironic node-set-power-state baremetal on
  14. # Check if machine was successfully powered on
  15. ipmipower -h 10.0.0.2 -u root -p ironic --stat
  16. # When you'll be sure connection works as expected
  17. ironic node-set-power-state baremetal off
  18. # Create TFTP directory and place all required files into it
  19. # https://docs.openstack.org/project-install-guide/baremetal/draft/setup-drivers.html
  20. mkdir -p /tftpboot
  21. chown -R ironic /tftpboot
  22. yum install -y tftp-server syslinux-tftpboot xinetd
  23. # Edit file /etc/xinetd.d/tftp and replace it's service contents with
  24. service tftp
  25. {
  26. protocol = udp
  27. port = 69
  28. socket_type = dgram
  29. wait = yes
  30. user = root
  31. server = /usr/sbin/in.tftpd
  32. server_args = -v -v -v -v -v --map-file /tftpboot/map-file /tftpboot
  33. disable = no
  34. # This is a workaround for Fedora, where TFTP will listen only on
  35. # IPv6 endpoint, if IPv4 flag is not used.
  36. flags = IPv4
  37. }
  38. systemctl restart xinetd
  39. cp /usr/share/syslinux/{pxelinux.0,chain.c32} /tftpboot/
  40. echo 're ^(/tftpboot/) /tftpboot/\2' > /tftpboot/map-file
  41. echo 're ^/tftpboot/ /tftpboot/' >> /tftpboot/map-file
  42. echo 're ^(^/) /tftpboot/\1' >> /tftpboot/map-file
  43. echo 're ^([^/]) /tftpboot/\1' >> /tftpboot/map-file
  44. chcon -R -t tftpdir_rw_t /tftpboot
  45. # Enable web console - works only with IPMI 2.0
  46. yum install -y epel-release
  47. yum --enablerepo=epel install -y shellinabox
  48. # Uncomment following lines in /etc/ironic/ironic.conf for TFTP/PXE ...
  49. # my_ip = 10.0.0.1
  50. # tftp_server = $my_ip
  51. # tftp_root = /tftpboot
  52. # pxe_bootfile_name = pxelinux.0
  53. # ... and change following line to:
  54. # pxe_append_params = nofb nomodeset vga=normal console=tty0 console=ttyS0,115200n8
  55. systemctl restart openstack-ironic-conductor
  56. # Update node to support web console
  57. ironic node-update a378e5f9-8e44-44ae-9ba1-1f5b973a6b36 add driver_info/ipmi_terminal_port=8023
  58. ironic node-set-console-mode a378e5f9-8e44-44ae-9ba1-1f5b973a6b36 true
  59. # Configure Ironic
  60. # https://docs.openstack.org/developer/openstack-ansible-os_ironic/ocata/configure-ironic.html
  61. neutron net-create ironic-net --shared --provider:network_type flat --provider:physical_network physnet1
  62. 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
  63. # Change /etc/neutron/plugins/ml2/ml2_conf.ini to ...
  64. # [ml2_type_vlan]
  65. # network_vlan_ranges = physnet1
  66. systemctl restart neutron-{openvswitch-agent,server}
  67. # We also need to update cleaning network in /etc/ironic/ironic.conf now
  68. # cleaning_network = ironic-net
  69. systemctl restart openstack-ironic-conductor
  70. # https://docs.openstack.org/developer/diskimage-builder/user_guide/installation.html
  71. yum install -y python-pip
  72. pip install --upgrade pip
  73. pip install diskimage-builder
  74. # Generate disk image for booting on node
  75. IMAGE_NAME="fedora"
  76. mkdir "$IMAGE_NAME" && cd "$IMAGE_NAME"
  77. disk-image-create fedora iso -o "$IMAGE_NAME" ironic-agent
  78. glance image-create --name "${IMAGE_NAME}.kernel" --visibility public --disk-format aki --property hypervisor_type=baremetal --protected=True --container-format aki < "${IMAGE_NAME}.kernel"
  79. glance image-create --name "${IMAGE_NAME}.initramfs" --visibility public --disk-format ari --property hypervisor_type=baremetal --protected=True --container-format ari < "${IMAGE_NAME}.initramfs"
  80. IMAGE_SOURCE=$(openstack image create "$IMAGE_NAME" --public --disk-format=iso --container-format=bare < "${IMAGE_NAME}.iso" -f value -c id)
  81. # Create flavor
  82. FLAVOR_NAME="$IMAGE_NAME"
  83. FLAVOR_ID=auto
  84. FLAVOR_RAM=8192
  85. FLAVOR_DISK=230
  86. FLAVOR_CPU=4
  87. nova flavor-create ${FLAVOR_NAME} ${FLAVOR_ID} ${FLAVOR_RAM} ${FLAVOR_DISK} ${FLAVOR_CPU}
  88. nova flavor-key ${FLAVOR_NAME} set cpu_arch=x86_64
  89. nova flavor-key ${FLAVOR_NAME} set capabilities:boot_option="local"
  90. # Update node info
  91. KERNEL_IMAGE=$(glance image-list | awk "/${IMAGE_NAME}.kernel/ {print \$2}")
  92. INITRAMFS_IMAGE=$(glance image-list | awk "/${IMAGE_NAME}.initramfs/ {print \$2}")
  93. ROOT_DISK_SIZE_GB="$FLAVOR_DISK"
  94. ironic node-update "$NODE_HOSTNAME" add \
  95. driver_info/deploy_kernel=$KERNEL_IMAGE \
  96. driver_info/deploy_ramdisk=$INITRAMFS_IMAGE \
  97. instance_info/kernel=$KERNEL_IMAGE \
  98. instance_info/ramdisk=$INITRAMFS_IMAGE \
  99. instance_info/root_gb=${ROOT_DISK_SIZE_GB} \
  100. instance_info/image_source=${IMAGE_SOURCE}
  101. ironic node-update "$NODE_HOSTNAME" add \
  102. properties/cpus="$FLAVOR_CPU" \
  103. properties/memory_mb="$FLAVOR_RAM" \
  104. properties/local_gb="$ROOT_DISK_SIZE_GB" \
  105. properties/size=3600 \
  106. properties/cpu_arch=x86_64 \
  107. properties/capabilities=memory_mb:"$FLAVOR_RAM",local_gb:"$ROOT_DISK_SIZE_GB",cpu_arch:x86_64,cpus:"$FLAVOR_CPU",boot_option:local
  108. # Add SSH keypair
  109. nova keypair-add --pub-key ~/.ssh/id_rsa.pub admin
  110. # 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)
  111. # [ironic]
  112. # username=ironic
  113. # password=<ironic-password>
  114. # auth_plugin=password
  115. # admin_username=ironic
  116. # admin_password=<ironic-password>
  117. # admin_url=http://127.0.0.1:35357/
  118. # admin_tenant_name=services
  119. # Restart Nova Compute to apply changed config
  120. systemctl restart openstack-nova-compute
  121. # Make sure we have available hosts
  122. nova-manage cell_v2 discover_hosts
  123. # Make services available to Ironic network
  124. iptables -I INPUT -p udp --dport 67 -s 10.1.2.0/24 -j ACCEPT
  125. iptables -I INPUT -p udp --dport 69 -s 10.1.2.0/24 -j ACCEPT
  126. iptables -I INPUT -p tcp --dport 3260 -s 10.1.2.0/24 -j ACCEPT
  127. service iptables save
  128. service iptables restart
  129. # Boot node with generated image
  130. nova boot --flavor "$FLAVOR_NAME" --image "$IMAGE_NAME" --key-name admin "$NODE_HOSTNAME" --nic net-name=ironic-net
  131. # (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
  132. # ram_allocation_ratio=3.0
  133. # And restart Nova Compute & Nova Conductor to apply changes
  134. systemctl restart openstack-nova-{compute,conductor}
  135. #############################
  136. #echo 'linux-image-generic-lts-xenial:' > /usr/share/diskimage-builder/elements/ubuntu/package-installs.yaml
  137. echo 'linux-image-generic-lts-xenial:' > /usr/lib/python2.7/site-packages/diskimage_builder/elements/ubuntu/package-installs.yaml
  138. IMAGE_NAME=ubuntu-xenial
  139. disk-image-create ironic-agent ubuntu -o ${IMAGE_NAME}
  140. glance image-create --name ${IMAGE_NAME}.kernel --visibility public --disk-format aki --container-format aki < ${IMAGE_NAME}.kernel
  141. glance image-create --name ${IMAGE_NAME}.initramfs --visibility public --disk-format ari --container-format ari < ${IMAGE_NAME}.initramfs
  142. pip install tripleo-image-elements
  143. export ELEMENTS_PATH=/usr/share/tripleo-image-elements
  144. disk-image-create ubuntu baremetal localboot local-config dhcp-all-interfaces grub2 -o ${IMAGE_NAME}
  145. VMLINUZ_UUID="$(glance image-create --name ${IMAGE_NAME}.vmlinuz --visibility public --disk-format aki --container-format aki < ${IMAGE_NAME}.vmlinuz | awk '/\| id/ {print $4}')"
  146. INITRD_UUID="$(glance image-create --name ${IMAGE_NAME}.initrd --visibility public --disk-format ari --container-format ari < ${IMAGE_NAME}.initrd | awk '/\| id/ {print $4}')"
  147. 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
  148. FLAVOR_NAME="$IMAGE_NAME"
  149. FLAVOR_ID=auto
  150. FLAVOR_RAM=1512
  151. FLAVOR_DISK=5
  152. FLAVOR_CPU=1
  153. nova flavor-create ${FLAVOR_NAME} ${FLAVOR_ID} ${FLAVOR_RAM} ${FLAVOR_DISK} ${FLAVOR_CPU}
  154. nova flavor-key ${FLAVOR_NAME} set cpu_arch=x86_64
  155. nova flavor-key ${FLAVOR_NAME} set capabilities:boot_option="local"
  156. NODE_HOSTNAME="baremetal"
  157. KERNEL_IMAGE=$(glance image-list | awk "/${IMAGE_NAME}.kernel/ {print \$2}")
  158. INITRAMFS_IMAGE=$(glance image-list | awk "/${IMAGE_NAME}.initramfs/ {print \$2}")
  159. ROOT_DISK_SIZE_GB="$FLAVOR_DISK"
  160. ironic node-update "$NODE_HOSTNAME" add \
  161. driver_info/kernel=$KERNEL_IMAGE \
  162. driver_info/ramdisk=$INITRAMFS_IMAGE \
  163. instance_info/kernel=$KERNEL_IMAGE \
  164. instance_info/ramdisk=$INITRAMFS_IMAGE \
  165. instance_info/root_gb=${ROOT_DISK_SIZE_GB} \
  166. instance_info/image_source=${IMAGE_NAME}
  167. ironic node-update "$NODE_HOSTNAME" add \
  168. properties/cpus="$FLAVOR_CPU" \
  169. properties/memory_mb="$FLAVOR_RAM" \
  170. properties/local_gb="$ROOT_DISK_SIZE_GB" \
  171. properties/size=3600 \
  172. properties/cpu_arch=x86_64 \
  173. properties/capabilities=memory_mb:"$FLAVOR_RAM",local_gb:"$ROOT_DISK_SIZE_GB",cpu_arch:x86_64,cpus:"$FLAVOR_CPU",boot_option:local
  174. nova keypair-add --pub-key ~/.ssh/id_rsa.pub admin
  175. # change username & password + ram allocation to 3.0 for [ironic] in /etc/nova/nova.conf
  176. nova-manage cell_v2 discover_hosts
  177. chcon -R -t tftpdir_rw_t /tftpboot
  178. iptables -I INPUT -p udp --dport 67 -s 10.1.2.0/24 -j ACCEPT
  179. iptables -I INPUT -p udp --dport 69 -s 10.1.2.0/24 -j ACCEPT
  180. iptables -I INPUT -p tcp --dport 3260 -s 10.1.2.0/24 -j ACCEPT
  181. service iptables save
  182. service iptables restart
  183. # nova compute install + systemctl enable openstack-nova-compute + api in nova/nova.conf for ironic, cleaning net ironic, chcon /tftpboot, iptables dhcp + tftp
  184. nova boot --flavor ${FLAVOR_NAME} --image ${IMAGE_NAME} --key-name admin ${NODE_HOSTNAME} --nic net-name=ironic-net
  185. # nova boot --flavor ubuntu-xenial --image ubuntu-xenial --key-name admin baremetal --nic net-name=ironic-net
  186. # dnsmasq with --no-daemon && without bind-interfaces