diff options
-rw-r--r-- | README.md | 26 | ||||
-rwxr-xr-x | moon_gui/static/version.json | 4 | ||||
-rw-r--r-- | tools/moon_kubernetes/templates/moon_gui.yaml | 2 |
3 files changed, 29 insertions, 3 deletions
@@ -43,6 +43,32 @@ curl http://$MOON_HOST:30001/pdp curl http://$MOON_HOST:30001/policies ``` +The Moon platform is fully installed and configured when you have no error with the `moon_get_keystone_projects`: +```bash +sudo pip install python_moonclient --upgrade +moon_get_keystone_projects +``` + +### moon_wrapper +The moon_wrapper component is used to connect OpenStack to the Moon platform. +You need to load one wrapper before connecting OpenStack to Moon. +First of all, get the names of all available slaves: +```bash +moon_get_slaves +``` +Select the slave you want to configure: +```bash +moon_set_slave <name_of_the_slave> +``` +If you don't put a name here, by default, the script will use `kubernetes-admin@kubernetes` +which is the master. + +If you need to unload the slave, use the following command: +```bash +moon_delete_slave <name_of_the_slave> +``` +If you don't put a name here, by default, the script will use `kubernetes-admin@kubernetes`. + ## Tests - [Python Unit Test](tests/python_unit/README.md) diff --git a/moon_gui/static/version.json b/moon_gui/static/version.json index ec74a2db..4f228d2b 100755 --- a/moon_gui/static/version.json +++ b/moon_gui/static/version.json @@ -1,3 +1,3 @@ { - "version": "1.0.0" -}
\ No newline at end of file + "version": "1.1.0" +} diff --git a/tools/moon_kubernetes/templates/moon_gui.yaml b/tools/moon_kubernetes/templates/moon_gui.yaml index 2d355216..7c6ab732 100644 --- a/tools/moon_kubernetes/templates/moon_gui.yaml +++ b/tools/moon_kubernetes/templates/moon_gui.yaml @@ -13,7 +13,7 @@ spec: hostname: gui containers: - name: gui - image: wukongsun/moon_gui:v4.3.1 + image: wukongsun/moon_gui:latest env: - name: MANAGER_HOST value: "127.0.0.1" |