검색

3.2. Ceph MDS 서비스의 사용자 정의 역할 및 플레이버 생성

download PDF

이 섹션에서는 Ceph MDS 역할에 대한 사용자 지정 역할( CephMDS) 및 플레이버(이름 ceph-mds)를 생성하는 방법을 설명합니다. 3장. 전용 노드에 기타 Ceph 서비스 배포 에 설명된 대로 기본 역할 데이터 파일의 사본이 이미 있어야 합니다.

  1. /home/stack/templates/roles_data_custom.yaml 파일을 엽니다.
  2. Controller 역할의 에서 Ceph MDS 서비스(예: OS::TripleO::Services::CephMds)의 서비스 항목을 제거합니다.

    [...]
    - name: Controller # the 'primary' role goes first
      CountDefault: 1
      ServicesDefault:
        - OS::TripleO::Services::CACerts
        # - OS::TripleO::Services::CephMds 1
        - OS::TripleO::Services::CephMon
        - OS::TripleO::Services::CephExternal
        - OS::TripleO::Services::CephRbdMirror
        - OS::TripleO::Services::CephRgw
        - OS::TripleO::Services::CinderApi
    [...]
    1
    이 행을 주석 처리하십시오. 이 동일한 서비스가 다음 단계에서 사용자 지정 역할에 추가됩니다.
  3. roles_data_custom.yaml 이 끝나면 Ceph MDS 서비스와 기타 모든 필수 노드 서비스가 포함된 사용자 지정 CephMDS 역할을 추가합니다. 예를 들면 다음과 같습니다.

    - name: CephMDS
      ServicesDefault:
        # Common Services
        - OS::TripleO::Services::AuditD
        - OS::TripleO::Services::CACerts
        - OS::TripleO::Services::CertmongerUser
        - OS::TripleO::Services::Collectd
        - OS::TripleO::Services::Docker
        - OS::TripleO::Services::Fluentd
        - OS::TripleO::Services::Kernel
        - OS::TripleO::Services::Ntp
        - OS::TripleO::Services::ContainersLogrotateCrond
        - OS::TripleO::Services::SensuClient
        - OS::TripleO::Services::Snmp
        - OS::TripleO::Services::Timezone
        - OS::TripleO::Services::TripleoFirewall
        - OS::TripleO::Services::TripleoPackages
        - OS::TripleO::Services::Tuned
        # Role-Specific Services
        - OS::TripleO::Services::CephMds
        - OS::TripleO::Services::CephClient 1
    1
    Ceph MDS 서비스에는 Ceph MON 또는 Ceph Client 서비스에서 설정할 수 있는 관리자 인증 키가 필요합니다. Ceph MON 서비스 없이 전용 노드에 Ceph MDS를 배포하고 있으므로 역할에 Ceph 클라이언트 서비스를 포함합니다.
  4. openstack flavor create 명령을 사용하여 이 역할에 사용할 ceph-mds 라는 새 플레이버를 정의합니다.

    $ openstack flavor create --id auto --ram 6144 --disk 40 --vcpus 4 ceph-mds
    참고

    이 명령에 대한 자세한 내용을 보려면 openstack flavor create --help 를 실행하십시오.

  5. 이 플레이버를 ceph-mds 라는 새 프로필에 매핑합니다.

    $ openstack flavor set --property "cpu_arch"="x86_64" --property "capabilities:boot_option"="local" --property "capabilities:profile"="ceph-mds" ceph-mds
    참고

    이 명령에 대한 자세한 내용은 openstack flavor set --help 를 실행하십시오.

노드를 새 ceph-mds 프로필에 태그합니다.

$ ironic node-update UUID add properties/capabilities='profile:ceph-mds,boot_option:local'

노드의 태그 지정에 대한 자세한 내용은 2.4절. “수동으로 노드 태그 지정” 을 참조하십시오. 사용자 지정 역할 프로필에 대한 관련 정보는 프로필 태그 지정을 참조하십시오.

Red Hat logoGithubRedditYoutubeTwitter

자세한 정보

평가판, 구매 및 판매

커뮤니티

Red Hat 문서 정보

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

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

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

Red Hat 소개

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

© 2024 Red Hat, Inc.