Compare commits

...

2 Commits

Author SHA1 Message Date
Joey Hafner
845dd73882
#17 Trigger workflow
Some checks failed
Deploy NixOS System Configurations to Silver-Flame Hosts / deploy (push) Failing after 2m41s
2024-10-25 18:18:59 -07:00
Joey Hafner
e257778aad
#17 Enable step to run deploy-rs from flake as dry-run 2024-10-25 18:18:01 -07:00
2 changed files with 6 additions and 6 deletions

View File

@ -40,6 +40,6 @@ jobs:
for host in $(cat /tmp/hostlist); do
ssh -i /tmp/key root@$host 'whoami; echo $HOSTNAME'
done
# - name: Run deploy-rs from flake
# run: |
# nix run github:serokell/deploy-rs#defaultPackage.x86_64-linux -- --version
- name: Run deploy-rs from flake
run: |
nix run github:serokell/deploy-rs#defaultPackage.x86_64-linux -- --dry-activate

View File

@ -32,8 +32,8 @@
];
clusterInit = (hostConf.name == "bard");
serverAddr = (if hostConf.name == "bard" then "" else "https://192.168.1.31:6443");
manifests = { }; # We are going to manage k8s resources separately from
# the infrastructure config
# We are going to manage k8s resources separately from the infrastructure config
manifests = { };
};
services.openiscsi = {
enable = false;
@ -109,4 +109,4 @@
boot.loader.efi.canTouchEfiVariables = true;
boot.supportedFilesystems = [ "nfs" ];
system.stateVersion = "24.05";
}
}