Merge branch 'master' into update-tests

This commit is contained in:
Chris Hawk 2024-07-26 15:17:57 -07:00
commit 328694b913
3 changed files with 10 additions and 10 deletions

View file

@ -1,10 +1,10 @@
--- ---
profile: production
parseable: true parseable: true
skip_list: skip_list:
- ANSIBLE0010 - ANSIBLE0010
use_default_rules: true use_default_rules: true
verbosity: 1 verbosity: 1
exclude_paths: exclude_paths:
- ./roles/gcp_http_lb/ # Ignore submodule https://github.com/GoogleCloudPlatform/google-cloud-ops-agents-ansible
- ./tests/ - roles/google-cloud-ops-agents-ansible/
- ./plugins

View file

@ -10,7 +10,7 @@
when: ansible_os_family == "Debian" when: ansible_os_family == "Debian"
- name: Gcloud | Archive | RedHat | Ensure bash completion is installed - name: Gcloud | Archive | RedHat | Ensure bash completion is installed
ansible.builtin.yum: ansible.builtin.dnf:
name: name:
- bash-completion - bash-completion
register: task_result register: task_result

View file

@ -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: ansible.builtin.yum_repository:
name: google-cloud-sdk name: google-cloud-sdk
description: 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 enabled: true
gpgcheck: true gpgcheck: true
repo_gpgcheck: true repo_gpgcheck: false
gpgkey: gpgkey:
- https://packages.cloud.google.com/yum/doc/yum-key.gpg
- https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg - https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg
- name: Gcloud | RHEL | Install the google-cloud-sdk package - name: Gcloud | RHEL | Install the google-cloud-sdk package
ansible.builtin.yum: ansible.builtin.dnf:
name: google-cloud-sdk name: google-cloud-sdk
update_cache: "yes" update_cache: "yes"
register: task_result register: task_result
@ -21,7 +21,7 @@
delay: 2 delay: 2
- name: Gcloud | Debian | Install the google-cloud-sdk additional components - name: Gcloud | Debian | Install the google-cloud-sdk additional components
ansible.builtin.yum: ansible.builtin.dnf:
name: google-cloud-sdk-{{ item }} name: google-cloud-sdk-{{ item }}
update_cache: "yes" update_cache: "yes"
register: task_result register: task_result