2 ifndef NIXOPS_CONFIG_PASS_SUBTREE_PATH
3 $(error Please set NIXOPS_CONFIG_PASS_SUBTREE_PATH to the password-store subtree path)
6 NIXOPS_STATE ?= ./state/eldiron.nixops
7 NIXOPS_DEPLOYMENT = cef694f3-081d-11e9-b31f-0242ec186adf
8 nixpkgs ?= https://releases.nixos.org/nixos/19.03/nixos-19.03.173677.daf861a810d/nixexprs.tar.xz
9 NIX_PATH = nixpkgs=${nixpkgs}:nixpkgsNext=${nixpkgs}:nixpkgsPrevious=${nixpkgs}
11 NIXOPS := $(shell NIX_PATH=$(NIX_PATH) nix-build --no-out-link -E "with import <nixpkgs> { overlays = builtins.attrValues (import ../overlays); }; nixops")/bin/nixops
12 NIXOPS_PRIV = ./scripts/with_env $(NIXOPS)
14 ###### Current channel information
16 @version=$$(nix eval --raw nixpkgs.lib.version) && \
17 mainversion=$$(echo $$version | cut -d"." -f -2) && \
18 echo "https://releases.nixos.org/nixos/$$mainversion/nixos-$$version/nixexprs.tar.xz" && \
19 nix-instantiate --find-file nixpkgs
27 ###### Nixops regular tasks
30 $(NIXOPS_PRIV) $(NIXOPS_ARGS)
34 $(NIXOPS_PRIV) ssh eldiron -- $(SSH_ARGS)
37 $(NIXOPS_PRIV) ssh backup-2 -- $(SSH_ARGS)
40 $(NIXOPS_PRIV) ssh monitoring-1 -- $(SSH_ARGS)
47 $(NIXOPS_PRIV) deploy --build-only --show-trace
50 $(NIXOPS_PRIV) deploy --dry-run
53 $(NIXOPS_PRIV) deploy --build-only
56 $(NIXOPS_PRIV) deploy --copy-only
62 $(NIXOPS_PRIV) deploy --force-reboot
65 $(NIXOPS_PRIV) reboot --include=eldiron
66 .PHONY: nixops ssh-eldiron info debug dry-run build upload deploy deploy-reboot reboot
68 ###### Cleanup generations and garbage collection
69 profile := $$($(NIXOPS_PRIV) info | grep "^Nix profile: " | sed -e "s/^Nix profile: //")
73 nix-env -p $(profile) --list-generations
74 $(NIXOPS_PRIV) ssh eldiron -- nix-env -p /nix/var/nix/profiles/system --list-generations
75 .PHONY: list-generations
78 nix-env -p $(profile) --delete-generations $(GEN)
79 $(NIXOPS_PRIV) ssh eldiron -- nix-env -p /nix/var/nix/profiles/system --delete-generations $(GEN)
80 $(NIXOPS_PRIV) ssh backup-2 -- nix-env -p /nix/var/nix/profiles/system --delete-generations $(GEN)
81 $(NIXOPS_PRIV) ssh monitoring-1 -- nix-env -p /nix/var/nix/profiles/system --delete-generations $(GEN)
82 .PHONY: delete-generations
84 cleanup: delete-generations
86 $(NIXOPS_PRIV) ssh eldiron -- nix-store --gc
87 $(NIXOPS_PRIV) ssh backup-2 -- nix-store --gc
88 $(NIXOPS_PRIV) ssh monitoring-1 -- nix-store --gc
91 ###### Pull environment and deployment from remote
92 # Don't include pull_deployment by default as this should happen only rarely
93 pull: pull_environment;
97 ifndef NIXOPS_CONFIG_PASS_SUBTREE_REMOTE
98 $(error "Please set NIXOPS_CONFIG_PASS_SUBTREE_REMOTE to the password-store subtree remote name")
100 pass git subtree pull --prefix=$(NIXOPS_CONFIG_PASS_SUBTREE_PATH) $(NIXOPS_CONFIG_PASS_SUBTREE_REMOTE) master
101 .PHONY: pull_environment
104 @if $(NIXOPS) info -d $(NIXOPS_DEPLOYMENT) 2>/dev/null >/dev/null ; then \
105 echo "This will remove your current deployment file and recreate it!. Continue? [y/N]" && \
107 [ "$$y" = "y" -o "$$y" = "Y" ] && \
108 $(NIXOPS) delete --force -d $(NIXOPS_DEPLOYMENT); \
110 pass show $(NIXOPS_CONFIG_PASS_SUBTREE_PATH)/Nixops/Deployment | $(NIXOPS) import
111 $(NIXOPS) modify -d $(NIXOPS_DEPLOYMENT) "$$(pwd)/default.nix"
112 .PHONY: pull_deployment
115 $(NIXOPS) info -d $(NIXOPS_DEPLOYMENT) 2>/dev/null >/dev/null
116 .PHONY: deployment_is_set
118 ###### Push environment and deployment information to password store
119 push: push_deployment push_environment;
123 $(NIXOPS) export | pass insert -m $(NIXOPS_CONFIG_PASS_SUBTREE_PATH)/Nixops/Deployment
124 .PHONY: push_deployment
127 ifndef NIXOPS_CONFIG_PASS_SUBTREE_REMOTE
128 $(error "Please set NIXOPS_CONFIG_PASS_SUBTREE_REMOTE to the password-store subtree remote name")
130 pass git subtree push --prefix=$(NIXOPS_CONFIG_PASS_SUBTREE_PATH) $(NIXOPS_CONFIG_PASS_SUBTREE_REMOTE) master
131 .PHONY: push_environment