This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
maas [2016/02/09 16:41] avladu Update the add-apt maas stable repo as mentioned in the official MAAS install docs |
maas [2016/12/16 12:11] (current) sgiulitti |
||
|---|---|---|---|
| Line 19: | Line 19: | ||
| gunzip grubnetx64.efi.gz | gunzip grubnetx64.efi.gz | ||
| cp grubnetx64.efi / | cp grubnetx64.efi / | ||
| + | ``` | ||
| + | |||
| + | or get the Ubuntu 16.10 grub2 version: | ||
| + | |||
| + | ``` | ||
| + | wget http:// | ||
| + | -O / | ||
| ``` | ``` | ||
| | | ||
| Line 27: | Line 34: | ||
| ## | ## | ||
| ###Machine 1 – MAAS Controller | ###Machine 1 – MAAS Controller | ||
| - | * Ubuntu | + | * Ubuntu |
| * The external is connected to the internet, the private will be used for MAAS deployment. | * The external is connected to the internet, the private will be used for MAAS deployment. | ||
| + | |||
| + | ###Note | ||
| + | Ubuntu doesn' | ||
| + | instead you will see ens3 ens9 because of systemd renaming those. | ||
| + | Let's assume the ens3 is the primary one and ensp5s the second one. | ||
| *Example interface configuration: | *Example interface configuration: | ||
| ```bash | ```bash | ||
| - | # The primary network interface | + | # This file describes the network interfaces available on your system |
| - | auto eth0 | + | # and how to activate them. For more information, |
| - | iface eth0 inet dhcp | + | |
| + | source / | ||
| + | |||
| + | # The loopback network interface | ||
| + | auto lo | ||
| + | iface lo inet loopback | ||
| + | |||
| + | # The primary network interface | ||
| + | auto ens3 | ||
| + | iface ens3 inet static | ||
| + | address 192.168.122.157 | ||
| + | netmask 255.255.255.0 | ||
| + | gateway 192.168.122.1 | ||
| + | dns-nameservers 8.8.8.8 8.8.4.4 | ||
| + | |||
| + | # The secondary network interface | ||
| + | # This is used for internal maas only | ||
| + | auto ens9 | ||
| + | iface ens9 inet static | ||
| + | address 10.10.10.10 | ||
| + | netmask 255.255.255.0 | ||
| - | # The secondary NIC (used internal for MAAS) | ||
| - | auto eth1 | ||
| - | iface eth1 inet static | ||
| - | address 192.168.1.1 | ||
| - | netmask 255.255.255.0 | ||
| ``` | ``` | ||
| Line 54: | Line 81: | ||
| ##Preparing MAAS Controller | ##Preparing MAAS Controller | ||
| - | ###Install Ubuntu | + | ###Install Ubuntu |
| Basic install | Basic install | ||
| Line 63: | Line 90: | ||
| sudo apt-get update | sudo apt-get update | ||
| sudo apt-get upgrade | sudo apt-get upgrade | ||
| + | sudo apt-get dist-upgrade | ||
| + | sudo apt-get install openssh-server vlan | ||
| sudo apt-get install software-properties-common -y | sudo apt-get install software-properties-common -y | ||
| sudo add-apt-repository ppa: | sudo add-apt-repository ppa: | ||
| Line 72: | Line 101: | ||
| ```bash | ```bash | ||
| - | sudo apt-get install maas maas-dhcp -y | + | sudo apt-get install maas maas-dns |
| ``` | ``` | ||
| + | |||
| + | NOTE: When asked for the Ubuntu MAAS API address, double check the detected URL uses ens3’s (external) IP address: http:// | ||
| + | You can later change this by running: | ||
| + | ```bash | ||
| + | sudo dpkg-reconfigure maas-rack-controller | ||
| + | ``` | ||
| + | Also, double check that running | ||
| + | ```bash | ||
| + | sudo dpkg-reconfigure maas-region-controller | ||
| + | ``` | ||
| + | shows the IP address of ensp5s (managed NIC), if not set it to 10.10.10.10! | ||
| + | |||
| + | |||
| ### | ### | ||
| Line 90: | Line 132: | ||
| sysctl -p | sysctl -p | ||
| ``` | ``` | ||
| - | In this example | + | In this example |
| ### Create admin user | ### Create admin user | ||
| Line 96: | Line 138: | ||
| ```bash | ```bash | ||
| - | sudo maas-region-admin createadmin --username root --email user@server.com | + | # maas 2.0 |
| + | sudo maas-region | ||
| ``` | ``` | ||
| Line 120: | Line 163: | ||
| Edit the default cluster and enable DHCP and DNS on the interface where you will be serving DHCP (see the screenshot as an example). | Edit the default cluster and enable DHCP and DNS on the interface where you will be serving DHCP (see the screenshot as an example). | ||
| - | Open `http://< | + | Open `http://< |
| *Example:* | *Example:* | ||
| - | Router IP = eth1's IP* | + | Router IP = ens9's IP* |
| - | IP = eth1's IP | + | IP = ens9's IP |
| : | ||
| + | ```bash | ||
| + | sudo chsh -s /bin/bash maas | ||
| + | ``` | ||
| + | |||
| + | Generate a SSH keypair as the maas user (hit enter three times to accept the default path and empty password): | ||
| + | ```bash | ||
| + | sudo -u maas ssh-keygen | ||
| + | Generating public/ | ||
| + | Enter file in which to save the key (/ | ||
| + | Created directory '/ | ||
| + | Enter passphrase (empty for no passphrase): | ||
| + | Enter same passphrase again: | ||
| + | Your identification has been saved in / | ||
| + | Your public key has been saved in / | ||
| + | ``` | ||
| + | Then add the public key to ~ubuntu/ | ||
| + | ```bash | ||
| + | sudo -u maas -i ssh-copy-id ubuntu@192.168.122.1 | ||
| + | ``` | ||
| + | As the maas user, test virsh commands against libvirt at 192.168.122.1: | ||
| + | ```bash | ||
| + | sudo -u maas virsh -c qemu+ssh:// | ||
| + | ``` | ||
| ###Set upstream DNS | ###Set upstream DNS | ||
| Line 147: | Line 227: | ||
| ### x509 keys | ### x509 keys | ||
| - | Create a x509 certificate to use with WinRM | + | Create a x509 certificate to use with WinRM. This command is available on the MAAS node itself. |
| ```bash | ```bash | ||
| maas-generate-winrm-cert | maas-generate-winrm-cert | ||
| ``` | ``` | ||
| + | |||
| + | For your convenience, | ||
| + | |||
| Copy the outputed key to: | Copy the outputed key to: | ||
| Line 159: | Line 242: | ||
| ## Creating a windows image for MaaS | ## Creating a windows image for MaaS | ||
| - | To generate a new image for MaaS, you will need the following powershell | + | To generate a new image for MaaS, you will need the following powershell |
| ``` | ``` | ||
| - | https:// | + | https:// |
| ``` | ``` | ||