5.3. OpenShift Container Platform 버전 4.2에서 4.5로 Migration Toolkit for Containers 업그레이드
레거시 MTC(Migration Toolkit for Containers Operator)를 수동으로 설치하여 OpenShift Container Platform 버전 4.2에서 MTC(Migration Toolkit for Containers)를 업그레이드할 수 있습니다.
사전 요구 사항
-
cluster-admin
권한이 있는 사용자로 로그인해야 합니다. -
registry.redhat.io
에 대한 액세스 권한이 있어야 합니다. -
podman
이 설치되어 있어야 합니다.
프로세스
다음 명령을 입력하여 Red Hat Customer Portal 자격 증명을 사용하여
registry.redhat.io
에 로그인합니다.$ podman login registry.redhat.io
다음 명령을 입력하여
operator.yml
파일을 다운로드합니다.$ podman cp $(podman create \ registry.redhat.io/rhmtc/openshift-migration-legacy-rhel8-operator:v1.8):/operator.yml ./
다음 명령을 입력하여 Migration Toolkit for Containers Operator를 교체합니다.
$ oc replace --force -f operator.yml
다음 명령을 입력하여
migration-operator
배포를0
으로 확장하여 배포를 중지합니다.$ oc scale -n openshift-migration --replicas=0 deployment/migration-operator
migration-operator
배포를1
로 확장하여 배포를 시작하고 다음 명령을 입력하여 변경 사항을 적용합니다.$ oc scale -n openshift-migration --replicas=1 deployment/migration-operator
다음 명령을 입력하여
migration-operator
가 업그레이드되었는지 확인합니다.$ oc -o yaml -n openshift-migration get deployment/migration-operator | grep image: | awk -F ":" '{ print $NF }'
다음 명령을 입력하여
controller.yml
파일을 다운로드합니다.$ podman cp $(podman create \ registry.redhat.io/rhmtc/openshift-migration-legacy-rhel8-operator:v1.8):/controller.yml ./
다음 명령을 입력하여
migration-controller
오브젝트를 생성합니다.$ oc create -f controller.yml
다음 명령을 입력하여 MTC Pod가 실행 중인지 확인합니다.
$ oc get pods -n openshift-migration