-
Notifications
You must be signed in to change notification settings - Fork 393
Using multiple machines for the same application #618
Comments
For example I just switched between Windows, WSL and macOS with the same cluster, but I don't think that's a sane thing that people do very often. |
semi-related discussion around this concern: https://github.com/Azure/draft/issues/585 |
@gabrtv I know you were interested in this area. |
Do we have any more thoughts here? One scenario that happens with the current setup: since all logs are written in app B: $ draft up
app A: $ draft logs - here you see the build logs from app B We can:
Thoughts? |
I think we've made some good moves in regards to |
The workflow could be:
Since our storage is based on config maps (whose size limit is I think 1 MB) - how would we handle log files larger than 1 MB? |
Both
draft connect
anddraft logs
try to get the latest build ID locally, from the logs directory. This makes both commands much faster, but also makes the assumption that the same machine was used todraft up
and to get the logs / connect.If there were two machines used, on the second machine the user doesn't have any way of doing
draft logs
(since the logs are only stored locally), nordraft connect
, since it requires the latest build ID.For
draft logs
there is no clear way of solving this unless we store the logs in the cluster as well.For
draft connect
:draft up
from another machine), you cannot connectThe question: is the scenario above often enough so that it justifies the increase in the connection time?
The text was updated successfully, but these errors were encountered: