mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-07-31 00:51:31 -07:00
Ansible-lint is required for Ansible collection certification for Automation Hub. gcsfuse had no metadata associated with it, failing the Ansible Hub upload.
14 lines
304 B
YAML
14 lines
304 B
YAML
---
|
|
- name: Converge
|
|
hosts: all
|
|
pre_tasks:
|
|
- name: Update package cache
|
|
ansible.builtin.package:
|
|
update_cache: "yes"
|
|
changed_when: false
|
|
register: task_result
|
|
until: task_result is success
|
|
retries: 10
|
|
delay: 2
|
|
roles:
|
|
- role: google.cloud.gcsfuse
|