Hi,
I am completing a virtual machine isolation container for mesos based upon the
lxc container.
Using LxcIsolationModule as a model, I launch vm (using virsh), start
mesos-launcher on the vm
I believe that I need to run something like
dispatch(slave, &Slave::executorStarted, frameworkId, executorId, pid);
inside of the vm image to report the executor process to the slave.
I believe the best way to accomplish this to create a simple fork/exec wrapper
around
ExecutorLauncher::run()
to do this, assuming that the environment variables are configured correctly on
the virtual machine.
Is this sensible?
Charles