Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions deployment/dev/.env.example
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Versions
EXAFLOW=1.0.0
PLATFORM_BACKEND=9.2.1
PLATFORM_UI=1.1.0
MIP=9.0.4
EXAFLOW=1.1.0
PLATFORM_BACKEND=9.3.0
PLATFORM_UI=1.2.0
MIP=9.1.0

# Toggle authentication
AUTHENTICATION=0
Expand Down
2 changes: 1 addition & 1 deletion deployment/dev/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
```
./start.sh
```
The script waits for `http://127.0.0.1:8080/services/data-models` and verifies 4 data models are loaded.
The script waits for `http://172.17.0.1:8080/services/data-models` and verifies 4 data models are loaded.

4. To test if the MIP stack is properly setup run the 'test.sh':
```
Expand Down
12 changes: 12 additions & 0 deletions deployment/dev/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -euo pipefail

script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${script_dir}"

if [[ ! -d .venv ]]; then
python3 -m venv .venv
fi

.venv/bin/pip install -q -r requirements.txt
.venv/bin/pytest tests/ -v "$@"
2 changes: 1 addition & 1 deletion deployment/dev/tests/test_get_algorithms_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ def test_get_algorithms_request():
assert response.status_code == 200
print(f"Algorithms result-> {response.text}")
algorithms = json.loads(response.text)
assert len(algorithms) == 20
assert len(algorithms) == 28
6 changes: 3 additions & 3 deletions deployment/kubernetes/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ engines:
exaflow:
url: "http://exaflow-controller-service:5000"
mip:
version: 9.0.4
version: 9.1.0
platform-ui:
image:
repository: hbpmip/platform-ui
tag: 1.1.0
tag: 1.2.0
ingress:
enabled: true
className: haproxy-public
Expand All @@ -29,7 +29,7 @@ platform-ui:
platform-backend:
image:
repository: hbpmip/platform-backend
tag: 9.2.1
tag: 9.3.0
config:
logLevel: INFO
logLevelFramework: INFO
Expand Down