--- project_name: "kuryr" # NOTE(huikang, apuimedo): when you request a driver in a docker operation, such # as docker network create, docker searches /usr/lib/docker or /etc/docker # subdirs for network/storage plugin specs or json definitions. so it's either # have ansible place the file there, or volume mount it and let the container # place the file there kuryr_services: kuryr: container_name: kuryr group: compute enabled: True image: "{{ kuryr_image_full }}" privileged: True volumes: - "{{ node_config_directory }}/kuryr/:{{ container_config_directory }}/:ro" - "/etc/localtime:/etc/localtime:ro" - "/run:/run:shared" - "/usr/lib/docker:/usr/lib/docker" #################### # Docker #################### kuryr_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-kuryr-libnetwork" kuryr_tag: "{{ openstack_release }}" kuryr_image_full: "{{ kuryr_image }}:{{ kuryr_tag }}" #################### # OpenStack #################### kuryr_logging_debug: "{{ openstack_logging_debug }}" kuryr_keystone_user: "kuryr" openstack_kuryr_auth: "{{ openstack_auth }}"