Unable to perform ps
or undeploy
with locally unstaged changes
#628
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Unlike before the latest changes, I'm no more able to execute the
abra app ps
orabra app undeploy
commands with unstaged changes as they fail now and no chaos flag exists.Previously, my usual dev workflow was like
abra app ps <domain>
With the changes, steps 2 and 4 aren't working anymore as I have to (at least locally) commit my changes before.
I'm currently working on this branch: https://git.coopcloud.tech/coop-cloud/vikunja/src/branch/merge-frontend-and-api
Undeploy:
OK returning from the rabbit hole of design, workflows, philosophical questions and the meaning of chaos with @simon, we have a plan 🎉
undeploy
: it sends a request to the runtime with only the stack name of the app, so we don't need to touch the checkout at all. so that's simple, we return this behaviour to what it was beforeps
: it does actually require the recipe compose configurations to list the services and then from there, query each service status. this would mean adding a--chaos/-C
flag tops
to be consistent. however, we decided that maybe this isn't the ideal implementation because we want to "get as close to the actual runtime information as possible". so, we agreed that it would be nice ifps
would first query the actual live deployment to get the services and from there, query their status.annnd integration tests coming then to avoid regressions on these ✅
For the sake of completeness, @moritz pointed out that we want to be able to verify whether all containers supposed to be deployed were successfully deployed. So it needs more or less a complete diff of what is actually running vs what should be running and we do need the repo status.
So we agreed upon readding the
-C
flag toabra app ps
decentral1se referenced this issue2024-07-24 19:48:02 +00:00
Confirmed fixed.