d31bc3a573
This commits adds one service for the agent, and one other for the analyzer. When using multiple controller nodes, the analyzers are deployed in cluster mode, with a single etcd node. These services are deployed as containers using a Mistral workflow with Ansible. Depends-on: I0442d2a75a4931a4bd8399c58ff6b016d5486945 Change-Id: I56c53158f9ed294dac95dbd7087d057e427f16a1
69 lines
2.1 KiB
YAML
69 lines
2.1 KiB
YAML
heat_template_version: pike
|
|
|
|
description: >
|
|
Skydive agent service.
|
|
|
|
parameters:
|
|
ServiceData:
|
|
default: {}
|
|
description: Dictionary packing service data
|
|
type: json
|
|
ServiceNetMap:
|
|
default: {}
|
|
description: Mapping of service_name -> network name. Typically set
|
|
via parameter_defaults in the resource registry. This
|
|
mapping overrides those in ServiceNetMapDefaults.
|
|
type: json
|
|
DefaultPasswords:
|
|
default: {}
|
|
type: json
|
|
RoleName:
|
|
default: ''
|
|
description: Role name on which the service is applied
|
|
type: string
|
|
RoleParameters:
|
|
default: {}
|
|
description: Parameters specific to the role
|
|
type: json
|
|
EndpointMap:
|
|
default: {}
|
|
description: Mapping of service endpoint -> protocol. Typically set
|
|
via parameter_defaults in the resource registry.
|
|
type: json
|
|
DockerSkydiveAgentImage:
|
|
description: image
|
|
type: string
|
|
default: 'tripleoupstream/centos-binary-skydive-agent:latest'
|
|
|
|
resources:
|
|
SkydiveBase:
|
|
type: ./skydive-base.yaml
|
|
properties:
|
|
ServiceData: {get_param: ServiceData}
|
|
ServiceNetMap: {get_param: ServiceNetMap}
|
|
DefaultPasswords: {get_param: DefaultPasswords}
|
|
EndpointMap: {get_param: EndpointMap}
|
|
RoleName: {get_param: RoleName}
|
|
RoleParameters: {get_param: RoleParameters}
|
|
DockerSkydiveImage: {get_param: DockerSkydiveAgentImage}
|
|
|
|
outputs:
|
|
role_data:
|
|
description: Role data for the Skydive agent service.
|
|
value:
|
|
service_name: skydive_agent
|
|
upgrade_tasks: []
|
|
step_config: ''
|
|
puppet_config:
|
|
config_image: ''
|
|
config_volume: ''
|
|
step_config: ''
|
|
docker_config: {}
|
|
workflow_tasks: {get_attr: [SkydiveBase, role_data, workflow_tasks]}
|
|
config_settings:
|
|
skydive_agent_ansible_vars:
|
|
map_merge:
|
|
- {get_attr: [SkydiveBase, role_data, config_settings, skydive_common_ansible_vars]}
|
|
- skydive_agent_docker_image: {get_attr: [SkydiveBase, role_data, config_settings, skydive_docker_image]}
|
|
skydive_agent_docker_command: "/usr/bin/skydive agent --conf /etc/skydive.yml"
|