Skip to content
Snippets Groups Projects
Commit 391b0691 authored by Will Rouesnel's avatar Will Rouesnel
Browse files

Volume specification for ironic-api was invalid.

This prevented deploying ironic-api using kolla.

Changing to a single entry list fixes the problem and allows the deploy to
succeed.

Closes-Bug: #1606702

Change-Id: I98c2b06ab08e3b8afcaeb712be377cb363220283
parent 7c095c0a
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,8 @@
common_options: "{{ docker_common_options }}"
image: "{{ ironic_api_image_full }}"
name: "ironic_api"
volumes: "{{ node_config_directory }}/ironic-api/:{{ container_config_directory }}/:ro"
volumes:
- "{{ node_config_directory }}/ironic-api/:{{ container_config_directory }}/:ro"
when: inventory_hostname in groups['ironic-api']
- name: Starting ironic-conductor container
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment