본문 바로가기
IT/Azure

Azure Patch Orchestration (패치 오케스트레이션)

by rapker 2023. 4. 29.
반응형
728x90
 
참고
 
 
가상머신의 GuestOS 업데이트 관리는 Patch Orchestration 으로 아래와 같이 설정할 수 있습니다.
 
  • Azure Platform이 GuestOS의 Update를 관리
  • Guest OS가 Update를 관리
  • User가 Update를 관리
 
 
반응형
 
 
패치 오케스트레이션 모드 문서에서 자세한 내용을 확인할 수 있고 아래와 같이 요약할 수 있습니다.
 
AutomaticByPlatform
  • 플랫폼의 OS 이미지를 사용하여 만든 VM에만 지원되며, Azure에 의해 Update가 진행됩니다.
  • Linux : osProfile.linuxConfiguration.patchSettings.patchMode=AutomaticByPlatform
  • Windows : osProfile.windowsConfiguration.patchSettings.patchMode=AutomaticByPlatform
 
AutomaticByOS
  • Windows VM만 지원되며 이 모드가 기본으로 적용됩니다.
  • osProfile.windowsConfiguration.enableAutomaticUpdates=true
  • osProfile.windowsConfiguration.patchSettings.patchMode=AutomaticByOS
 
Manual
  • Windows VM에만 지원되며, 자동업데이트를 사용하지 않도록 설정합니다. (자동업데이트 안함 Windows)
  • osProfile.windowsConfiguration.enableAutomaticUpdates=false
  • osProfile.windowsConfiguration.patchSettings.patchMode=Manual
 
ImageDefault
  • Linux VM만 지원되며, 이 모드가 기본으로 적용됩니다. (자동업데이트 안함 Linux)
  • osProfile.linuxConfiguration.patchSettings.patchMode=ImageDefault
사용 예)
# https://docs.microsoft.com/ko-kr/azure/virtual-machines/automatic-vm-guest-patching#azure-cli-for-windows-vms

az vm create -g "vmTest_group" -n "vmTest_manural" --size "Standard_f2s_v2" --image Win2019Datacenter --enable-agent true --enable-auto-update false --patch-mode Manual --admin-username "rapker" --admin-password "zmffnzjtm12!@"
 

 

 

반응형
LIST

'IT > Azure' 카테고리의 다른 글

Azure IoT Hub 시뮬레이션 장치 등록 오류  (0) 2023.05.09
Windows RDP Port 변경  (0) 2023.04.29
Azure Computing Gallery - Windows  (0) 2023.04.29
AzureAD로 VM에 로그인  (0) 2023.04.29
Windows 10 한국어 언어팩 설치  (0) 2023.04.29