Files
test_build/deployment.yaml
Bensch 4d7f91b116 init
2026-02-24 13:52:32 +00:00

23 lines
446 B
YAML

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