3.2. OpenShift Container Platform 4.2에서 4.5로 레거시 Migration Toolkit for Containers Operator 설치
OpenShift Container Platform 버전 4.2에서 4.5로 레거시 Migration Toolkit for Containers Operator를 수동으로 설치할 수 있습니다.
사전 요구 사항
-
모든 클러스터에서
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.7):/operator.yml ./
다음 명령을 입력하여
controller.yml
파일을 다운로드합니다.podman cp $(podman create registry.redhat.io/rhmtc/openshift-migration-legacy-rhel8-operator:v1.7):/controller.yml ./
- OpenShift Container Platform 소스 클러스터에 로그인합니다.
클러스터가
registry.redhat.io
로 인증할 수 있는지 확인합니다.$ oc run test --image registry.redhat.io/ubi9 --command sleep infinity
Migration Toolkit for Containers Operator 오브젝트 생성:
$ oc create -f operator.yml
출력 예
namespace/openshift-migration created rolebinding.rbac.authorization.k8s.io/system:deployers created serviceaccount/migration-operator created customresourcedefinition.apiextensions.k8s.io/migrationcontrollers.migration.openshift.io created role.rbac.authorization.k8s.io/migration-operator created rolebinding.rbac.authorization.k8s.io/migration-operator created clusterrolebinding.rbac.authorization.k8s.io/migration-operator created deployment.apps/migration-operator created Error from server (AlreadyExists): error when creating "./operator.yml": rolebindings.rbac.authorization.k8s.io "system:image-builders" already exists 1 Error from server (AlreadyExists): error when creating "./operator.yml": rolebindings.rbac.authorization.k8s.io "system:image-pullers" already exists
- 1
Error from server (AlreadyExists)
메시지를 무시할 수 있습니다. 이는 Migration Toolkit for Containers Operator가 이후 릴리스에서 제공되는 OpenShift Container Platform 4 이전 버전에 대한 리소스를 생성하기 때문에 발생합니다.
MigrationController
오브젝트를 만듭니다.$ oc create -f controller.yml
MTC pod가 실행 중인지 확인합니다.
$ oc get pods -n openshift-migration