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
I am attempting to replicate GVL on CentOS. We have some internal extensions we wanted to apply that only works on CentOS and wanted to see how easy it is to replicate GVL environment on CentOS image.
I have identified few other GitHub repositories that the Ansible playbook was pointing to in order to understand what packages are being installed underneath. What I didn't quite figure out was this part here:
You cannot directly launch the image without the Launcher because the launcher passes in some "user data" to contextualize the image, and manually performing this process is error-prone, inconvenient and therefore not recommended.
Could you provide me where I can find out about how exactly the launcher passes in the user data?
Much appreciated,
James
The text was updated successfully, but these errors were encountered:
Good to hear you're thinking of porting the GVL to centos - we'd be glad to have that contributed to the codebase. Just a note - if you're planning to run this on OpenStack, you will need to enable the EC2-API service.
The user-data that's passed in is actually a YAML file, which CloudLaunch formulates based on user selections, and is passed into the VM when it's created (the user_data parameter to boto's run_instances call). This user_data is then read in by cloudman from within the VM, which then initializes Galaxy based on the user_data parameters.
Instead of formulating the above by hand, cloudlaunch will do that through a GUI. You can set up a cloudlaunch server: https://github.com/galaxyproject/cloudlaunch or use the public one.
Hi,
I am attempting to replicate GVL on CentOS. We have some internal extensions we wanted to apply that only works on CentOS and wanted to see how easy it is to replicate GVL environment on CentOS image.
I have identified few other GitHub repositories that the Ansible playbook was pointing to in order to understand what packages are being installed underneath. What I didn't quite figure out was this part here:
Could you provide me where I can find out about how exactly the launcher passes in the user data?
Much appreciated,
James
The text was updated successfully, but these errors were encountered: