summaryrefslogtreecommitdiff
path: root/src/getting-started-maas.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/getting-started-maas.txt')
-rw-r--r--src/getting-started-maas.txt48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/getting-started-maas.txt b/src/getting-started-maas.txt
deleted file mode 100644
index 74622a5..0000000
--- a/src/getting-started-maas.txt
+++ /dev/null
@@ -1,48 +0,0 @@
-Canonical's Metal As A Service (MAAS) allows you to deploy and manage physical hardware in the same way you can deploy and manage virtual machines. This means you can configure, deploy and manage bare metal servers just like you would VMs running on Amazon AWS or Microsoft Azure. MAAS gives you the management tools that have made the cloud popular, but with the additional benefits of physical hardware.
-
-To use MAAS you'll need a server to run the management software and at least one server which can be managed with a BMC (once MAAS in installed you can select different BMC power types according to your hardware setup).
-
-Canonical recommends letting the MAAS server handle DHCP for the network the managed machines are connected to, but if your current infrastructure requires a different approach to DHCP there are other options. The MAAS documentation has more details on [how DHCP works in MAAS](https://docs.maas.io/2.6/en/installconfig-network-dhcp) and how you can adapt it to your current setup.
-
-To install MAAS first download Ubuntu Server 18.04 LTS and follow the step-by-step installation instructions to set up Ubuntu on your server. Once you have Ubuntu 18.04 up and running, you can install MAAS.
-
-To get the latest development release of MAAS, use the [maas/next PPA](https://launchpad.net/~maas/+archive/ubuntu/next). First add the PPA, then update and install.
-
-~~~~console
-sudo add-apt-repository ppa:maas/next
-sudo apt update
-sudo apt install maas
-~~~~
-
-Once MAAS is installed, you'll need initialize it and create an admin user.
-
-~~~~console
-sudo maas init
-~~~~
-
-The init command will ask you ask you to create a username and password for the web-based GUI. You can optionally import your SSH keys as well.
-
-Once the installation is done you can login to the web-based MAAS GUI by pointing your browser to http://<your.maas.ip>:5240/MAAS/.
-
-<img src="maas-01.png" alt="MAAS web UI login screen" />
-
-Once you login to the MAAS web UI you'll be presented with the MAAS configuration panel where you can set the region name, configure a DNS forwarder for domains not managed by MAAS, as well as configure the images and architectures you want available for MAAS-managed machines.
-
-<img src="maas-02.png" alt="MAAS web UI initial setup screen" />
-
-For now you can accept the defaults and click continue. If you did not add your SSH keys in the initialization step, you'll need to upload them now. Then click "Go to Dashboard" to continue.
-
-<img src="maas-04.png" alt="MAAS web UI SSH keys screen" />
-
-The last step is to configure DHCP. When the MAAS Dashboard loads it will alert you that "DHCP is not enabled on any VLAN." To setup DHCP click the "Subnets" menu item and then click the VLAN where you want to enable DHCP.
-
-<img src="maas-07.png" alt="MAAS web UI Subnet screen" />
-
-This will bring up a new page where you can configure your DHCP subnet, start and end IP addresses, and Gateway IP. You can also decide how MAAS handles DHCP, whether directly from the rack controller or relayed to another VLAN. If you don't want MAAS to manage DHCP you can disable it here.
-
-<img src="maas-08.png" alt="MAAS web UI Subnet screen" />
-
-To set up your first MAAS instances with MAAS handling DHCP, click the "Configure MAAS-managed DHCP" button.
-
-<img src="maas-09.png" alt="MAAS web UI Subnet screen" />
-