]> git.immae.eu Git - perso/Immae/Config/Nix.git/blame - nixops/Makefile
Add monitoring host
[perso/Immae/Config/Nix.git] / nixops / Makefile
CommitLineData
4506dbe5
IB
1export
2ifndef NIXOPS_CONFIG_PASS_SUBTREE_PATH
3 $(error Please set NIXOPS_CONFIG_PASS_SUBTREE_PATH to the password-store subtree path)
4endif
5
6NIXOPS_STATE ?= ./state/eldiron.nixops
7NIXOPS_DEPLOYMENT = cef694f3-081d-11e9-b31f-0242ec186adf
b22ce489 8nixpkgs ?= https://releases.nixos.org/nixos/19.03/nixos-19.03.173677.daf861a810d/nixexprs.tar.xz
4506dbe5
IB
9NIX_PATH = nixpkgs=${nixpkgs}:nixpkgsNext=${nixpkgs}:nixpkgsPrevious=${nixpkgs}
10
11NIXOPS := $(shell NIX_PATH=$(NIX_PATH) nix-build --no-out-link -E "with import <nixpkgs> { overlays = builtins.attrValues (import ../overlays); }; nixops")/bin/nixops
12NIXOPS_PRIV = ./scripts/with_env $(NIXOPS)
13
14###### Current channel information
15nix-info:
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" && \
af3aeef2 19 nix-instantiate --find-file nixpkgs
4506dbe5
IB
20.PHONY: nix-info
21
22###### Initial setup
c79bb682
IB
23setup:
24 ./scripts/setup
4506dbe5 25.PHONY: setup
c79bb682 26
4506dbe5
IB
27###### Nixops regular tasks
28NIXOPS_ARGS ?=
29nixops:
30 $(NIXOPS_PRIV) $(NIXOPS_ARGS)
31
32SSH_ARGS ?=
c79bb682 33ssh-eldiron:
4506dbe5 34 $(NIXOPS_PRIV) ssh eldiron -- $(SSH_ARGS)
c79bb682 35
ddaa9caf
IB
36ssh-backup-2:
37 $(NIXOPS_PRIV) ssh backup-2 -- $(SSH_ARGS)
38
e820134d
IB
39ssh-monitoring-1:
40 $(NIXOPS_PRIV) ssh monitoring-1 -- $(SSH_ARGS)
41
c79bb682 42info:
4506dbe5
IB
43 $(NIXOPS_PRIV) list
44 $(NIXOPS_PRIV) info
c79bb682
IB
45
46debug:
4506dbe5 47 $(NIXOPS_PRIV) deploy --build-only --show-trace
c79bb682
IB
48
49dry-run:
4506dbe5 50 $(NIXOPS_PRIV) deploy --dry-run
c79bb682
IB
51
52build:
4506dbe5 53 $(NIXOPS_PRIV) deploy --build-only
c79bb682
IB
54
55upload:
4506dbe5 56 $(NIXOPS_PRIV) deploy --copy-only
c79bb682
IB
57
58deploy:
4506dbe5 59 $(NIXOPS_PRIV) deploy
1618010c 60
4506dbe5
IB
61deploy-reboot:
62 $(NIXOPS_PRIV) deploy --force-reboot
c79bb682 63
4506dbe5
IB
64reboot:
65 $(NIXOPS_PRIV) reboot --include=eldiron
66.PHONY: nixops ssh-eldiron info debug dry-run build upload deploy deploy-reboot reboot
c79bb682 67
4506dbe5
IB
68###### Cleanup generations and garbage collection
69profile := $$($(NIXOPS_PRIV) info | grep "^Nix profile: " | sed -e "s/^Nix profile: //")
c79bb682
IB
70GEN ?= "+3"
71
72list-generations:
73 nix-env -p $(profile) --list-generations
4506dbe5
IB
74 $(NIXOPS_PRIV) ssh eldiron -- nix-env -p /nix/var/nix/profiles/system --list-generations
75.PHONY: list-generations
c79bb682
IB
76
77delete-generations:
78 nix-env -p $(profile) --delete-generations $(GEN)
4506dbe5 79 $(NIXOPS_PRIV) ssh eldiron -- nix-env -p /nix/var/nix/profiles/system --delete-generations $(GEN)
e820134d
IB
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)
4506dbe5 82.PHONY: delete-generations
c79bb682
IB
83
84cleanup: delete-generations
85 nix-store --gc
4506dbe5 86 $(NIXOPS_PRIV) ssh eldiron -- nix-store --gc
e820134d
IB
87 $(NIXOPS_PRIV) ssh backup-2 -- nix-store --gc
88 $(NIXOPS_PRIV) ssh monitoring-1 -- nix-store --gc
4506dbe5
IB
89.PHONY: cleanup
90
91###### Pull environment and deployment from remote
92# Don't include pull_deployment by default as this should happen only rarely
93pull: pull_environment;
94.PHONY: pull
95
96pull_environment:
97ifndef NIXOPS_CONFIG_PASS_SUBTREE_REMOTE
98 $(error "Please set NIXOPS_CONFIG_PASS_SUBTREE_REMOTE to the password-store subtree remote name")
99endif
100 pass git subtree pull --prefix=$(NIXOPS_CONFIG_PASS_SUBTREE_PATH) $(NIXOPS_CONFIG_PASS_SUBTREE_REMOTE) master
101.PHONY: pull_environment
102
103pull_deployment:
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]" && \
106 read y && \
107 [ "$$y" = "y" -o "$$y" = "Y" ] && \
108 $(NIXOPS) delete --force -d $(NIXOPS_DEPLOYMENT); \
109 fi
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
113
114deployment_is_set:
115 $(NIXOPS) info -d $(NIXOPS_DEPLOYMENT) 2>/dev/null >/dev/null
116.PHONY: deployment_is_set
117
118###### Push environment and deployment information to password store
119push: push_deployment push_environment;
120.PHONY: push
121
122push_deployment:
123 $(NIXOPS) export | pass insert -m $(NIXOPS_CONFIG_PASS_SUBTREE_PATH)/Nixops/Deployment
124.PHONY: push_deployment
125
126push_environment:
127ifndef NIXOPS_CONFIG_PASS_SUBTREE_REMOTE
128 $(error "Please set NIXOPS_CONFIG_PASS_SUBTREE_REMOTE to the password-store subtree remote name")
129endif
130 pass git subtree push --prefix=$(NIXOPS_CONFIG_PASS_SUBTREE_PATH) $(NIXOPS_CONFIG_PASS_SUBTREE_REMOTE) master
131.PHONY: push_environment