Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wait for HPO service to be deployed and install the specified protobuf version #53

Merged
merged 1 commit into from
May 30, 2022
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
2 changes: 1 addition & 1 deletion Dockerfile.hpo
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ RUN microdnf install -y python3 gcc-c++ python3-devel \
USER 1001

# Install optuna to the default user
RUN python3 -m pip install --user optuna requests scikit-optimize jsonschema click grpcio protobuf
RUN python3 -m pip install --user optuna requests scikit-optimize jsonschema click grpcio protobuf==3.19.4

LABEL name="Kruize HPO" \
vendor="Red Hat" \
Expand Down
3 changes: 2 additions & 1 deletion tests/scripts/hpo/hpo_api_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,8 @@ function hpo_sanity_test() {
deploy_hpo ${cluster_type} ${HPO_CONTAINER_IMAGE} ${SERV_LOG}
fi

sleep 10
# Wait for HPO service to be deployed
sleep 60

expected_http_code="200"

Expand Down