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
{{ message }}
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
Runtime plugins use apt update and apt install ... to install some additional packages. If the network connection from pai cluster to the apt repository is poor, apt install may take a long period of time or even fail.
Since we use kube runtime to initialize the environment before job container, it is possible to use the runtime container as a "cache" of some frequently-needed packages. Here is one possible solution in detail:
When we build runtime container, add all .deb files relied by certain package and certain os version. It could be achieved by the following commands:
Runtime plugins use
apt update
andapt install ...
to install some additional packages. If the network connection from pai cluster to the apt repository is poor,apt install
may take a long period of time or even fail.Since we use kube runtime to initialize the environment before job container, it is possible to use the runtime container as a "cache" of some frequently-needed packages. Here is one possible solution in detail:
.deb
files relied by certain package and certain os version. It could be achieved by the following commands:.deb
files to install it.The text was updated successfully, but these errors were encountered: