blob: 18d48eb552c4eda3da184c2b991ba3dd8b8f69ad (
plain) (
tree)
|
|
ifndef NIXOPS_ENV_LOADED
$(error "Please load environment with direnv")
endif
NIXOPS_PRIV = ./scripts/with_env nixops
###### Current channel information
nix-info:
@version=$$(nix eval --raw nixpkgs.lib.version) && \
mainversion=$$(echo $$version | cut -d"." -f -2) && \
echo "https://releases.nixos.org/nixos/$$mainversion/nixos-$$version/nixexprs.tar.xz" && \
nix-instantiate --find-file nixpkgs
.PHONY: nix-info
###### Initial setup
setup:
./scripts/setup
.PHONY: setup
###### Nixops regular tasks
TARGET ?=
NIXOPS_ARGS ?=
ifdef TARGET
override NIXOPS_ARGS +=--include=$(TARGET)
endif
SSH_ARGS ?=
edit_env:
pass edit Nixops/files/environment.nix || true
nixops:
$(NIXOPS_PRIV) $(NIXOPS_ARGS)
ssh-eldiron:
$(NIXOPS_PRIV) ssh eldiron -- $(SSH_ARGS)
ssh-dilion:
$(NIXOPS_PRIV) ssh dilion -- $(SSH_ARGS)
ssh-backup-2:
$(NIXOPS_PRIV) ssh backup-2 -- $(SSH_ARGS)
ssh-monitoring-1:
$(NIXOPS_PRIV) ssh monitoring-1 -- $(SSH_ARGS)
info:
$(NIXOPS_PRIV) list
$(NIXOPS_PRIV) info
debug:
$(NIXOPS_PRIV) deploy --build-only --show-trace $(NIXOPS_ARGS)
dry-run:
$(NIXOPS_PRIV) deploy --dry-run $(NIXOPS_ARGS)
build:
$(NIXOPS_PRIV) deploy --build-only $(NIXOPS_ARGS)
upload:
$(NIXOPS_PRIV) deploy --copy-only $(NIXOPS_ARGS)
deploy:
$(NIXOPS_PRIV) deploy $(NIXOPS_ARGS)
deploy-reboot:
$(NIXOPS_PRIV) deploy --force-reboot $(NIXOPS_ARGS)
reboot:
$(NIXOPS_PRIV) reboot --include=$(TARGET)
.PHONY: nixops ssh-eldiron info debug dry-run build upload deploy deploy-reboot reboot
###### Cleanup generations and garbage collection
profile := $$($(NIXOPS_PRIV) info | grep "^Nix profile: " | sed -e "s/^Nix profile: //")
GEN ?= "+3"
list-generations:
nix-env -p $(profile) --list-generations
$(NIXOPS_PRIV) ssh eldiron -- nix-env -p /nix/var/nix/profiles/system --list-generations
.PHONY: list-generations
delete-generations:
nix-env -p $(profile) --delete-generations $(GEN)
$(NIXOPS_PRIV) ssh eldiron -- nix-env -p /nix/var/nix/profiles/system --delete-generations $(GEN)
$(NIXOPS_PRIV) ssh dilion -- nix-env -p /nix/var/nix/profiles/system --delete-generations $(GEN)
$(NIXOPS_PRIV) ssh backup-2 -- nix-env -p /nix/var/nix/profiles/system --delete-generations $(GEN)
$(NIXOPS_PRIV) ssh monitoring-1 -- nix-env -p /nix/var/nix/profiles/system --delete-generations $(GEN)
.PHONY: delete-generations
cleanup: delete-generations
nix-store --gc
$(NIXOPS_PRIV) ssh eldiron -- nix-store --gc
$(NIXOPS_PRIV) ssh dilion -- nix-store --gc
$(NIXOPS_PRIV) ssh backup-2 -- nix-store --gc
$(NIXOPS_PRIV) ssh monitoring-1 -- nix-store --gc
.PHONY: cleanup
###### Pull environment and deployment from remote
pull_deployment:
@if nixops info -d $(NIXOPS_DEPLOYMENT) 2>/dev/null >/dev/null ; then \
echo "This will remove your current deployment file and recreate it!. Continue? [y/N]" && \
read y && \
[ "$$y" = "y" -o "$$y" = "Y" ] && \
nixops delete --force -d $(NIXOPS_DEPLOYMENT); \
fi
pass show Nixops/Deployment | nixops import
nixops modify -d $(NIXOPS_DEPLOYMENT) "$$(pwd)/default.nix"
.PHONY: pull_deployment
deployment_is_set:
nixops info -d $(NIXOPS_DEPLOYMENT) 2>/dev/null >/dev/null
.PHONY: deployment_is_set
###### Push deployment information to password store
push_deployment:
nixops export | pass insert -m Nixops/Deployment
.PHONY: push
|