mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-08-07 22:54:30 -07:00
fix: upgrade ansible version, address test and lint errors
This commit is contained in:
parent
c15b47250d
commit
08ada5354d
216 changed files with 4394 additions and 4262 deletions
|
@ -7,13 +7,13 @@
|
|||
|
||||
- name: Gcloud | Debian | Add the gcloud repository
|
||||
ansible.builtin.apt_repository:
|
||||
repo: "deb {{ gcloud_apt_url }} {{ gcloud_apt_repo }} main"
|
||||
repo: deb {{ gcloud_apt_url }} {{ gcloud_apt_repo }} main
|
||||
state: present
|
||||
filename: google-cloud-sdk
|
||||
|
||||
- name: Gcloud | Debian | Install the google-cloud-sdk package
|
||||
ansible.builtin.apt:
|
||||
name: "google-cloud-sdk"
|
||||
name: google-cloud-sdk
|
||||
update_cache: "yes"
|
||||
register: task_result
|
||||
until: task_result is success
|
||||
|
@ -22,7 +22,7 @@
|
|||
|
||||
- name: Gcloud | Debian | Install the google-cloud-sdk additional components
|
||||
ansible.builtin.apt:
|
||||
name: "google-cloud-sdk-{{ item }}"
|
||||
name: google-cloud-sdk-{{ item }}
|
||||
update_cache: "yes"
|
||||
register: task_result
|
||||
until: task_result is success
|
||||
|
|
|
@ -4,16 +4,16 @@
|
|||
name: google-cloud-sdk
|
||||
description: Google Cloud SDK
|
||||
baseurl: https://packages.cloud.google.com/yum/repos/cloud-sdk-el7-x86_64
|
||||
enabled: yes
|
||||
gpgcheck: yes
|
||||
repo_gpgcheck: yes
|
||||
enabled: true
|
||||
gpgcheck: true
|
||||
repo_gpgcheck: true
|
||||
gpgkey:
|
||||
- https://packages.cloud.google.com/yum/doc/yum-key.gpg
|
||||
- https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg
|
||||
|
||||
- name: Gcloud | RHEL | Install the google-cloud-sdk package
|
||||
ansible.builtin.yum:
|
||||
name: "google-cloud-sdk"
|
||||
name: google-cloud-sdk
|
||||
update_cache: "yes"
|
||||
register: task_result
|
||||
until: task_result is success
|
||||
|
@ -22,7 +22,7 @@
|
|||
|
||||
- name: Gcloud | Debian | Install the google-cloud-sdk additional components
|
||||
ansible.builtin.yum:
|
||||
name: "google-cloud-sdk-{{ item }}"
|
||||
name: google-cloud-sdk-{{ item }}
|
||||
update_cache: "yes"
|
||||
register: task_result
|
||||
until: task_result is success
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue