diff --git a/inventory/group_vars/all.yml b/inventory/group_vars/all.yml
index 1c9853a143eff85edf9cb307d933e727037fcc68..b73fb66b2dfa73f81d8dc115b4399e416e86c2db 100644
--- a/inventory/group_vars/all.yml
+++ b/inventory/group_vars/all.yml
@@ -124,11 +124,13 @@ dns_server: "{{ kube_service_addresses|ipaddr('net')|ipaddr(2)|ipaddr('address')
 #    balance roundrobin
 # apiserver_loadbalancer_domain_name: "lb-apiserver.kubernetes.local"
 
-##Set these proxy values in order to update docker daemon to use proxies
-#http_proxy: ""
-#https_proxy: ""
-#no_proxy: ""
-
-##A string of extra options to pass to the docker daemon.
-##This string should be exactly as you wish it to appear.
-#docker_options: ""
+## Set these proxy values in order to update docker daemon to use proxies
+# http_proxy: ""
+# https_proxy: ""
+# no_proxy: ""
+
+## A string of extra options to pass to the docker daemon.
+## This string should be exactly as you wish it to appear.
+## An obvious use case is allowing insecure-registry access
+## to self hosted registries like so:
+docker_options: "--insecure-registry={{ kube_service_addresses }}"