Companion repository for the article "Build multi-architecture container images with Kubernetes, Tekton and Buildah"
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
494 B

apiVersion: apps/v1
kind: DaemonSet
metadata:
name: multiarch-qemu
spec:
selector:
matchLabels:
name: multiarch-qemu
template:
metadata:
labels:
name: multiarch-qemu
spec:
containers:
- name: multiarch-qemu
image: docker.io/multiarch/qemu-user-static:6.1.0-8
command:
- /bin/sh
- -c
- /register --reset --persistent yes && while :; do sleep 3600; done
securityContext:
privileged: true