15.11. 사용자 인프라의 RHOSP에서 클러스터 설치 제거
사용자 프로비저닝 인프라에서 RHOSP(Red Hat OpenStack Platform)에 배포한 클러스터를 제거할 수 있습니다.
15.11.1. 플레이북 종속 항목 다운로드
사용자 프로비저닝 인프라에서의 제거 프로세스를 간소화하는 Ansible 플레이북에는 몇 가지 Python 모듈이 필요합니다. 프로세스를 실행할 시스템에서 모듈 리포지토리를 추가하고 다운로드합니다.
이 방법은 현재 Red Hat Enterprise Linux (RHEL) 8을 사용하는 것으로 가정합니다.
사전 요구 사항
- Python 3가 시스템에 설치되어 있습니다.
절차
명령줄에서 리포지토리를 추가합니다.
Red Hat Subscription Manager에 등록합니다.
$ sudo subscription-manager register # If not done already
최신 서브스크립션 데이터를 가져옵니다.
$ sudo subscription-manager attach --pool=$YOUR_POOLID # If not done already
현재 리포지토리를 비활성화합니다.
$ sudo subscription-manager repos --disable=* # If not done already
필요한 리포지토리를 추가합니다.
$ sudo subscription-manager repos \ --enable=rhel-8-for-x86_64-baseos-rpms \ --enable=openstack-16-tools-for-rhel-8-x86_64-rpms \ --enable=ansible-2.9-for-rhel-8-x86_64-rpms \ --enable=rhel-8-for-x86_64-appstream-rpms
모듈을 설치합니다.
$ sudo yum install python3-openstackclient ansible python3-openstacksdk
python
명령이python3
를 가리키는지 확인합니다.$ sudo alternatives --set python /usr/bin/python3
15.11.2. 사용자 인프라를 사용하는 RHOSP에서 클러스터 제거
사용자 인프라를 사용하는 RHOSP(Red Hat OpenStack Platform)에서 OpenShift Container Platform 클러스터를 제거할 수 있습니다. 제거 프로세스를 빠르게 완료하려면 Ansible 플레이북을 여러 개 실행합니다.
사전 요구 사항
- Python 3가 시스템에 설치되어 있습니다.
- "플레이북 종속 항목 다운로드"에서 모듈을 다운로드했습니다.
- 클러스터를 설치하는 데 사용한 플레이북이 있습니다.
-
해당 설치 플레이북에 수행한 변경 사항을 반영하도록
down-
접두사가 있는 플레이북을 수정하셨습니다. 예를 들어bootstrap.yaml
파일의 변경 사항은down-bootstrap.yaml
파일에 반영됩니다. - 모든 플레이북은 공통 디렉터리에 있습니다.
절차
명령줄에서 사용자가 다운로드한 플레이북을 실행합니다.
$ ansible-playbook -i inventory.yaml \ down-bootstrap.yaml \ down-control-plane.yaml \ down-compute-nodes.yaml \ down-load-balancers.yaml \ down-network.yaml \ down-security-groups.yaml
- OpenShift Container Platform 설치에 대한 DNS 레코드 변경 내용을 제거합니다.
OpenShift Container Platform이 인프라에서 제거되었습니다.