diff --git a/roles/kubernetes/preinstall/tasks/verify-settings.yml b/roles/kubernetes/preinstall/tasks/verify-settings.yml
index b35946407d762423ff24aafa3e44349525f90876..9a04e2016a015fce97694a290955a1ac0ae45656 100644
--- a/roles/kubernetes/preinstall/tasks/verify-settings.yml
+++ b/roles/kubernetes/preinstall/tasks/verify-settings.yml
@@ -23,7 +23,8 @@
 
 - name: Stop if incompatible network plugin and cloudprovider
   assert:
-    that: network_plugin != calico
+    that: network_plugin != 'calico'
+    msg: "Azure and Calico are not compatible. See https://github.com/projectcalico/calicoctl/issues/949 for details."
   when: cloud_provider is defined and cloud_provider == 'azure'
   ignore_errors: "{{ ignore_assert_errors }}"