Trident 연산자 수동 배포(표준 모드)
Trident 연산자를 수동으로 구축하여 Astra Trident를 설치할 수 있습니다. 이 프로세스는 Astra Trident에 필요한 컨테이너 이미지가 개인 레지스트리에 저장되어 있지 않은 설치에 적용됩니다. 개인 이미지 레지스트리가 있는 경우 를 사용합니다 "오프라인 배포를 위한 프로세스입니다".
Astra Trident 23.10에 대한 중요 정보
-
Astra Trident * 에 대한 다음 중요 정보를 읽어야 합니다
<strong> 중요 정보 Astra Trident </strong>
-
이제 Trident에서 Kubernetes 1.27이 지원됩니다. Kubernetes를 업그레이드하기 전에 Trident를 업그레이드하십시오.
-
Astra Trident는 SAN 환경에서 다중 경로 구성을 엄격하게 사용하며 권장 값은 입니다
find_multipaths: no
다중 경로 .conf 파일비 경로 다중화 구성 또는 의 사용
find_multipaths: yes
또는find_multipaths: smart
multipath.conf 파일의 값으로 인해 마운트 오류가 발생합니다. Trident에서 의 사용을 권장했습니다find_multipaths: no
21.07 릴리스 이후.
Trident 연산자를 수동으로 구축하고 Trident를 설치합니다
검토 "설치 개요" 설치 사전 요구 사항을 충족하고 환경에 맞는 올바른 설치 옵션을 선택했는지 확인합니다.
설치를 시작하기 전에 Linux 호스트에 로그인하여 작업 관리 여부를 확인합니다. "지원되는 Kubernetes 클러스터" 필요한 권한이 있어야 합니다.
OpenShift에서는 을 사용합니다 oc 대신 kubectl 다음 모든 예에서 를 실행하여 먼저 * system:admin * 으로 로그인합니다 oc login -u system:admin 또는 oc login -u kube-admin .
|
Details
-
Kubernetes 버전 확인:
kubectl version
-
클러스터 관리자 권한 확인:
kubectl auth can-i '*' '*' --all-namespaces
-
Docker Hub의 이미지를 사용하는 Pod를 시작하고 Pod 네트워크를 통해 스토리지 시스템에 연결할 수 있는지 확인합니다.
kubectl run -i --tty ping --image=busybox --restart=Never --rm -- \ ping <management IP>
1단계: Trident 설치 프로그램 패키지를 다운로드합니다
Astra Trident 설치 프로그램 패키지에는 Trident 운영자를 구축하고 Astra Trident를 설치하는 데 필요한 모든 것이 들어 있습니다. 에서 최신 버전의 Trident 설치 프로그램을 다운로드하고 압축을 풉니다 "GitHub의 _Assets_섹션".
wget https://github.com/NetApp/trident/releases/download/v23.10.0/trident-installer-23.10.0.tar.gz tar -xf trident-installer-23.10.0.tar.gz cd trident-installer
2단계: 을 작성합니다 TridentOrchestrator
CRD
를 생성합니다 TridentOrchestrator
사용자 정의 리소스 정의(CRD). 을(를) 생성합니다 TridentOrchestrator
나중에 사용자 지정 리소스. 에서 적절한 CRD YAML 버전을 사용하십시오 deploy/crds
를 작성합니다 TridentOrchestrator
CRD
kubectl create -f deploy/crds/trident.netapp.io_tridentorchestrators_crd_post1.16.yaml
3단계: Trident 연산자를 배포합니다
Astra Trident 설치 관리자는 연산자를 설치하고 관련 개체를 만드는 데 사용할 수 있는 번들 파일을 제공합니다. 번들 파일은 기본 구성을 사용하여 운영자를 구축하고 Astra Trident를 설치하는 간편한 방법입니다.
-
Kubernetes 1.24 이하 버전을 실행하는 클러스터의 경우, 를 사용합니다
bundle_pre_1_25.yaml
. -
Kubernetes 1.25 이상을 실행하는 클러스터의 경우 를 사용합니다
bundle_post_1_25.yaml
.
-
기본적으로 Trident 설치 관리자는 에 연산자를 배포합니다
trident
네임스페이스. 를 누릅니다trident
네임스페이스가 없습니다. 다음을 사용하여 생성합니다.kubectl apply -f deploy/namespace.yaml
-
를 제외한 네임스페이스에 연산자를 배포합니다
trident
네임스페이스, 업데이트serviceaccount.yaml
,clusterrolebinding.yaml
및operator.yaml
을 사용하여 번들 파일을 생성합니다kustomization.yaml
.-
를 생성합니다
kustomization.yaml
다음 명령을 사용합니다. 여기서 _<bundle.yaml>_isbundle_pre_1_25.yaml
또는bundle_post_1_25.yaml
Kubernetes 버전을 기반으로 합니다.cp deploy/kustomization_<bundle.yaml> deploy/kustomization.yaml
-
다음 명령을 사용하여 번들을 컴파일합니다. 여기서 _<bundle.yaml>_is
bundle_pre_1_25.yaml
또는bundle_post_1_25.yaml
Kubernetes 버전을 기반으로 합니다.kubectl kustomize deploy/ > deploy/<bundle.yaml>
-
-
리소스를 생성하고 연산자를 배포합니다.
kubectl create -f deploy/<bundle.yaml>
-
운영자, 배포 및 복제 생성 여부를 확인합니다.
kubectl get all -n <operator-namespace>
Kubernetes 클러스터에는 운영자의 인스턴스 * 하나가 있어야 합니다. Trident 연산자의 여러 배포를 생성하지 마십시오. |
4단계: 을 작성합니다 TridentOrchestrator
Trident를 설치합니다
이제 를 만들 수 있습니다 TridentOrchestrator
Astra Trident를 설치합니다. 필요에 따라 할 수 있습니다 "Trident 설치를 사용자 지정합니다" 의 속성을 사용합니다 TridentOrchestrator
사양
kubectl create -f deploy/crds/tridentorchestrator_cr.yaml tridentorchestrator.trident.netapp.io/trident created kubectl describe torc trident Name: trident Namespace: Labels: <none> Annotations: <none> API Version: trident.netapp.io/v1 Kind: TridentOrchestrator ... Spec: Debug: true Namespace: trident Status: Current Installation Params: IPv6: false Autosupport Hostname: Autosupport Image: netapp/trident-autosupport:23.10 Autosupport Proxy: Autosupport Serial Number: Debug: true Image Pull Secrets: Image Registry: k8sTimeout: 30 Kubelet Dir: /var/lib/kubelet Log Format: text Silence Autosupport: false Trident Image: netapp/trident:23.10.0 Message: Trident installed Namespace: trident Status: Installed Version: v23.10.0 Events: Type Reason Age From Message ---- ------ ---- ---- -------Normal Installing 74s trident-operator.netapp.io Installing Trident Normal Installed 67s trident-operator.netapp.io Trident installed
설치를 확인합니다
설치를 확인하는 방법에는 여러 가지가 있습니다.
사용 TridentOrchestrator
상태
의 상태입니다 TridentOrchestrator
설치가 성공적으로 완료되었는지 여부를 나타내고 설치된 Trident의 버전을 표시합니다. 설치하는 동안 의 상태입니다 TridentOrchestrator
변경 시작 Installing
를 선택합니다 Installed
. 을(를) 관찰하면 Failed
상태 및 운영자가 자체적으로 복구할 수 없습니다. "로그를 확인합니다".
상태 | 설명 |
---|---|
설치 중 |
이 옵션을 사용하여 Astra Trident를 설치합니다 |
설치되어 있습니다 |
Astra Trident가 성공적으로 설치되었습니다. |
제거 중 |
그 이유는 운영자가 Astra Trident를 제거하는 중입니다 |
제거되었습니다 |
Astra Trident가 제거되었습니다. |
실패했습니다 |
운영자가 설치, 패치, 업데이트 또는 제거할 수 없습니다 |
업데이트 중 |
운영자가 기존 설치를 업데이트하고 있습니다. |
오류 |
를 클릭합니다 |
POD 생성 상태 사용
생성된 Pod의 상태를 검토하여 Astra Trident 설치가 완료되었는지 확인할 수 있습니다.
kubectl get pods -n trident NAME READY STATUS RESTARTS AGE trident-controller-7d466bf5c7-v4cpw 6/6 Running 0 1m trident-node-linux-mr6zc 2/2 Running 0 1m trident-node-linux-xrp7w 2/2 Running 0 1m trident-node-linux-zh2jt 2/2 Running 0 1m trident-operator-766f7b8658-ldzsv 1/1 Running 0 3m
사용 tridentctl
을 사용할 수 있습니다 tridentctl
설치된 Astra Trident의 버전을 확인합니다.
./tridentctl -n trident version +----------------+----------------+ | SERVER VERSION | CLIENT VERSION | +----------------+----------------+ | 23.10.0 | 23.10.0 | +----------------+----------------+