You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to run the full suite of Acceptance tests you will need to run the CloudStack Simulator. Please follow these steps to prepare an environment for running the Acceptance tests:
66
71
67
72
```sh
68
-
$ docker pull cloudstack/simulator
69
-
$ docker run --name simulator -p 8080:5050 -d cloudstack/simulator
73
+
docker pull apache/cloudstack-simulator
74
+
75
+
or pull it with a particular build tag
76
+
77
+
docker pull apache/cloudstack-simulator:4.17.2.0
78
+
79
+
docker run --name simulator -p 8080:5050 -d apache/cloudstack-simulator
80
+
81
+
or
82
+
83
+
docker run --name simulator -p 8080:5050 -d apache/cloudstack-simulator:4.17.2.0
70
84
```
71
85
72
86
When Docker started the container you can go to http://localhost:8080/client and login to the CloudStack UI as user `admin` with password `password`. It can take a few minutes for the container is fully ready, so you probably need to wait and refresh the page for a few minutes before the login page is shown.
@@ -91,16 +105,16 @@ In order for all the tests to pass, you will need to create a new (empty) projec
91
105
$ make testacc
92
106
```
93
107
94
-
Sample Terraform configuration
95
-
------------------------------
108
+
Sample Terraform configuration when testing locally
0 commit comments