mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-19 04:49:19 +00:00
This allows to manage groups of VMs across multiple infrastructure providers. It also adds support to create groups of VMs on OpenStack. WARNING: the syntax of workshopctl has changed slightly. Check READMEs for details.
27 lines
573 B
Bash
27 lines
573 B
Bash
# Default stub functions for infrastructure libraries.
|
|
# When loading an infrastructure library, these functions will be overridden.
|
|
|
|
infra_list() {
|
|
warning "infra_list is unsupported on $INFRACLASS."
|
|
}
|
|
|
|
infra_quotas() {
|
|
warning "infra_quotas is unsupported on $INFRACLASS."
|
|
}
|
|
|
|
infra_start() {
|
|
warning "infra_start is unsupported on $INFRACLASS."
|
|
}
|
|
|
|
infra_stop() {
|
|
warning "infra_stop is unsupported on $INFRACLASS."
|
|
}
|
|
|
|
infra_quotas() {
|
|
warning "infra_quotas is unsupported on $INFRACLASS."
|
|
}
|
|
|
|
infra_opensg() {
|
|
warning "infra_opensg is unsupported on $INFRACLASS."
|
|
}
|