aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* [#201] Deduce profile directory during activationRoman Melnikov2023-09-123-47/+166
| | | | | | | | | | | | | | | | | | | | Problem: Since https://github.com/NixOS/nix/pull/5226 nix profiles for users are stored in 'XDG_STATE_HOME' or 'HOME' directory. However, 'deploy-rs' still expects profiles to be present in '/nix/var/nix/profiles/per-user'. As a result, an attempt to deploy a profile with newer nix may fail with an error about non-existing files. Solution: Instead of deducing the profile path prior to ssh'ing and actual activation, deduce the path to the profile during as a part of 'activate-rs' invocation. Now if the profile path is not specified explicitly as an attribute in profile within the deploy flake, the path to the profile is determined based on the user to which the profile belongs and on the values of 'XDG_STATE_HOME' and 'HOME' variables. Additionally, if the old profile directory (in '/nix/var/nix/profiles/per-user') for a given user already exists, it is used instead for the sake of backward compatibility.
* actually merge confirm_timeout into merged_settingsArtemis Everfree2023-06-081-1/+4
|
* Merge pull request #203 from ↵Roman Melnikov2023-05-081-3/+32
|\ | | | | | | | | serokell/rvem/#202-add-workaround-for-derivations-store-paths-interpolation [#202] Provide '^out' suffix for deriver on newer nix
| * fixup! [#202] Provide '^out' suffix for deriver on newer nixRoman Melnikov2023-05-051-7/+15
| |
| * [#202] Provide '^out' suffix for deriver on newer nixRoman Melnikov2023-05-051-3/+24
| | | | | | | | | | | | | | | | | | | | | | | | Problem: Since 2.15 nix no longer reference '.drv' as derivation outputs. At the same time, nix before '2.13' doesn't support '.drv' special suffix handling. Solution: Provide '^out' suffix for the profile deriver in case 'nix path-info <...>.drv' returns the same '<...>.drv' path. In other cases either an error about the build result not being present in the /nix/store is returned or an actual build result path is returned.
* | Merge pull request #205 from serokell/rvem/improve-temp-path-handlingRoman Melnikov2023-05-055-31/+40
|\ \ | | | | | | [Chore] Handle 'temp_path' as an actual 'Path' instead of 'String'
| * | [Chore] Handle 'temp_path' as an actual 'Path' instead of 'String'Roman Melnikov2023-04-205-31/+40
| |/ | | | | | | | | | | | | | | | | | | | | | | | | Problem: 'temp_path' and 'lock_path' are handled as 'String'. This can be a problem when the 'temp_path' directory is a symlink on the target system, e.g. this is the case with the default '/tmp' and macOS, where this directory is actually a symlink to '/private/tmp'. Solution: Handle 'temp_path' and 'lock_path' as actual Paths. Also, canonicalize 'temp_path' to avoid canary file path mismatches when checking filesystem events. As a side effect, also update the 'notify' dependency to the latest stable version.
* / [#197] Fix hostname overriding for remote buildsRoman Melnikov2023-04-141-8/+6
|/ | | | | | | Problem: '--hostname' is ignored when used with '--remote-build'. Solution: Account for 'data.deploy_data.cmd_overrides.hostname' when building a profile remotely.
* Build every profile first, then push (#158)2xsaiko2022-12-292-26/+40
| | | | | Try to build everything first before pushing to remotes. Since the build is more likely to fail than the upload, if there is an error the deployment will fail sooner and before uploading any potentially unusable configuration.
* Merge pull request #176 from Ma27/activate-bootAlexander Bantyev2022-12-293-4/+31
|\ | | | | Add new activation strategy `boot` as equivalent to `nixos-rebuild boot`
| * Add new activation strategy `boot` as equivalent to `nixos-rebuild boot`Maximilian Bosch2022-10-093-4/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This can be useful when e.g. deploying a kernel update to a target host. You usually plan a reboot (or kexec) after that to activate the new kernel. However you don't want to wait for services to be restarted first since these will be "restarted" anyways on the reboot. In cases like GitLab or the Atlassian stack this actually makes a difference. This patch changes the following things: * If `--boot` is provided, `nix-env -p profile-to-activate --set` is called for each deployed profile to make sure that it is activated automatically after a reboot. * However, the actual activation (e.g. `switch-to-configuration switch`) is skipped. Instead: * For NixOS, `switch-to-configuration boot` is called to set the new profile as default in the bootloader. * For everything else, nothing else is done. The profile is already the new default (and thus picked up on the next boot).
* | Add option to build on the remote hostPhilipp Herzog2022-11-184-69/+153
| |
* | Introduce non-zero exit code for rollbacksPhilipp Herzog2022-11-111-1/+3
|/ | | | Closes #179
* Add custom sudo command supportAndrew Fontaine2022-01-283-1/+15
| | | | This is useful for nodes that utilize `doas` instead of `sudo`.
* ensure spawned thread exits before mainTimothy DeHerrera2021-11-181-1/+5
|
* General code cleanupnotgne22021-08-125-130/+117
|
* fix ambiguous crate refTimothy DeHerrera2021-07-291-1/+1
|
* optionally take args as inputTimothy DeHerrera2021-07-292-4/+7
|
* make cli opts publicTimothy DeHerrera2021-07-291-1/+1
|
* export cli run in libTimothy DeHerrera2021-07-143-667/+677
|
* Evaluate only once, and then only realiseAlexander Bantyev2021-07-021-9/+47
|
* Cargo fmtAlexander Bantyev2021-06-222-7/+11
|
* Add multi node supportYannik Sander2021-06-224-137/+385
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Run multiple deployments in sequence Resolve targets later Extend context by deployed flake Apply clippy suggestions Add revoke command builder Track succeeded deploys Add revoke function Register revoke error as deploy error Prepare revoke command in activate Extend logger to handle revoke Implement revoke command client side Run revoke on previously suceeded Control whether to override by flag Adhere profile configuration auto_rollback setting Cargo fmt Correctly provide profile path to activation script when revoking Document multi flake mode in README Resolve a typo in README.md Co-authored-by: notgne2 <gen2@gen2.space> Use existing teminology rename revoke_suceeded -> rollback_suceeded Use more open CLI argument name `targets` instead of `flakes` Document name changes in README Add sudo command support for revokes Call run_deploy with `dry_active` flag Test revoke commands contains sudo Set default temp_path in activate binary Require temp_path for wait and activate subcommands Add copyright comment Address review change requests Fix typo in README Co-authored-by: Alexander Bantyev <balsoft@balsoft.ru>
* Use correct path to `deploy-rs-activate` binary when using `dry_activate`notgne22021-04-301-3/+5
| | | | Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
* Apply notgne2 suggestions.Oleg Pykhalov2021-04-162-5/+5
|
* Add dry activate argument.Oleg Pykhalov2021-04-074-50/+83
|
* Remove `ssh://` prefix from SSH addressesnotgne22021-02-281-1/+1
|
* Re-use `ssh_addr`notgne22021-02-281-3/+3
|
* Remove redundant `format!()`notgne22021-02-191-1/+1
|
* Clean up adding Command argumentsnotgne22021-02-093-25/+23
|
* Re-add debug log for activate command erroringnotgne22021-02-091-0/+1
|
* Clean up structure used for activation command error sendingnotgne22021-02-091-11/+9
|
* Still wait for activation command to end even in cases of errorsnotgne22021-02-091-43/+70
|
* Use oneshot signals to ensure SSH activate command has finished before ↵notgne22021-02-091-7/+14
| | | | deployment ends
* Wait for `ssh_activate` to complete and check for errors in magic_rollback ↵notgne22021-02-091-11/+20
| | | | activation (fixes #58 and #49)
* Merge branch 'master' into style-fixesnotgne22021-02-081-22/+62
|\
| * fixup! Evaluate deploy output lazilyAlexander Bantyev2021-02-071-50/+42
| |
| * Evaluate deploy output lazilyAlexander Bantyev2021-02-061-22/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, we evaluate the `#deploy` output strictly. This means - Longer eval times - Extraneous evaluation errors with `--skip-checks` - `-- --impure` even when the path we're currently deploying is pure - etc. With this change, evaluation happens lazily -- we only evaluate the nodes and profiles we really need. It is only implemented for flaky Nix, and it is on by default. To get the old behavior, one can specify `--strict-eval`. I have tested that this indeed dramatically increases evaluation speed in all of our repos, and removes the need to deploy Agora with `--impure`. Hooray!
* | changed: remove 2015-style extern crateBernardo Meurer2021-01-266-23/+9
|/
* Merge branch 'master' into notgne2/cleanupnotgne22021-01-141-1/+1
|\
| * Raise wait timeoutnotgne22021-01-141-1/+1
| |
* | Only build wait command if magic_rollback is enablednotgne22021-01-141-10/+10
| |
* | Don't import PushProfileDatanotgne22021-01-081-2/+1
| |
* | Remove unused DeployPathToActivatePathErrornotgne22021-01-083-13/+0
| |
* | Remove `Error` postfixes from error variants variantsnotgne22021-01-081-18/+16
| |
* | Use type definition for ToDeploynotgne22021-01-081-53/+52
| |
* | Struct-ify arguments to push_profilenotgne22021-01-082-42/+62
| |
* | Struct-ify arguments to build_wait_commandnotgne22021-01-081-21/+23
| |
* | Struct-ify arguments to build_activate_commandnotgne22021-01-081-26/+28
| |
* | Fix trivial lint issuesnotgne22021-01-084-8/+7
| |