sealed-secret
Create a new Sealed Secret — generates raw secret, seals it with kubeseal, and places it in the correct resources/ directory
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create a new Sealed Secret — generates raw secret, seals it with kubeseal, and places it in the correct resources/ directory
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Longhorn の健全性チェック — volume robustness(degraded 検出)、node 容量、R2 バックアップの鮮度、recurring job の動作状況を一括診断
Scaffold a new infrastructure component, choosing the right layout (Helm multi-source / raw YAML / ApplicationSet) for its category
Troubleshoot a specific infrastructure component — resolve namespace, check pods, events, logs, and Argo CD sync status
全 Helm Application の chart バージョン鮮度を一括チェック — 各 app.yaml の targetRevision を upstream 最新と突き合わせ、更新候補を優先度付きでレポート(/helm-upgrade の前段)
Secret 管理 4 方式(Vault dynamic / Vault static via ESO / Vault Transit / SealedSecret)の健全性を一括チェック — Vault seal 状態、ESO 同期、SealedSecret 復号、関連 cert をまとめて診断
OpenAI Codex に作業を委譲する。コードレビュー、セカンドオピニオン、別解の生成、調査・分析を Codex にやらせたいとき(「Codex にレビューさせて」「Codex に聞いて」「Codex の意見も欲しい」等)に使う。
| name | sealed-secret |
| description | Create a new Sealed Secret — generates raw secret, seals it with kubeseal, and places it in the correct resources/ directory |
| argument-hint | <secret-name> <namespace> |
Create sealed secret $ARGUMENTS[0] in namespace $ARGUMENTS[1].
Determine target location:
$ARGUMENTS[1]kubernetes/<category>/<component>/resources/ or kubernetes/namespaces/<ns>/Collect secret data:
kubectl create secret generic command with --from-literal flagstemp/create-secret.sh (per script output rule)temp/$ARGUMENTS[0]-raw.yamlSeal the secret:
kubeseal --format=yaml < temp/$ARGUMENTS[0]-raw.yaml \
> <target-resources-dir>/$ARGUMENTS[0]-sealed.yaml
Verify:
temp/$ARGUMENTS[0]-raw.yaml is git-ignored (matches *-raw.yaml pattern)Commit guidance:
git diff --stat of changestemp/ (never committed), only sealed YAML is committed