Add k3s, 1Password Connect, and systemd nix-container-builder to ringtail #209

Merged
eblume merged 7 commits from feature/k3s-ringtail-runner into main 2026-02-18 21:15:31 -08:00
Showing only changes of commit 753fe90b49 - Show all commits

Fix bash path for NixOS in ringtail playbook

NixOS doesn't have /bin/bash. Use /run/current-system/sw/bin/bash
which is the stable PATH-resolved location on NixOS.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Erich Blume 2026-02-18 20:44:18 -08:00

View file

@ -99,7 +99,7 @@
--namespace=1password \
--from-literal=1password-credentials.json='{{ _op_credentials.stdout }}' \
--dry-run=client -o yaml | k3s kubectl apply -f -
executable: /bin/bash
executable: /run/current-system/sw/bin/bash
changed_when: true
no_log: true
@ -111,6 +111,6 @@
--namespace=1password \
--from-literal=token={{ _op_token.stdout }} \
--dry-run=client -o yaml | k3s kubectl apply -f -
executable: /bin/bash
executable: /run/current-system/sw/bin/bash
changed_when: true
no_log: true