Merge "Enable libvirtd_config puppet tag in nova-libvirtd docker service"
[apex-tripleo-heat-templates.git] / docker / services / nova-libvirt.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack Libvirt Service
5
6 parameters:
7   DockerNovaLibvirtImage:
8     description: image
9     type: string
10   # we configure libvirt via the nova-compute container due to coupling
11   # in the puppet modules
12   DockerNovaLibvirtConfigImage:
13     description: The container image to use for the nova_libvirt config_volume
14     type: string
15   EnablePackageInstall:
16     default: 'false'
17     description: Set to true to enable package installation at deploy time
18     type: boolean
19   ServiceData:
20     default: {}
21     description: Dictionary packing service data
22     type: json
23   ServiceNetMap:
24     default: {}
25     description: Mapping of service_name -> network name. Typically set
26                  via parameter_defaults in the resource registry.  This
27                  mapping overrides those in ServiceNetMapDefaults.
28     type: json
29   DefaultPasswords:
30     default: {}
31     type: json
32   RoleName:
33     default: ''
34     description: Role name on which the service is applied
35     type: string
36   RoleParameters:
37     default: {}
38     description: Parameters specific to the role
39     type: json
40   EndpointMap:
41     default: {}
42     description: Mapping of service endpoint -> protocol. Typically set
43                  via parameter_defaults in the resource registry.
44     type: json
45   EnableInternalTLS:
46     type: boolean
47     default: false
48   UseTLSTransportForLiveMigration:
49     type: boolean
50     default: true
51     description: If set to true and if EnableInternalTLS is enabled, it will
52                  set the libvirt URI's transport to tls and configure the
53                  relevant keys for libvirt.
54   DockerNovaMigrationSshdPort:
55     default: 2022
56     description: Port that dockerized nova migration target sshd service
57                  binds to.
58     type: number
59
60
61 conditions:
62
63   use_tls_for_live_migration:
64     and:
65     - equals:
66       - {get_param: EnableInternalTLS}
67       - true
68     - equals:
69       - {get_param: UseTLSTransportForLiveMigration}
70       - true
71
72 resources:
73
74   ContainersCommon:
75     type: ./containers-common.yaml
76
77   NovaLibvirtBase:
78     type: ../../puppet/services/nova-libvirt.yaml
79     properties:
80       EndpointMap: {get_param: EndpointMap}
81       ServiceData: {get_param: ServiceData}
82       ServiceNetMap: {get_param: ServiceNetMap}
83       DefaultPasswords: {get_param: DefaultPasswords}
84       RoleName: {get_param: RoleName}
85       RoleParameters: {get_param: RoleParameters}
86       MigrationSshPort: {get_param: DockerNovaMigrationSshdPort}
87
88 outputs:
89   role_data:
90     description: Role data for the Libvirt service.
91     value:
92       service_name: {get_attr: [NovaLibvirtBase, role_data, service_name]}
93       config_settings:
94         get_attr: [NovaLibvirtBase, role_data, config_settings]
95       step_config: &step_config
96         get_attr: [NovaLibvirtBase, role_data, step_config]
97       puppet_config:
98         config_volume: nova_libvirt
99         puppet_tags: libvirtd_config,nova_config,file,exec
100         step_config: *step_config
101         config_image: {get_param: DockerNovaLibvirtConfigImage}
102       kolla_config:
103         /var/lib/kolla/config_files/nova_libvirt.json:
104           command:
105             if:
106               - use_tls_for_live_migration
107               - /usr/sbin/libvirtd --listen --config /etc/libvirt/libvirtd.conf
108               - /usr/sbin/libvirtd --config /etc/libvirt/libvirtd.conf
109           config_files:
110             - source: "/var/lib/kolla/config_files/src/*"
111               dest: "/"
112               merge: true
113               preserve_properties: true
114             - source: "/var/lib/kolla/config_files/src-ceph/"
115               dest: "/etc/ceph/"
116               merge: true
117               preserve_properties: true
118           permissions:
119             - path: /var/log/nova
120               owner: nova:nova
121               recurse: true
122       docker_config:
123         step_3:
124           nova_libvirt:
125             image: {get_param: DockerNovaLibvirtImage}
126             net: host
127             pid: host
128             privileged: true
129             restart: always
130             volumes:
131               list_concat:
132                 - {get_attr: [ContainersCommon, volumes]}
133                 -
134                   - /var/lib/kolla/config_files/nova_libvirt.json:/var/lib/kolla/config_files/config.json:ro
135                   - /var/lib/config-data/puppet-generated/nova_libvirt/:/var/lib/kolla/config_files/src:ro
136                   - /etc/ceph:/var/lib/kolla/config_files/src-ceph:ro
137                   - /lib/modules:/lib/modules:ro
138                   - /dev:/dev
139                   - /run:/run
140                   - /sys/fs/cgroup:/sys/fs/cgroup
141                   - /var/lib/nova:/var/lib/nova
142                   - /etc/libvirt/secrets:/etc/libvirt/secrets
143                   # Needed to use host's virtlogd
144                   - /var/run/libvirt:/var/run/libvirt
145                   - /var/lib/libvirt:/var/lib/libvirt
146                   - /etc/libvirt/qemu:/etc/libvirt/qemu
147                   - /var/log/libvirt/qemu:/var/log/libvirt/qemu:ro
148                   - /var/log/containers/nova:/var/log/nova
149             environment:
150               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
151       host_prep_tasks:
152         - name: create libvirt persistent data directories
153           file:
154             path: "{{ item }}"
155             state: directory
156           with_items:
157             - /etc/libvirt/secrets
158             - /etc/libvirt/qemu
159             - /var/lib/libvirt
160             - /var/log/containers/nova
161         - name: ensure ceph configurations exist
162           file:
163             path: /etc/ceph
164             state: directory
165         - name: set enable_package_install fact
166           set_fact:
167             enable_package_install: {get_param: EnablePackageInstall}
168         # We use virtlogd on host, so when using Deployed Server
169         # feature, we need to ensure libvirt is installed.
170         - name: install libvirt-daemon
171           package:
172             name: libvirt-daemon
173             state: present
174           when: enable_package_install
175         - name: start virtlogd socket
176           service:
177             name: virtlogd.socket
178             state: started
179             enabled: yes
180           when: enable_package_install
181       upgrade_tasks:
182         - name: Stop and disable libvirtd service
183           tags: step2
184           service: name=libvirtd state=stopped enabled=no