nautobot / nautobot-chatops-cookiecutter

CookieCutter for Nautobot ChatOps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nautobot ChatOps Cookiecutter

This project helps to get you started on your way of creating Nautobot ChatOps commands quickly. When running through the cookie cutting template, there are a few questions that will help dynamically create content within the final "baked cookie" project. This will create a new repository that will be the new chat bot that you can then install into your Nautobot instance. For more on building your own chat bot, take a look at the blog post on Creating Custom Chat Commands.

Why Cookiecutter?

Before we get started, let's provide some context around the terminology used within Cookiecutter. What is this Cookiecutter? It is a Python method of creating new projects/files from a templated base. Cookiecutter is an open source command-line tool to create projects from a project template. You can learn more on the Cookiecutter GitHub and ReadTheDocs.

  • cookie - The Cookiecutter template that provides the framework for specific projects to allow developers to get started developing faster such as the ones defined above.
  • bake/baking - The output of a cookie. If a cookie is baked, it means the project was created from a Cookiecutter template.

Cookiecutter was chosen as a method to create projects from a template because it provides the capability to provide a customized project output based on a question/answer setup to help get customization in place.

Check out the Python Cookiecutter documentation for more details of the project.

Getting Started

Below are the steps outlined in detail for getting started along with various tips and tricks that may be beneficial.

Generating a New Nautobot Chatops Plugin

Let's walk you through baking a nautobot-chatops-plugin cookie. Below are the settings that will be asked for during the question part.

Setting Description
full_name Used in the author field within pyproject.toml and PluginConfig
email Used in the author field within pyproject.toml
chatops_interactive_command Slash command used to interact with Bot in chat client
plugin_name The Python name of the plugin
verbose_name Used in PluginConfig
plugin_slug Python packaging name
project_slug Slug for the project
base_url Defines plugin's base url used in Nautobot
min_nautobot_version The minimum supported Nautobot version
max_nautobot_version The maximum supported Nautobot version
nautobot_version Used for development purposes to decide with Nautobot-dev Docker image to use for development
camel_name Used to define the plugin's subclassing of PluginConfig, e.g. MyPluginConfig(PluginConfig):
project_short_description Used in the description field within PluginConfig
version Version of the new Nautobot plugin
open_source_license Determine if project is open source or not
setup_local_mattermost_dev_env Setup Local mattermost development environment flag

NOTE: Cookiecutter by default bakes the new cookie within the current working directory. If that is not desirable then use the -o option to specify a different output directory.

❯ cookiecutter .

full_name [John Doe]: email [mail@example.com]: 
chatops_interactive_command [my_plugin]: 
plugin_name [nautobot_plugin_chatops_my_plugin]: 
verbose_name [Nautobot Plugin Chatops My Plugin]: 
plugin_slug [nautobot-plugin-chatops-my-plugin]: 
project_slug [nautobot-plugin-chatops-my-plugin]: 
min_nautobot_version [1.2.0]: 
max_nautobot_version [1.9999]: 
nautobot_version [latest]: 
camel_name [NautobotPluginChatopsMyPlugin]: 
project_short_description [Nautobot Plugin Chatops My Plugin]: 
version [0.1.0]: 
Select open_source_license:
1 - Apache-2.0
2 - Not open source
Choose from 1, 2 [1]: 
Select setup_local_mattermost_dev_env:
1 - Yes
2 - No
Choose from 1, 2 [1]: 

Congratulations!  Your cookie has now been baked.

⚠️⚠️ Before you start using your cookie you must run the following commands inside your cookie:

* cp development/creds.example.env development/creds.env
* poetry lock

creds.env will be ignored by git and can be used to override default environment variables.

Follow the directions provided at the end of baking the cookie.

cd nautobot-plugin-chatops-my-plugin
➜ poetry lock
➜ cp development/creds.example.env development/creds.env

Here is an example of what your directory structure may look like (structure may change over time).

NOTE: there are hidden files not displayed in the below output.

➜ ll nautobot-plugin-chatops-my-plugin
total 104
-rw-r--r--  1 ntc  staff    29B Aug  3 08:15 FAQ.md
-rw-r--r--  1 ntc  staff    16K Aug  3 08:15 GETTING_STARTED.md
-rw-r--r--  1 ntc  staff   591B Aug  3 08:15 LICENSE
-rw-r--r--  1 ntc  staff   7.1K Aug  3 08:15 README.md
drwxr-xr-x  9 ntc  staff   288B Aug  3 08:15 development
-rw-r--r--  1 ntc  staff   300B Aug  3 08:15 invoke.example.yml
drwxr-xr-x  7 ntc  staff   224B Aug  3 08:15 nautobot_plugin_chatops_my_plugin
-rw-r--r--  1 ntc  staff   2.3K Aug  3 08:15 pyproject.toml
-rw-r--r--  1 ntc  staff    12K Aug  3 08:15 tasks.py

Once the cookie is baked the next step is to start developing the plugin! To get familiar with the development environment provided by this cookie, we recommend checking out the GETTING_STARTED.md or README.md located in the root directory of the newly baked cookie.

Automate local dev environment setup with Mattermost

The baked cookie supports the automated setup of a local Mattermost instance to quickly test your chatops plugin. All settings and credentials will be pre-configured, and a separate Docker container will run Mattermost in the background, accessible at http://localhost:8065. Be sure to answer yes to the question about setup_local_mattermost_dev_env.

To set up this environment, you must first run poetry lock command and have creds.env file in place. Then you run the following invoke commands from within the plugin folder.

➜ poetry shell             # Activate poetry environment
➜ invoke build             # Build the containers
➜ invoke setup-mattermost  # Setup the Mattermost container and configure all required settings
➜ invoke start             # Start all Nautobot containers

There is no additional setup needed. After a few seconds, you can test this deployment is working properly as follows:

Mattermost

  • Go to http://localhost:8065/automationteam/messages/@ntcbot
  • Log in using the default admin/Nautobot123!! credentials.
    • These are set in development/development.env, and may have been changed.
  • Send a direct message to @nautobot-bot. You should be able to run an example command /chatops_interactive_command hello-world test, where "chatops_interactive_command" is what was configured for the last question during cookiecutter template generation.

Nautobot

  • Got to http://localhost:8080
  • Log in using the default admin/admin credentials.
    • These are set in development/creds.env, and may have been changed.

You can see the Mattermost token and command are already configured.

Adding new chatbot commands

After updating the {plugin-name}/worker.py file and saving it, the backend Django service should auto-reload with your changes. If it doesn't, or a bug in the code caused it to crash, you can quickly relaunch it from your poetry environment with invoke restart.

Get dev environment running - Manual

If you prefer to not use the local Mattermost instance for development purposes, you can follow the instructions below.

You must configure the relevant ChatOps plugin variables in development/creds.env. For example, if you want to use Slack, configure the relevant API token, secret, and set enable_slack to true.

Once done, setup the relevant SaaS application is setup on the backend. Follow the instructions found in the Nautobot ChatOps Plugin repo.

Then run the following commands:

poetry shell
poetry install
invoke build
invoke start

Once the Docker containers are spun up, go to http://localhost:8080 to see the running instance. For dev purposes, add permissions for all commands in Plugins-->Access Grants for each of the following:

  • Organization
  • Channel
  • User

Once completed, open Slack (or whichever chat app client you configured). You should be able to run an example command /chatops_interactive_command hello-world test, where "chatops_interactive_command" is what was configured for the last question during cookiecutter template generation.

About

CookieCutter for Nautobot ChatOps


Languages

Language:Python 86.4%Language:Shell 10.7%Language:Dockerfile 2.4%Language:CSS 0.5%