Merge "Add PCI to nova compute container for passthrough support"
[apex-tripleo-heat-templates.git] / docker / services / nova-compute.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack containerized Nova Compute service
5
6 parameters:
7   DockerNovaComputeImage:
8     description: image
9     type: string
10   DockerNovaLibvirtConfigImage:
11     description: The container image to use for the nova_libvirt config_volume
12     type: string
13   ServiceData:
14     default: {}
15     description: Dictionary packing service data
16     type: json
17   ServiceNetMap:
18     default: {}
19     description: Mapping of service_name -> network name. Typically set
20                  via parameter_defaults in the resource registry.  This
21                  mapping overrides those in ServiceNetMapDefaults.
22     type: json
23   DefaultPasswords:
24     default: {}
25     type: json
26   RoleName:
27     default: ''
28     description: Role name on which the service is applied
29     type: string
30   RoleParameters:
31     default: {}
32     description: Parameters specific to the role
33     type: json
34   EndpointMap:
35     default: {}
36     description: Mapping of service endpoint -> protocol. Typically set
37                  via parameter_defaults in the resource registry.
38     type: json
39   DockerNovaMigrationSshdPort:
40     default: 2022
41     description: Port that dockerized nova migration target sshd service
42                  binds to.
43     type: number
44
45 resources:
46
47   ContainersCommon:
48     type: ./containers-common.yaml
49
50   NovaComputeBase:
51     type: ../../puppet/services/nova-compute.yaml
52     properties:
53       EndpointMap: {get_param: EndpointMap}
54       ServiceData: {get_param: ServiceData}
55       ServiceNetMap: {get_param: ServiceNetMap}
56       DefaultPasswords: {get_param: DefaultPasswords}
57       RoleName: {get_param: RoleName}
58       RoleParameters: {get_param: RoleParameters}
59       MigrationSshPort: {get_param: DockerNovaMigrationSshdPort}
60
61 outputs:
62   role_data:
63     description: Role data for the Nova Compute service.
64     value:
65       service_name: {get_attr: [NovaComputeBase, role_data, service_name]}
66       config_settings:
67         get_attr: [NovaComputeBase, role_data, config_settings]
68       step_config: &step_config
69         get_attr: [NovaComputeBase, role_data, step_config]
70       puppet_config:
71         config_volume: nova_libvirt
72         puppet_tags: nova_config,nova_paste_api_ini
73         step_config: *step_config
74         config_image: {get_param: DockerNovaLibvirtConfigImage}
75       kolla_config:
76         /var/lib/kolla/config_files/nova_compute.json:
77           command: /usr/bin/nova-compute --config-file /etc/nova/nova.conf --config-file /etc/nova/rootwrap.conf
78           config_files:
79             - source: "/var/lib/kolla/config_files/src/*"
80               dest: "/"
81               merge: true
82               preserve_properties: true
83             - source: "/var/lib/kolla/config_files/src-iscsid/*"
84               dest: "/"
85               merge: true
86               preserve_properties: true
87             - source: "/var/lib/kolla/config_files/src-ceph/"
88               dest: "/etc/ceph/"
89               merge: true
90               preserve_properties: true
91           permissions:
92             - path: /var/log/nova
93               owner: nova:nova
94               recurse: true
95             - path: /var/lib/nova
96               owner: nova:nova
97               recurse: true
98       docker_config:
99         # FIXME: run discover hosts here
100         step_4:
101           nova_compute:
102             image: &nova_compute_image {get_param: DockerNovaComputeImage}
103             net: host
104             privileged: true
105             user: nova
106             restart: always
107             volumes:
108               list_concat:
109                 - {get_attr: [ContainersCommon, volumes]}
110                 -
111                   - /var/lib/kolla/config_files/nova_compute.json:/var/lib/kolla/config_files/config.json:ro
112                   - /var/lib/config-data/puppet-generated/nova_libvirt/:/var/lib/kolla/config_files/src:ro
113                   - /var/lib/config-data/puppet-generated/iscsid/:/var/lib/kolla/config_files/src-iscsid:ro
114                   - /etc/ceph:/var/lib/kolla/config_files/src-ceph:ro
115                   - /dev:/dev
116                   - /lib/modules:/lib/modules:ro
117                   - /run:/run
118                   - /var/lib/nova:/var/lib/nova
119                   - /var/lib/libvirt:/var/lib/libvirt
120                   - /var/log/containers/nova:/var/log/nova
121                   - /sys/class/net:/sys/class/net
122                   - /sys/bus/pci:/sys/bus/pci
123             environment:
124              - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
125       host_prep_tasks:
126         - name: create persistent directories
127           file:
128             path: "{{ item }}"
129             state: directory
130           with_items:
131             - /var/log/containers/nova
132             - /var/lib/nova
133             - /var/lib/libvirt
134         - name: ensure ceph configurations exist
135           file:
136             path: /etc/ceph
137             state: directory
138       upgrade_tasks:
139         - name: Stop and disable nova-compute service
140           tags: step2
141           service: name=openstack-nova-compute state=stopped enabled=no