aboutsummaryrefslogtreecommitdiffstats
path: root/vm/proxyapp/proxyrpc
Commit message (Collapse)AuthorAgeFilesLines
* vm/proxyapp: pass kernel image data to ProxyApp (#3696)kalder2023-02-211-2/+4
| | | | | | | We need the kernel built by Syzkaller to start the VM. If transfer_file_content is set, pass the image data in addition to the path. It's sent in the CreatePool RPC, since future CreateInstance RPCs should use the same image.
* vm/proxyapp: pass file data when running in tcp mode (#3648)kalder2023-02-071-2/+4
| | | | | Instead of just passing the path to the file (on the local machine) to the ProxyApp, we need to pass the file data. This applies for both calls to Copy() and CreateInstance().
* vm/proxyapp: extend RPC API to support loggingTaras Madan2022-10-241-0/+12
|
* vm: add the proxyapp support (#3269)Taras Madan2022-09-261-0/+99
* vm: add pool.Close() support * vm: add proxyapp client implementation * vm/proxyapp: autogenerate mocks * vm/proxyapp: add proxyapp tests * pkg/mgrconfig: add proxyapp type tests