From d1d8308b518f0b33c18fdf22fdc61020b60af908 Mon Sep 17 00:00:00 2001
From: Qiu Yu <qiuyu@ebaysf.com>
Date: Fri, 29 Jan 2016 14:56:50 -0700
Subject: [PATCH] Fix missing swift proxy server image in pull action

Add back missing swift proxy server image which was removed in Swift
shared image change.

TrivialFix

Change-Id: Icf13d4a1550192f73e266a6c6aa74f604ee4e77a
---
 ansible/roles/swift/tasks/pull.yml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/ansible/roles/swift/tasks/pull.yml b/ansible/roles/swift/tasks/pull.yml
index 459b388a6f..65cd6bb343 100644
--- a/ansible/roles/swift/tasks/pull.yml
+++ b/ansible/roles/swift/tasks/pull.yml
@@ -8,6 +8,13 @@
         inventory_hostname in groups['swift-container-server'] or
         inventory_hostname in groups['swift-object-server']
 
+- name: Pulling swift-proxy-server image
+  kolla_docker:
+    action: "pull_image"
+    common_options: "{{ docker_common_options }}"
+    image: "{{ swift_proxy_server_image_full }}"
+  when: inventory_hostname in groups['swift-proxy-server']
+
 - name: Pulling swift-account image
   kolla_docker:
     action: "pull_image"
-- 
GitLab