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 9efdcc0 commit 4c9113fCopy full SHA for 4c9113f
roles/kolla-build-deps/tasks/main.yml
@@ -62,3 +62,9 @@
62
path: "{{ '/run/docker.sock' if container_engine == 'docker' else '/run/podman/podman.sock' }}"
63
mode: "0666"
64
become: true
65
+
66
+- name: Run multiarch/qemu-user-static image to support cross-arch build
67
+ ansible.builtin.command:
68
+ cmd: "{{ container_engine }} run --rm --privileged multiarch/qemu-user-static --reset -p yes"
69
+ become: true
70
+ when: ansible_facts.architecture != (base_arch | default('x86_64'))
0 commit comments