pin hvac version to 0.6.4 (#3692)

This commit is contained in:
Evgeny Zislis 2018-11-15 12:08:33 +02:00 committed by k8s-ci-robot
parent 17f07e2613
commit 29ee581067
2 changed files with 4 additions and 1 deletions

View file

@ -23,6 +23,9 @@ vault_version: 0.10.1
vault_binary_checksum: 66f0f1b0b221d664dd5913f8697409d7401df4bb2a19c7277e8fbad152063fae
vault_download_url: "https://releases.hashicorp.com/vault/{{ vault_version }}/vault_{{ vault_version }}_linux_{{ image_arch }}.zip"
# hvac==0.7.0 is broken at the moment
hvac_version: 0.6.4
# Arch of Docker images and needed packages
image_arch: "{{host_architecture}}"

View file

@ -12,7 +12,7 @@
- name: install hvac
pip:
name: "hvac"
name: "hvac=={{ hvac_version }}"
state: "present"
extra_args: "{{ pip_extra_args | default(omit) }}"