mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 16:24:32 +00:00
- Add build-context helper to copy Docker context safely (ignore runtime data, keep symlinks) - Update UI and core actions to use ~/.prole/build and shared copy helper - Add/adjust tests and scripts; introduce knoe ops helpers and update manifests Co-authored-by: Junie <junie@jetbrains.com>
13 lines
292 B
Bash
13 lines
292 B
Bash
#!/bin/bash
|
|
# Prole Installer: kubectl plugins via krew
|
|
# Installs required kubectl plugins using krew
|
|
|
|
set -euo pipefail
|
|
|
|
echo "[prole] Installing kubectl plugins (via krew)..."
|
|
|
|
# Example plugins; extend as needed
|
|
kubectl krew install view-secret || true
|
|
|
|
echo "[prole] kubectl plugins OK"
|