# Regression Testing

# Horizon (openstack-dashboard)

IN addition to clicking raound to verify that the basic functionality is present, create a basic heat stack through the dashboard:

```yaml
heat_template_version: 2013-05-23

description: Simple template to deploy a single compute instance

resources:
  my_instance:
    type: OS::Nova::Server
    properties:
      image: cirros
      flavor: m1.tempest
      key_name: nova-key
      networks:
      - network: private
```