Skip to content

The ACE-Box is an all-in-one Autonomous Cloud Enablement machine that you can use as a portable sandbox, demo and testing environment.

License

Notifications You must be signed in to change notification settings

Dynatrace/ace-box

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Note:

The ACE-Box has been developed and is being actively maintained by the Innovation Services team at Dynatrace. For queries or logging of problems, please use GitHub Issues part of this project.

This product is not officially supported by Dynatrace.

We are always looking for contributors, please check the Guidelines!


Welcome to the ACE-Box


What is it?

The ACE-Box is a framework that can be used as a portable sandbox, demo and testing environment. It has been designed to simplify resource deployment and to streamline content creation. The ACE-box allows to deploy compute instances (usually cloud-hosted VMs) and to install modules on them. The framework follows a declarative approach where modules, resources and configurations are defined in a set of configuration files.


Who is it for?

The ACE-Box is ideal for anybody who needs to create isolated testing environments, run demonstrations, or build reproducible deployment setups. It caters to those seeking to prototype new features, test new features and integrations, or deliver hands-on training in an efficient and portable manner.


Get Started

  1. Pre-requisites

    • Terraform
    • Dynatrace tenant (prod or sprint, dev not recommended)
  2. Clone the ace-box

    git clone https://github.com/Dynatrace/ace-box.git
  3. Go to folder ./terraform/<aws, azure or gcloud>/ and create a terraform.tfvars file with the following mandatory information:

    dt_tenant = "https://<tenant_id>.sprint.dynatracelabs.com" // You can use prod, sprint or dev
    dt_api_token = "<tenant_api_token>"
    extra_vars = {
      dt_environment_url_gen3 = "https://<tenant_id>.sprint.apps.dynatracelabs.com" // You can use prod, sprint or dev tenants
      dt_oauth_sso_endpoint   = "https://sso-sprint.dynatracelabs.com/sso/oauth2/token" // Respective sso for the stage
      dt_oauth_client_id = "<client_id>" // check scopes below
      dt_oauth_client_secret = "<client_secret>"
      dt_oauth_account_urn = "urn:dtaccount:<id>"
    }
    

Additional notes:

  • API token scopes. Check how to create a Dynatrace API token here

  • Oauth client scopes. Check how to create an Dynatrace Oauth client here

  • It is recommended to set the sensitive variables as environment variables. More information in the terraform documentation here

    export TF_VAR_dt_api_token=dt0c01....
  • Check for optional additional ace-box terraform.tfvars configuration here

  1. Check out the Readme.md for your specific cloud provider configuration that needs to be set. Please consult our dedicated READMEs for AWS, Azure and GCP.

    Note: Check out BYO VM documentation in case you are not using a cloud provider to deploy the ace-box.

  2. You can configure a specific use case within the terraform.tfvars.

  3. Run terraform init

  4. Run terraform apply. Grab a coffee, this process will take some time...
    Behind the scenes, the ACE-Box framework is doing the following:

    • Deploying a VM on the selected hyperscaler environment (Azure, AWS or GCP)
    • Once the VM is available, the provisioners install the ACE-Box framework. This process itself consists in a couple steps:
      • Working directory copy: everything in user-skel is copied to the VM local filesystem
      • Package manager update: init.sh is run. This runs an apt-get update and installs Python3.9, Ansible and the ace-cli
      • ace prepare command is run, which asks for ACE-Box specific configurations (e.g. protocol, custom domain, ...)
      • Once the VM is prepared, ace enable USECASE_NAME|USECASE_URL command is run to perform the actual deployment of the modules (e.g: softwares, applications, ..) and implement the configurations that have been defined in the use-case's configuration files

Additional Commands:

  • Once Terraform execution is completed, it is possible to check all the resources created by Terraform by running terraform show.
  • In addition, by running terraform output it is possible to check the Terraform outputs (which are useful to verify IP addresses and the dashboard URL)
  • Once the resources created via the ACE-Box are not needed anymore, you can delete any resource created by the framework via Terraform by running terraform destroy.

Use-cases

A use-case aim to reproduce real-world setups for purposes like feature demonstrations, hands-on training, or system testing. Each use-case is defined by a set of configuration files that ACE-Box uses to automatically deploy the necessary infrastructure and apply the required configurations on the systems.

Use-case example: Basic Observability Demo

It is intended to create all necessary resources for a Basic Kubernetes Observability Demo, by configuring the ACE-Box to spin up the following resources:

  • Kubernetes (k3s) platform
  • Dynatrace Operator
  • Easytrade Demo App

For a step-by-step guide on how this use-case has been built, follow the custom use case documentation.

Every use-case comes along with:

  • guide: to understand how to run the scenario and other important details.
  • prerequisites: pre-requisites, version & compatibility & extra vars or config needed.

Out-of-the-box use-cases

The ACE-Box framework comes with a set of use-cases which are referred as out-of-the-box use-cases which have been added from time to time by the ACE-Box contributors.

Embedded into the ace-box as roles:

Use case Description Guide Prerequisites
demo_monaco_gitops Demo flow for Application Onboarding using Jenkins/Gitea here None
demo_ar_workflows_ansible Demo flow for Auto Remediation using Gitlab/Dynatrace Workflows here here
demo_release_validation_srg_gitlab Demo flow for Release Validation using GitLab/Site Reliability Guardian here here
demo_ar_workflows_gitlab Demo flow for Auto Remediation using Gitlab/Dynatrace Workflows here here
demo_all All demos None here

How to enable OOTB use-cases?

  1. Specify the use case in your terraform.tfvars. For example:
...
use_case = demo_monaco_gitops
...
  1. Check pre-requisites, version & compatibility & extra vars or config needed.

  2. Continue with the deployment of your ace-box...

Note: you can use the ACE CLI ace enable <use case> command to prepares the ACE-Box for a use case by installing set of components after the ace-box has been deployed.

Custom use-cases

In addition to the out-of-the-box use-cases provided natively by the ACE-Box, it is possible to source custom use-cases. This allows using the ACE-Box as a platform to develop your own use-cases, demonstrations, trainings, etc.

Check out Custom use-case documentation for more info.

A list of already created custom use cases that can be used for demo or templates/ideas:

Use case Description Guide Prerequisites
Basic Observability Demo Basic DT Kubernetes Observability for Easytrade here here
Advanced Kubernetes Observability coming soon... coming soon... coming soon...
AppSec coming soon... coming soon... coming soon...
Dynatrace for Devs coming soon... coming soon... coming soon...
Automated Incident Mgmt coming soon... coming soon... coming soon...

How to enable custom use-cases?

  1. Specify the use case in your terraform.tfvars pointing to the external repository. For example:
...
use_case = "https://<user>:<token>@github.com/dynatrace-ace/basic-dt-demo.git"
...
  1. Check pre-requisites, version & compatibility & extra vars or config needed.

  2. Continue with the deployment of your ace-box...

Note: you can use the ACE-CLI ace enable <use case> command to prepares the ACE-Box for a use case by installing set of components after the ace-box has been deployed.


Architecture

Terraform is used for spinning up and configure the compute instance and all the needed resources within the Cloud Provider environment (AWS, GCP, Azure). Ansible is used for setting up the various modules on top of the compute instance. Referring to the previous Basic Observability Demo example, Terraform is used to provision the virtual machine and some auxiliary resources on the Cloud Provider environment, while Ansible roles are used to deploy the k8s cluster, Dynatrace operator and Easytrade application on the VM.

ACE-CLI

Check out the ACE-CLI page for more details.

ACE Dashboard

At the end of the provisioning of any of the out of the box supported use-cases, an ACE Dashboard gets created with more information on how to use the ACE-BOX. Check out ACE Dashboard for more details.


Oauth Client Scopes

The recommended scopes for the Oauth client are:

app-engine:apps:run 
app-engine:apps:install 
storage:events:read 
storage:events:write 
storage:metrics:read 
storage:bizevents:read 
storage:entities:read 
storage:bizevents:write 
automation:workflows:read 
automation:workflows:write 
automation:workflows:run 
automation:rules:read 
automation:rules:write 
automation:workflows:admin 
davis:analyzers:read 
davis:analyzers:execute 
storage:buckets:read 
settings:objects:read 
settings:objects:write 
settings:schemas:read
app-engine:apps:install 
app-engine:edge-connects:connect
app-engine:edge-connects:read
app-engine:edge-connects:write
app-engine:edge-connects:delete
app-settings:objects:read 

API Token Scopes

Initial API token with scopes apiTokens.read and apiTokens.write. This token will be used by various roles to manage their own tokens.


Additional terraform.tfvars

You can personalize your ace-box with the following optional variables, by adding them in your terraform.tfvars file:

// name_prefix = "my-ace-box-name" // customize your instance name
// acebox_size = "n2-standard-8" // Respective to the cloud provider
// dt_owner_team = "<dt_team>" // Follow your organizations cloud cost best practices of tagging resources
// dt_owner_email = "<dt_owner>" // Format:  name_surname-dynatrace_com. (replace "." with "_" and "@" with "-")
// use_case = demo_release_validation_srg_gitlab // As described in the use-cases section

Licensing

Please see LICENSE in repo root for license details.

License headers can be added automatically be running ./tools/addlicenseheader.sh (see file for details).

About

The ACE-Box is an all-in-one Autonomous Cloud Enablement machine that you can use as a portable sandbox, demo and testing environment.

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks