(인스턴스실행) 6-1-5. Orchestration 인스턴스 시작 - 템플릿 만들기
페이지 정보
본문
오케스트레이션 서비스가 포함된 환경에서는 인스턴스를 시작하는 스택을 만들 수 있습니다.
템플릿 만들기
오케스트레이션 서비스는 템플릿을 사용하여 스택을 설명합니다.
다음 내용으로 demo-template.yml 파일을 만듭니다.
heat_template_version: 2015-10-15
description: Launch a basic instance with CirrOS image using the ``m1.tiny`` flavor, ``mykey`` key, and one network.
parameters:
NetID:
type: string
description: Network ID to use for the instance.
resources:
server:
type: OS::Nova::Server
properties:
image: cirros
flavor: m1.tiny
key_name: mykey
networks:
- network: { get_param: NetID }
outputs:
instance_name:
description: Name of the instance.
value: { get_attr: [ server, name ] }
instance_ip:
description: IP address of the instance.
value: { get_attr: [ server, first_address ] }
- 다음글(인스턴스실행) 6-1-3. Orchestration 작동확인 24.12.18
댓글목록
등록된 댓글이 없습니다.