This commit is contained in:
Bensch
2026-02-24 13:52:32 +00:00
parent f200af753d
commit 4d7f91b116
5 changed files with 114 additions and 0 deletions

22
deployment.yaml Normal file
View File

@@ -0,0 +1,22 @@
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