7.5.2.64. useAnnotationsModal
Kubernetes 리소스 주석 편집을 위한 모달을 시작하는 콜백을 제공하는 후크입니다.
예제
const PodAnnotationsButton = ({ pod }) => {
const { t } = useTranslation();
const launchAnnotationsModal = useAnnotationsModal<PodKind>(pod);
return <button onClick={launchAnnotationsModal}>{t('Edit Pod Annotations')}</button>
}
| 매개변수 이름 | 설명 |
|---|---|
|
| K8sResourceCommon 유형의 오브젝트에 대한 주석을 편집할 리소스입니다. |
반환
리소스의 주석을 편집하기 위한 모달을 시작하는 함수입니다.