Compare commits

...

3 Commits

Author SHA1 Message Date
Joey Hafner
befdfdad36
#17 Trigger workflow
All checks were successful
Deploy NixOS System Configurations to Silver-Flame Hosts / deploy (push) Successful in 2m28s
2024-10-25 21:07:55 -07:00
Joey Hafner
ad62383af9
#17 Split up SSH setup steps
Better resolution for profiling the problematic "Derive host IPs" step
2024-10-25 21:07:41 -07:00
Joey Hafner
b980d5c563
#17 Fix typo: (We armed the weapon) 2024-10-25 21:02:39 -07:00
2 changed files with 7 additions and 3 deletions

View File

@ -29,16 +29,20 @@ jobs:
extraPullNames: nix-community
- name: Set up deploy-rs
run: nix build -o deploy github:serokell/deploy-rs#defaultPackage.x86_64-linux
- name: Set up SSH
- name: Set up SSH key
run: |
echo -e "${{ secrets.RUNNER_SSH_PRIVATEKEY }}" > /tmp/key
chmod 600 /tmp/key
- name: Derive host IPs
run: |
nix eval --json .#deploy.nodes --apply 'builtins.attrValues' |\
jq -r '.[].hostname' | xargs echo > /tmp/hostlist
- name: Add host keys to known_hosts
run: |
mkdir -p ~/.ssh && touch ~/.ssh/known_hosts && chmod 600 ~/.ssh/known_hosts
for host in $(cat /tmp/hostlist); do
ssh-keyscan -t ed25519 $host >> ~/.ssh/known_hosts
done
- name: Dry-run deploy
- name: Deploy
run: |
./deploy/bin/deploy --ssh-opts '-i /tmp/key'

View File

@ -33,7 +33,7 @@
clusterInit = (hostConf.name == "bard");
serverAddr = (if hostConf.name == "bard" then "" else "https://192.168.1.31:6443");
# We are going to manage k8s resources separately from the infrastructure config
manifests = { };
manifests = { };
};
services.openiscsi = {
enable = false;