7.6.2.63. useLabelsModel
Kubernetes リソースラベルを編集するためのモーダルを起動するコールバックを提供するフック。
例
const PodLabelsButton = ({ pod }) => {
const { t } = useTranslation();
const launchLabelsModal = useLabelsModal<PodKind>(pod);
return <button onClick={launchLabelsModal}>{t('Edit Pod Labels')}</button>
}
| パラメーター名 | 説明 |
|---|---|
|
| ラベルを編集するリソース (K8sResourceCommon タイプのオブジェクト)。 |
リソースのラベルを編集するためのモーダルを起動する関数 を返します。