Use 'options' instead of 'tar_options' on newer salt

Change-Id: I403da36d0171a3811c9a3e1eb68e7962343bb20f
diff --git a/helm/client.sls b/helm/client.sls
index a4955f7..4f83105 100644
--- a/helm/client.sls
+++ b/helm/client.sls
@@ -13,7 +13,11 @@
     - source: {{ client.download_url }}
     - source_hash: {{ client.download_hash }}
     - archive_format: tar
+    {%- if grains['saltversioninfo'] < [2016, 11] %}
     - tar_options: v
+    {%- else %}
+    - options: v
+    {%- endif %}
     - if_missing: {{ helm_tmp }}/linux-amd64/helm
     - require:
       - file: {{ helm_tmp }}