diff options
author | 2018-01-10 20:38:11 +0000 | |
---|---|---|
committer | 2018-01-10 20:38:11 +0000 | |
commit | 0129d960d4c39d96e775674264c06908e121b7ed (patch) | |
tree | 9f90e4e28a1e5bbee4ee478d9c805ecf26ea2ab2 /moon_authz/tests | |
parent | 4efa492ad05bdcd19f80c7717dad94af896294fe (diff) | |
parent | 1e3c19b82374585ed7261bcb1abd6ddd38b5d9f8 (diff) |
Merge "Refactor moon_authz"
Diffstat (limited to 'moon_authz/tests')
-rw-r--r-- | moon_authz/tests/unit_python/utilities.py | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/moon_authz/tests/unit_python/utilities.py b/moon_authz/tests/unit_python/utilities.py index 19b9354c..e3a111bd 100644 --- a/moon_authz/tests/unit_python/utilities.py +++ b/moon_authz/tests/unit_python/utilities.py @@ -37,11 +37,19 @@ CONF = { "container": "wukongsun/moon_orchestrator:v4.3", "hostname": "orchestrator" }, - "interface": { - "bind": "0.0.0.0", - "port": 8080, - "container": "wukongsun/moon_interface:v4.3", - "hostname": "interface" + "pipeline": { + "interface": { + "bind": "0.0.0.0", + "port": 8080, + "container": "wukongsun/moon_interface:v4.3", + "hostname": "interface" + }, + "authz": { + "bind": "0.0.0.0", + "port": 8081, + "container": "wukongsun/moon_authz:v4.3", + "hostname": "authz" + } } }, "plugins": { @@ -144,7 +152,8 @@ COMPONENTS = ( "slave", "components/manager", "components/orchestrator", - "components/interface", + "components/pipeline", + "components/wrapper", ) |