Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/understack-tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ the testing container as environment variables.
## Usage

```shell
docker run --rm --env-file dev.env ghcr.io/rackerlabs/understack/understack-tests run-scenario build_a_single_gp2small_with_network.yaml
docker run --rm --env-file dev.env ghcr.io/rackerlabs/understack/understack-tests run-scenario build_a_single_server_with_network.yaml
```

### Available scenarios

- **`build_a_single_gp2small_with_network.yaml`** - boots a simple Ubuntu GP2.SMALL
- **`build_a_single_server_with_network.yaml`** - boots a simple Ubuntu GP2.SMALL
server with a plain networking setup. The network is automatically created
and removed.
- **`floating_ips.yaml`** - build a network, server, router and associate and
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
version: 2
title: "Create the network, provision a gp2.small Ubuntu server and delete it afterwards."
title: "Create the network, provision a Ubuntu server and delete it afterwards."
subtasks:
- title: "Boot and delete"
workloads:
- scenario:
NovaServers.boot_and_delete_server:
flavor:
name: gp2.small
name: "{{ flavor | default('gp2.small') }}"
image:
name: ^Ubuntu 24.*$
config_drive: true
Expand Down
Loading