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
Copy file name to clipboardExpand all lines: README.md
+20-1Lines changed: 20 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ Ideally, all software needed for a test should be included by building
56
56
it into the image from the SDK.
57
57
58
58
Kola supports running tests on multiple platforms, currently QEMU, GCE,
59
-
AWS, VMware VSphere, and Packet. In the future systemd-nspawn and other
59
+
AWS, VMware VSphere, Packet, and OpenStack. In the future systemd-nspawn and other
60
60
platforms may be added.
61
61
Local platforms do not rely on access to the Internet as a design
62
62
principle of kola, minimizing external dependencies. Any network
@@ -261,6 +261,25 @@ you can paste in. This will populate the `.boto` file.
261
261
See [Google Cloud Platform's Documentation](https://cloud.google.com/storage/docs/boto-gsutil)
262
262
for more information about the `.boto` file.
263
263
264
+
### openstack
265
+
`openstack` uses `~/.config/openstack.json`. This can be configured manually:
266
+
```
267
+
{
268
+
"default": {
269
+
"auth_url": "auth url here",
270
+
"tenant_id": "tenant id here",
271
+
"tenant_name": "tenant name here",
272
+
"username": "username here",
273
+
"password": "password here",
274
+
"user_domain": "domain id here",
275
+
"floating_ip_pool": "floating ip pool here",
276
+
"region_name": "region here"
277
+
}
278
+
}
279
+
```
280
+
281
+
`user_domain` is required on some newer versions of OpenStack using Keystone V3 but is optional on older versions. `floating_ip_pool` and `region_name` can be optionally specified here to be used as a default if not specified on the command line.
282
+
264
283
### packet
265
284
`packet` uses `~/.config/packet.json`. This can be configured manually:
0 commit comments