We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fdeb81 commit df541b8Copy full SHA for df541b8
playbooks/pre_cloud.yaml
@@ -17,6 +17,20 @@
17
requirements: "Tests/kaas/requirements.txt"
18
when: kaas | bool
19
20
+ - name: Create local binary dir
21
+ ansible.builtin.file:
22
+ path: "~/.local/bin"
23
+ state: directory
24
+ recurse: true
25
+
26
+ - name: Install Sonobuoy
27
+ ansible.builtin.shell:
28
+ curl -L https://github.com/vmware-tanzu/sonobuoy/releases/download/v0.57.3/sonobuoy_0.57.3_linux_amd64.tar.gz | tar xz sonobuoy
29
+ args:
30
+ chdir: "~/.local/bin/"
31
+ creates: sonobuoy
32
+ when: kaas | bool
33
34
- name: Create cloud config dir
35
ansible.builtin.file:
36
path: "~/.config/openstack"
0 commit comments