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
it would be very helpful if you could great a group of hosts that can then be deployed at once.
Nix code example:
nixinate={group.production.hosts=["hetznix""swordfish"];group.production.buildOn="remote";# available options are "remote", "local" or a specific host};
The text was updated successfully, but these errors were encountered:
Currently I use makefiles for "group" deployments like so:
deploy-nemesis: ## Deploy - Remote deploy to Nemesis
nix run .#apps.nixinate.nemesisdeploy-hesperides: ## Deploy - Remote deploy to Hesperides
nix run .#apps.nixinate.hesperidesdeploy-all: ## Deploy - 'Parallel' remote deploy to Hesperides & Nemesis
make deploy-hesperides &\
make deploy-nemesis
deploy-all-slow: ## Deploy - Remote deploy in order: Hesperides & Nemesis. Good for debugging
make deploy-hesperides
make deploy-nemesis
Though I think I might make use of parallel instead of calls to the make file itself. Thanks @mrVanDalo !
it would be very helpful if you could great a group of hosts that can then be deployed at once.
Nix code example:
The text was updated successfully, but these errors were encountered: