검색

19.11. 베어 메탈에서 지원되는 설치 프로그램 서비스 활성화

download PDF

AIS(Assisted Installer Service)는 OpenShift Container Platform 클러스터를 배포합니다. RHACM(Red Hat Advanced Cluster Management)에는 AIS가 포함되어 있습니다. AIS는 RHACM 허브 클러스터에서 MultiClusterHub Operator를 활성화하면 배포됩니다.

DC(분산 단위)의 경우 RHACM은 단일 베어 메탈 호스트에서 실행되는 OpenShift Container Platform 배포를 지원합니다. 단일 노드 클러스터는 컨트롤 플레인과 작업자 노드 역할을 합니다.

사전 요구 사항

  • 허브 클러스터에 OpenShift Container Platform 4.9를 설치합니다.
  • RHACM을 설치하고 MultiClusterHub 리소스를 생성합니다.
  • 데이터베이스 및 파일 시스템 스토리지에 사용할 영구 볼륨 CR(사용자 정의 리소스)을 생성합니다.
  • OpenShift CLI(oc)가 설치되어 있습니다.

절차

  1. HiveConfig 리소스를 수정하여 Assisted Installer의 feature Gate를 활성화합니다.

     $ oc patch hiveconfig hive --type merge -p '{"spec":{"targetNamespace":"hive","logLevel":"debug","featureGates":{"custom":{"enabled":["AlphaAgentInstallStrategy"]},"featureSet":"Custom"}}}'
  2. 베어 메탈 Operator가 모든 네임스페이스를 조사할 수 있도록 프로비저닝 리소스를 수정합니다.

     $ oc patch provisioning provisioning-configuration --type merge -p '{"spec":{"watchAllNamespaces": true }}'
  3. AgentServiceConfig CR을 생성합니다.

    1. 다음 YAML을 agent_service_config.yaml 파일에 저장합니다.

      apiVersion: agent-install.openshift.io/v1beta1
      kind: AgentServiceConfig
      metadata:
       name: agent
      spec:
        databaseStorage:
          accessModes:
          - ReadWriteOnce
          resources:
            requests:
              storage: <db_volume_size> 1
        filesystemStorage:
          accessModes:
          - ReadWriteOnce
          resources:
            requests:
              storage: <fs_volume_size> 2
        osImages: 3
          - openshiftVersion: "<ocp_version>" 4
            version: "<ocp_release_version>" 5
            url: "<iso_url>" 6
            rootFSUrl: "<root_fs_url>" 7
            cpuArchitecture: "x86_64"
      1
      databaseStorage 필드의 볼륨 크기(예: 10Gi )입니다.
      2
      filesystemStorage 필드의 볼륨 크기(예: 20Gi )
      3
      OS 이미지 세부 정보 목록입니다. 예제는 단일 OpenShift Container Platform OS 버전을 설명합니다.
      4
      설치할 OpenShift Container Platform 버전입니다(예: 4.8 ).
      5
      특정 설치 버전(예: 47.83.202103251640 -0)
      6
      7
    2. 다음 명령을 실행하여 AgentServiceConfig CR을 생성합니다.

      $ oc create -f agent_service_config.yaml

      출력 예

      agentserviceconfig.agent-install.openshift.io/agent created

Red Hat logoGithubRedditYoutubeTwitter

자세한 정보

평가판, 구매 및 판매

커뮤니티

Red Hat 문서 정보

Red Hat을 사용하는 고객은 신뢰할 수 있는 콘텐츠가 포함된 제품과 서비스를 통해 혁신하고 목표를 달성할 수 있습니다.

보다 포괄적 수용을 위한 오픈 소스 용어 교체

Red Hat은 코드, 문서, 웹 속성에서 문제가 있는 언어를 교체하기 위해 최선을 다하고 있습니다. 자세한 내용은 다음을 참조하세요.Red Hat 블로그.

Red Hat 소개

Red Hat은 기업이 핵심 데이터 센터에서 네트워크 에지에 이르기까지 플랫폼과 환경 전반에서 더 쉽게 작업할 수 있도록 강화된 솔루션을 제공합니다.

© 2024 Red Hat, Inc.