클라우드용_이미지_생성

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

다음 판
이전 판
클라우드용_이미지_생성 [2022/05/13 02:41] – 만듦 koov클라우드용_이미지_생성 [2023/05/28 04:24] (현재) – [클라우드용 이미지 생성] koov
줄 1: 줄 1:
 ====== 클라우드용 이미지 생성 ====== ====== 클라우드용 이미지 생성 ======
 + --- //[[koovis@gmail.com|이강우]] 2023/05/28 13:24//
 +
 +오픈스택용 이미지 생성에 대한 내용은 아래 문서를 기본적으로 확인하도록 한다.
 +  * https://docs.openstack.org/image-guide/create-images-manually.html
 +
 +
 +===== RHEL / CentOS =====
 +
 +  * [[RHEL 8/9 VM Template Sealing]]
  
 클라우드 이미지로 쓸 OS를 미리 설치하고 준비가 완료된 상태라고 가정한다. 클라우드 이미지로 쓸 OS를 미리 설치하고 준비가 완료된 상태라고 가정한다.
줄 14: 줄 23:
 <WRAP prewrap> <WRAP prewrap>
 <code vim> <code vim>
 +users:               # 추가할 사용자 계정 선언부분
 +- default
 +disable_root: 1      # root 계정 비활성화
 +ssh_pwauth: 0        # ssh 접속시 password 인증 활성화 여부
 +mount_default_fields: [~, ~, 'auto', 'defaults,nofail,x-systemd.requires=cloud-init.service', '0', '2'
 +ssh_deletekeys: 1
 +ssh_genkeytypes: ['rsa', 'ecdsa', 'ed25519']
 +syslog_fix_perms: ~
 +disable_vmware_customization: false
 +
 cloud_init_modules: cloud_init_modules:
-- resolv-conf      ### <이부분 추가+- resolv-conf       resolv-conf 설정 모듈 추가
 </code> </code>
 </WRAP> </WRAP>
줄 38: 줄 57:
 <code bash> <code bash>
 # grub2-mkconfig -o /boot/grub2/grub.cfg # grub2-mkconfig -o /boot/grub2/grub.cfg
 +</code>
 +</WRAP>
 +
 +또는 RHEL8 이상에서 아래와 같은 방법을 사용해도 됨
 +<WRAP prewrap>
 +<code bash>
 +$ grubby --update-kernel=ALL --args="console=tty0 console=ttyS0,115200n8"
 +$ grub2-mkconfig -o /boot/grub2/grub.cfg 
 +$ grubby --info DEFAULT
 </code> </code>
 </WRAP> </WRAP>
줄 68: 줄 96:
 </WRAP> </WRAP>
  
- +==== 참조링크 ==== 
- +  * https://docs.openstack.org/image-guide/openstack-images.html
-===== 참조링크 =====+
   * https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/configuring_and_managing_cloud-init_for_rhel_8   * https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/configuring_and_managing_cloud-init_for_rhel_8
   * https://access.redhat.com/documentation/en-us/red_hat_openstack_platform/16.2/html/instances_and_images_guide   * https://access.redhat.com/documentation/en-us/red_hat_openstack_platform/16.2/html/instances_and_images_guide
  
 +
 +===== Debian / Ubuntu =====
 +
 +1. 호스트명 초기화
 +<WRAP prewrap>
 +<code bash>
 +truncate -s0 /etc/hostname
 +hostnamectl set-hostname localhost
 +</code>
 +</WRAP>
 +
 +2. ''netplan'' 파일 제거
 +<WRAP prewrap>
 +<code bash>
 +rm /etc/netplan/50-cloud-init.yaml
 +</code>
 +</WRAP>
 +
 +3. ''machine-id'' 제거
 +<WRAP prewrap>
 +<code bash>
 +truncate -s0 /etc/machine-id
 +rm /var/lib/dbus/machine-id
 +ln -s /etc/machine-id /var/lib/dbus/machine-id
 +</code>
 +</WRAP>
 +
 +4. ''cloud-init clean'' 실행
 +표면적으로는 이 프로세스에서 가장 중요한 단계입니다. ''cloud-init clean''를 실행하지 않으면 클라우드 초기화가 최초 부팅 시 이미 실행되어 작업을 완료한 것으로 간주하므로 클라우드 초기화가 실행되지 않는 손상된 VM 템플릿이 남게 됩니다.
 +
 +5. ''root''패스워드 비활성화
 +<WRAP prewrap>
 +<code bash>
 +passwd -dl root
 +</code>
 +</WRAP>
 +
 +6. history 제거
 +<WRAP prewrap>
 +<code bash>
 +truncate -s0 ~/.bash_history
 +history -c
 +</code>
 +</WRAP>
 +
 +7. 콘솔 터미널 설정
 +  * 커널 설정 변경
 +''/etc/default/grub'' 파일 내용 추가
 +<WRAP prewrap>
 +<code vim>
 +GRUB_CMDLINE_LINUX_DEFAULT="console=tty0 console=ttyS0,115200n8"
 +</code>
 +</WRAP>
 +
 +<WRAP prewrap>
 +<code bash>
 +$ sudo update-grub
 +# 또는
 +$ sudo grub-mkconfig -o /boot/grub/grub.cfg
 +</code>
 +</WRAP>
 +
 +
 +8. VM 종료
 +shutdown -h now
 +
 +==== 참조링크 ====
 +  * https://docs.openstack.org/image-guide/ubuntu-image.html
 +  * https://medium.com/@dsykes012/making-a-custom-ubuntu-20-04-lts-focal-fossa-vm-template-that-works-with-cloud-init-2cfffb6783b4
  
  • 클라우드용_이미지_생성.1652409713.txt.gz
  • 마지막으로 수정됨: 2022/05/13 02:41
  • 저자 koov