Browse Source

Adds support for multiple architectures to yq (#9288)

pull/9296/head
ErmalKristo 2 years ago
committed by GitHub
parent
commit
b8b8b82ff4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/kubernetes-apps/argocd/tasks/main.yml

2
roles/kubernetes-apps/argocd/tasks/main.yml

@ -2,7 +2,7 @@
- name: Kubernetes Apps | Install yq
become: yes
get_url:
url: "https://github.com/mikefarah/yq/releases/download/v4.25.3/yq_linux_amd64"
url: "https://github.com/mikefarah/yq/releases/download/v4.25.3/yq_linux_{{ host_architecture }}"
dest: "{{ bin_dir }}/yq"
mode: '0755'

Loading…
Cancel
Save