ce5a11a374
When using both /run and /run/netns in docker container, mount propagation won't work when delete namespace after the containers are restarted. This PS makes /run mount as shared. Closes-Bug: #1616268 Change-Id: Ie16699e1b193b2bf1263d89ea634e89ea69add9e
20 lines
581 B
YAML
20 lines
581 B
YAML
---
|
|
- name: Running Kuryr bootstrap container
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_BOOTSTRAP:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
image: "{{ kuryr_image_full }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_kuryr"
|
|
restart_policy: "never"
|
|
volumes:
|
|
- "{{ node_config_directory }}/kuryr/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "/run:/run:shared"
|
|
- "/usr/lib/docker:/usr/lib/docker"
|