Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update saltminion install to use the new package repo location #1306

Merged
merged 5 commits into from
Oct 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 26 additions & 8 deletions ansible/tasks/internal/install-salt.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,47 @@
- name: Add apt repository for Saltstack (arm)
block:
- name: Ensure /etc/apt/keyrings directory exists
file:
path: /etc/apt/keyrings
state: directory
mode: '0755'

- name: salt gpg key
ansible.builtin.apt_key:
url: https://repo.saltproject.io/salt/py3/ubuntu/20.04/arm64/SALT-PROJECT-GPG-PUBKEY-2023.gpg
keyring: /etc/apt/trusted.gpg.d/salt-archive-keyring-2023-arm.gpg
ansible.builtin.get_url:
url: https://packages.broadcom.com/artifactory/api/security/keypair/SaltProjectKey/public
dest: /etc/apt/keyrings/salt-archive-keyring-2023.pgp
mode: '0644'

- name: salt apt repo
ansible.builtin.apt_repository:
repo: deb [signed-by=/etc/apt/trusted.gpg.d/salt-archive-keyring-2023-arm.gpg arch=arm64] https://repo.saltproject.io/salt/py3/ubuntu/20.04/arm64/{{ salt_minion_version }} focal main
repo: "deb [signed-by=/etc/apt/keyrings/salt-archive-keyring-2023.pgp arch=arm64] https://packages.broadcom.com/artifactory/saltproject-deb/ stable main"
filename: 'salt.list'
state: present
when: platform == "arm64"

- name: Add apt repository for Saltstack (amd)
block:
- name: Ensure /etc/apt/keyrings directory exists
file:
path: /etc/apt/keyrings
state: directory
mode: '0755'

- name: salt gpg key
ansible.builtin.apt_key:
url: https://repo.saltproject.io/salt/py3/ubuntu/20.04/amd64/SALT-PROJECT-GPG-PUBKEY-2023.gpg
keyring: /etc/apt/trusted.gpg.d/salt-archive-keyring-2023-amd.gpg
ansible.builtin.get_url:
url: https://packages.broadcom.com/artifactory/api/security/keypair/SaltProjectKey/public
dest: /etc/apt/keyrings/salt-archive-keyring-2023.pgp
mode: '0644'

- name: salt apt repo
ansible.builtin.apt_repository:
repo: deb [signed-by=/etc/apt/trusted.gpg.d/salt-archive-keyring-2023-amd.gpg arch=amd64] https://repo.saltproject.io/salt/py3/ubuntu/20.04/amd64/{{ salt_minon_version }} focal main
repo: "deb [signed-by=/etc/apt/keyrings/salt-archive-keyring-2023.pgp arch=amd64] https://packages.broadcom.com/artifactory/saltproject-deb/ stable main"
filename: 'salt.list'
state: present
when: platform == "amd64"

- name: Salt minion install
apt:
name: salt-minion
state: present
update_cache: yes
Loading