WhackoJacko / Jetee

Jetee is a python app for automated deployment of python projects.
BSD 2-Clause "Simplified" License
2 stars 1 forks source link

How Jetee run in multi-hosts deployment? #3

Open pilgrim2go opened 9 years ago

pilgrim2go commented 9 years ago

It looks like Jetee using hostname for provisioning both Project and Services.

How to separate it?

Anyway, thank for your project.

WhackoJacko commented 9 years ago

Hi @pilgrim2go , thanks for feedback. Cant exactly understand what you mean, what is your use case?

pilgrim2go commented 9 years ago

Hi, I've just checked project and found it support 1-Host Docker only. Can we extend it to be used in Multi-Hosts without Docker? eg class Staging(AppConfiguration): inventory = 'hosts' // to be used in ansible-playbook like ansible-playbook -i hosts and each secondary service knows which host to run on?

I tried to adapt but not much success. eg, ApplicationDispatcher is using DockerServiceDeployManager to build service.

again, my use case is using Jetee to deploy Java application in Multi-tiers deployment.