Initial commit.

This commit is contained in:
2025-10-11 18:08:04 +00:00
commit 8947da88eb
43 changed files with 7850 additions and 0 deletions

21
activate.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/usr/bin/env bash
# Bash completion
if [ -n "$BASH_VERSION" ]; then
# kubectl completion
if command -v kubectl &> /dev/null; then
eval "$(kubectl completion bash)"
fi
# talosctl completion
if command -v talosctl &> /dev/null; then
eval "$(talosctl completion bash)"
fi
# wild completion
if command -v wild &> /dev/null; then
eval "$(wild completion bash)"
fi
fi
source <(wild instance env)