mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 02:40:29 -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.
15 lines
385 B
YAML
15 lines
385 B
YAML
---
|
|
- name: Converge
|
|
hosts: all
|
|
pre_tasks:
|
|
- name: Install gpg for apt_key
|
|
ansible.builtin.apt:
|
|
name: gnupg
|
|
update_cache: true
|
|
when: ansible_os_family | lower == "debian"
|
|
roles:
|
|
- role: google.cloud.gcloud
|
|
gcloud_install_type: archive
|
|
gcloud_command_completion: true
|
|
gcloud_additional_components:
|
|
- cloud-build-local
|