diff --git a/roles/gcloud/tasks/archive/command_completion.yml b/roles/gcloud/tasks/archive/command_completion.yml index 2772101..a130e33 100644 --- a/roles/gcloud/tasks/archive/command_completion.yml +++ b/roles/gcloud/tasks/archive/command_completion.yml @@ -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 diff --git a/roles/gcloud/tasks/package/redhat.yml b/roles/gcloud/tasks/package/redhat.yml index 8917561..156d545 100644 --- a/roles/gcloud/tasks/package/redhat.yml +++ b/roles/gcloud/tasks/package/redhat.yml @@ -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