Skip to content

shirishbasantrai/nuage-metroae

 
 

Repository files navigation

Nuage Networks Metro Automation Engine (MetroAE)

Version: 4.3.1

MetroAE is an automation engine that can be used to

  • Install
  • Health check
  • Upgrade
  • Configure
  • Backup/restore
  • Shutdown/restart
  • Failover/failback

Nuage Networks components. You specify the individual details of your target platform, then let MetroAE do the rest.

Documentation

The Documentation directory contains the following guides to assist you in successfully working with MetroAE. The current documentation covers using MetroAE CLI only.

File name Description
RELEASE_NOTES New features, resolved issues and known limitations and issues
GETTING_STARTED MetroAE Quick Start Guide
DOCKER Installing and using MetroAE Docker container
SETUP Set up your environment by cloning the repo, installing packages and configuring access.
CUSTOMIZE Populate variable files for a deployment and unzip Nuage software.
VAULT_ENCRYPT Safeguard sensitive data
DEPLOY Deploy all VSP components or choose components individually.
DESTROY Remove existing deployment(s) and start over.
CONFIG MetroAE Config, the template-driven VSD configuration tool.
UPGRADE_SA Upgrade component(s) from one release to the next in a standalone environment.
UPGRADE_HA Upgrade component(s) from one release to the next in a clustered environment.
VSD_SERVICES Using MetroAE to control VSD Services during maintenance
VSD_ROLLBACK_RESTORE Roll Back or Restore VSD to original version outside normal upgrade path
VSD_CLUSTER_FAILOVER Managing VSD cluster failover and failback
NSGV_BOOTSTRAP Using MetroAE to bootstrap NSGv components
SD-WAN_PORTAL Deploying SD-WAN portal using MetroAE
AWS Using MetroAE to deploy on Amazon Web Services (AWS)
TERRAFORM Using the Terraform framework in conjunction with MetroAE
HOOKS_AND_SKIPACTIONS Configure ability to run custom commands in between playbooks and skip playbooks
AUTOGENERATE_DEPLOYMENTS Generate MetroAE deployment configurations automatically via script
CONTRIBUTING Contribute to MetroAE development
LICENSE License statement for MetroAE

Important Notes

You can now run python run_wizard.py to let MetroAE help you setup your server and create or edit a deployment. The wizard will ask you questions about what you'd like to do and then create the proper files on disk. run_wizard.py is most useful when you are working with a clone of the nuage-metroae repo. It can be used to generate deployments that can be used with the Docker container version of MetroAE, but those deployments would need to be copied manually from the nuage-metroae repo clone to the container's metroae_data directory.

Please see RELEASE_NOTES.md for all the details about what has changed or been added in this release.

All MetroAE operations, including Docker container management, use a command metroae for consistent usage and syntax. Please see DOCKER.md for details on configuration and use of the container version of MetroAE.

Supported Components for Deployment and Upgrade

MetroAE supports deployment and upgrade of the following components as VMs on the target server. These are the same target server types that are supported on the VSP platform.

supported_components

Supported Dataplane components (installed as package/agent):

Component KVM
(el6, el7,ubuntu 14.04/16.04)
ESXi
VRS (Virtual Routing & Switching) X (upgrade only)

Required Auxiliary Services

  • DNS/NTP

Supported Target Servers

MetroAE supports the deployment and upgrade of Nuage VSP components on the following target servers.

supported_vms

Typical Nuage Topology

topology_rev

Main Steps for Using MetroAE

  1. Setup the MetroAE host. Setup prepares the host for running MetroAE, including retrieving the repository, installing prerequisite packages and setting up SSH access. You also have the option of installing MetroAE in a container, and then working with it via CLI or the GUI.

  2. Obtain the proper Nuage binary files for your deployment. These can be downloaded from Nuage/Nokia online customer support.

  3. Customize your deployment to match your network topology, and describe your Nuage Networks specifics.

  4. Deploy new components, upgrade a standalone or clustered deployment, or run a health check on your system.

  5. If things did not work out as expected, destroy your environment and redeploy.

MetroAE Workflows

MetroAE workflows are the operations that can be performed against a specified deployment. All supported workflows can be listed via:

metroae --list

Workflows fall into the following categories:

Standard Workflows

Standard workflows in MetroAE perform the following operations:

Workflow Operation Description
Predeploy prepares infrastructure with necessary packages and makes the component(s) reachable
Deploy installs and configures component(s)
Postdeploy performs integration checks, and some basic commissioning tests
Health checks health for a running component without assuming it was deployed with MetroAE
Destroy removes component(s) from the infrastructure
Upgrade upgrades component(s) from one release to another
Services controls services for component(s) for maintenance

The following workflows are examples that combine together several of the above operations into simple to use groups:

  • install everything - Deploys all components specified in a deployment.
  • destroy everything - Destroys all components specified in a deployment.
  • health - Checks the health of all components specified in a deployment.

Special Workflows

Special workflows in MetroAE perform certain specific operations. Some of them are shown below.

Workflow Operation Description
tools copy qcow Copy qcow2 images to target server
tools encrypt credentials Encrypt credentials.yml in your deployment
tools unzip images Unzip Nuage images
tools convert csv Convert spreadsheet (CSV) to deployment
wizard Run MetroAE Wizard
vsd certificates renew Renew certificates on VSDs
vsc harden Harden the VSC configuration

Collecting Triage Collateral : get_debug.py

In the event that you contact the MetroAE team for help, often via the team's email address, devops@nuagenetworks.net, you might be asked to provide a set of files that provide the collateral our engineers need to triage the situation. get_debug.py is provided to make the process of gathering files easier for you. get_debug.py will create a zip archive that contains the following files and folders:

  • ansible.log
  • deployments folder
  • src/inventory

If you run get_debug.py without arguments, it will include the entire contents of the deployments folder, the entire contents of the src/inventory folder, and the file ansible.log, in a zip file in the current directory. The name of the file, by default, will be of the form debug-<timestamp>.tar.gz.

Optionally, you can pass get_debug.py 1 or 2 parameters:

  • tarFileName: The name of the zip file to create. If not specified, the default value is of the form debug-<timestamp>.tar.gz
  • deploymentName: The name of the deployment folder under deployments to include in the zip file. If not specified, the default action is to include all folders under deployments.

Command To run the script:
python get_debug.py [--tarFileName name-of-file] [--deploymentName name-of-deployment]

Python-based Ansible Operations Tool

MetroAE is based off of the Python-based Ansible operations tool.

Ansible provides a method to easily define one or more actions to be performed on one or more computers. These tasks can target the local system Ansible is running from, as well as other systems that Ansible can reach over the network. The Ansible engine has minimal installation requirements. Python, with a few additional libraries, is all that is needed for the core engine. MetroAE includes a few custom Python modules and scripts. Agent software is not required on the hosts to be managed. Communication with target hosts defaults to SSH. Ansible does not require the use of a persistent state engine. Every Ansible run determines state as it goes, and adjusts as necessary given the action requirements. Running Ansible requires only an inventory of potential targets, state directives, either expressed as an ad hoc action, or a series coded in a YAML file, and the credentials necessary to communicate with the target.

Playbooks are the language by which Ansible orchestrates, configures, administers and deploys systems. They are YAML-formatted files that collect one or more plays. Plays are one or more tasks linked to the hosts that they are to be executed on.

Roles build on the idea of include files and combine them to form clean, reusable abstractions. Roles are ways of automatically loading certain vars files, tasks, and handlers based on a known file structure.

Nomenclature

Ansible Host: The host where MetroAE runs. Ansible and the required packages are installed on this host. The Ansible Host must run el7 Linux host, e.g. CentOS 7.* or RHEL 7.*.

MetroAE User: The user who runs MetroAE to deploy and upgrade components.

Target Server: The hypervisor on which one or more VSP components are installed as VMs. Each deployment may contain more than one Target Server.

Questions, Feedback, and Contributing

Ask questions and get support on the MetroAE site. You may also contact us directly. Outside Nokia: devops@nuagenetworks.net Internal Nokia: nuage-metro-interest@list.nokia.com

Report bugs you find and suggest new features and enhancements via the GitHub Issues feature.

You may also contribute to MetroAE by submitting your own code to the project.

License

LICENSE

About

Nuage Networks Metro Automation Engine

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 66.0%
  • Python 25.9%
  • Shell 8.1%