mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-04 18:00:26 -07:00
Merge branch 'master' into update-tests
This commit is contained in:
commit
328694b913
3 changed files with 10 additions and 10 deletions
|
@ -1,10 +1,10 @@
|
|||
---
|
||||
profile: production
|
||||
parseable: true
|
||||
skip_list:
|
||||
- ANSIBLE0010
|
||||
use_default_rules: true
|
||||
verbosity: 1
|
||||
exclude_paths:
|
||||
- ./roles/gcp_http_lb/
|
||||
- ./tests/
|
||||
- ./plugins
|
||||
# Ignore submodule https://github.com/GoogleCloudPlatform/google-cloud-ops-agents-ansible
|
||||
- roles/google-cloud-ops-agents-ansible/
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
when: ansible_os_family == "Debian"
|
||||
|
||||
- name: Gcloud | Archive | RedHat | Ensure bash completion is installed
|
||||
ansible.builtin.yum:
|
||||
ansible.builtin.dnf:
|
||||
name:
|
||||
- bash-completion
|
||||
register: task_result
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
---
|
||||
- name: Gcloud | RHEL | Add an Apt signing key, uses whichever key is at the URL
|
||||
# https://cloud.google.com/sdk/docs/install#rpm
|
||||
- name: Gcloud | RHEL | Add a dnf signing key, uses whichever key is at the URL
|
||||
ansible.builtin.yum_repository:
|
||||
name: google-cloud-sdk
|
||||
description: Google Cloud SDK
|
||||
baseurl: https://packages.cloud.google.com/yum/repos/cloud-sdk-el7-x86_64
|
||||
baseurl: https://packages.cloud.google.com/yum/repos/cloud-sdk-el9-x86_64
|
||||
enabled: true
|
||||
gpgcheck: true
|
||||
repo_gpgcheck: true
|
||||
repo_gpgcheck: false
|
||||
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:
|
||||
ansible.builtin.dnf:
|
||||
name: google-cloud-sdk
|
||||
update_cache: "yes"
|
||||
register: task_result
|
||||
|
@ -21,7 +21,7 @@
|
|||
delay: 2
|
||||
|
||||
- name: Gcloud | Debian | Install the google-cloud-sdk additional components
|
||||
ansible.builtin.yum:
|
||||
ansible.builtin.dnf:
|
||||
name: google-cloud-sdk-{{ item }}
|
||||
update_cache: "yes"
|
||||
register: task_result
|
||||
|
|
Loading…
Add table
Reference in a new issue