mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
Install google-cloud-cli instead of google-cloud-sdk
This commit is contained in:
parent
d1cf030d93
commit
b1a75cf383
2 changed files with 8 additions and 5 deletions
|
@ -8,6 +8,9 @@ galaxy_info:
|
||||||
platforms:
|
platforms:
|
||||||
- name: Ubuntu
|
- name: Ubuntu
|
||||||
versions:
|
versions:
|
||||||
|
- focal
|
||||||
|
- jammy
|
||||||
|
- noble
|
||||||
- precise
|
- precise
|
||||||
- trusty
|
- trusty
|
||||||
- xenial
|
- xenial
|
||||||
|
|
|
@ -9,20 +9,20 @@
|
||||||
ansible.builtin.apt_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
|
state: present
|
||||||
filename: google-cloud-sdk
|
filename: google-cloud-cli
|
||||||
|
|
||||||
- name: Gcloud | Debian | Install the google-cloud-sdk package
|
- name: Gcloud | Debian | Install the google-cloud-cli package
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
name: google-cloud-sdk
|
name: google-cloud-cli
|
||||||
update_cache: "yes"
|
update_cache: "yes"
|
||||||
register: task_result
|
register: task_result
|
||||||
until: task_result is success
|
until: task_result is success
|
||||||
retries: 10
|
retries: 10
|
||||||
delay: 2
|
delay: 2
|
||||||
|
|
||||||
- name: Gcloud | Debian | Install the google-cloud-sdk additional components
|
- name: Gcloud | Debian | Install the google-cloud-cli additional components
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
name: google-cloud-sdk-{{ item }}
|
name: google-cloud-cli-{{ item }}
|
||||||
update_cache: "yes"
|
update_cache: "yes"
|
||||||
register: task_result
|
register: task_result
|
||||||
until: task_result is success
|
until: task_result is success
|
||||||
|
|
Loading…
Add table
Reference in a new issue