27 lines
530 B
YAML
27 lines
530 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: buildkitd
|
|
spec:
|
|
containers:
|
|
- name: buildkitd
|
|
image: moby/buildkit:master
|
|
readinessProbe:
|
|
exec:
|
|
command:
|
|
- buildctl
|
|
- debug
|
|
- workers
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 30
|
|
livenessProbe:
|
|
exec:
|
|
command:
|
|
- buildctl
|
|
- debug
|
|
- workers
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 30
|
|
securityContext:
|
|
privileged: true
|