-
$TURBINE_ENVIRONMENT
is the environment variable used to designate the GBE environment that GBE should work with. Such an environment is made of abosh-environment
subsystem and its relatedbosh-config
s subsystems for the cloud config and runtime config. -
source <(./bin/gbe env)
to get thegbe
CLI added to your shell$PATH
. (this syntax requires Bash version 4+) -
gbe up
to converge the infrastructure. -
source <(./bin/gbe env)
to load the new environment variables, now that the BOSH environment is created. -
gbe converge all
: to converge allbosh-deployment
subsystems. You will need 30+ GB RAM for the complete Easy Foundry environment. If you want to deploy only a subset of Easy Foundry, thes list the subsystems withgbe converge list
and then deploy the subsystems you need withgbe converge <subsys> -n
, one by one.
-
gbe update <cloud-config|runtime-config>
when changes have been made to the cloud config or the runtime config. -
gbe converge -y <subsys> [<subsys> ...]
to converge a specific subsystem that has been modified. -
gbe up
orgbe converge
to converge GBE environment when its desired state has been modified. (And then environment variables should be reloaded withsource <(./bin/gbe env)
.)
-
gbe delete all
to delete all infrastructure modules. -
gbe down
to delete the base GBE environment. (All infrastructure modules should be deleted prior to deleting the environment.)