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
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,8 @@ COPY ./bootc-images/$USHIFT_RPM_REPO_NAME.repo ./bootc-images/microshift-fast-da
# vim-common for xxd utility
RUN dnf repoinfo --enabled && \
dnf install -y \
{{ range (env.Getenv "MICROSHIFT_OPTIONAL_RPMS" | strings.Split " ") -}}
"{{ . }}-{{ env.Getenv "SOURCE_VERSION" }}" \
{{ end -}}
{{ range (env.Getenv "MICROSHIFT_X86_64_RPMS" | strings.Split " ") -}}
"{{ . }}-{{ env.Getenv "SOURCE_VERSION" }}" \
{{ end -}}
"microshift-ai-model-serving-{{ env.Getenv "SOURCE_VERSION" }}" \
"microshift-ai-model-serving-release-info-{{ env.Getenv "SOURCE_VERSION" }}" \
vim-common \
qemu-guest-agent && \
rm -vf /etc/yum.repos.d/microshift-*.repo && \
Expand Down
9 changes: 8 additions & 1 deletion test/suites/ai-model-serving/ai-model-serving-offline.robot
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,14 @@ Model Serving Offline Test
Wait For A Deployment
[Documentation] Wait for a deployment on offline VM
[Arguments] ${namespace} ${name}
offline.Run With Kubeconfig oc rollout status -n\=${namespace} deployment ${name}
offline.Run With Kubeconfig
... oc
... rollout
... status
... --timeout\=300s
... -n\=${namespace}
... deployment
... ${name}

Check If Model Is Ready
[Documentation] Ask model server is model is ready for inference.
Expand Down