We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f47195c commit 225f55dCopy full SHA for 225f55d
pmm_qa/tasks/install_pmm_client.yml
@@ -52,10 +52,16 @@
52
'
53
when: distro_family == "debian"
54
55
+- name: Install curl on RHEL-family containers
56
+ shell: |
57
+ docker exec --user root {{ container_name }} sh -c 'microdnf install -y microdnf'
58
+ when: distro_family == "rhel"
59
+ ignore_errors: true
60
+
61
- name: Install dependencies inside Debian-family container
62
shell: |
63
docker exec --user root {{ container_name }} sh -c '
- microdnf install -y \
64
+ apt install -y \
65
wget \
66
gnupg2 \
67
jq \
0 commit comments