You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Container failing to come up when using ./deploy_hpo.sh -c openshift
seeing in the logs of container:
Traceback (most recent call last):
File "/home/hpo/app/src/service.py", line 18, in <module>
import rest_service, grpc_service
File "/home/hpo/app/src/rest_service.py", line 24, in <module>
from json_validate import validate_trial_generate_json
File "/home/hpo/app/src/json_validate.py", line 1, in <module>
import jsonschema
ModuleNotFoundError: No module named 'jsonschema'
The text was updated successfully, but these errors were encountered:
Wondering why the entrypoint appears to be working with docker but not on openshift as far as using right python environment where the package is correctly loaded
@kdelee The reason behind this error is it is pulling the 0.0.2 version of HPO which doesn't contain the latest changes present in the current repo. We'll release 0.0.3 soon. Till then, please try building a custom image with the current code and try using the same on openshift.
Container failing to come up when using
./deploy_hpo.sh -c openshift
seeing in the logs of container:
The text was updated successfully, but these errors were encountered: