apiVersion: apps/v1 kind: Deployment metadata: name: buildkitd spec: replicas: 1 selector: matchLabels: app: buildkitd template: metadata: labels: app: buildkitd spec: containers: - name: buildkitd image: moby/buildkit:latest args: ["--addr", "tcp://0.0.0.0:1234"] securityContext: privileged: true ports: - containerPort: 1234