[SEBA-494] Setting required core version

Change-Id: Ib09474e374ff61d59c2c141ca66a96d367f34130
diff --git a/xos/synchronizer/pull_steps/pull_pods.py b/xos/synchronizer/pull_steps/pull_pods.py
index 961fdb8..661d304 100644
--- a/xos/synchronizer/pull_steps/pull_pods.py
+++ b/xos/synchronizer/pull_steps/pull_pods.py
@@ -186,6 +186,7 @@
                 name = container.image
                 tag = "master"
 
+            # FIXME image.name is unique, but tag may differ. Update validation in the Image model so that the combination of name and tag is unique
             existing_images = Image.objects.filter(name=name, tag=tag, kind="container")
             if not existing_images:
                 i = Image(name=name, tag=tag, kind="container", xos_managed=False)