mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 16:04:31 +00:00
13 lines
289 B
Bash
13 lines
289 B
Bash
#!/bin/bash
|
|
# Knoe Installer: kubectl plugins via krew
|
|
# Installs required kubectl plugins using krew
|
|
|
|
set -euo pipefail
|
|
|
|
echo "[knoe] Installing kubectl plugins (via krew)..."
|
|
|
|
# Example plugins; extend as needed
|
|
kubectl krew install view-secret || true
|
|
|
|
echo "[knoe] kubectl plugins OK"
|