* podman 5.5.2 * passt 2025_06_11.0293c6f * alpine 3.22 base image * Go-based binaries built using Go 1.24 * Rust-based binaries built using Rust 1.87
15 lines
214 B
YAML
15 lines
214 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: mypod
|
|
spec:
|
|
containers:
|
|
- name: build
|
|
image: alpine:3.22
|
|
command: ["/bin/sh"]
|
|
args:
|
|
- -c
|
|
- |
|
|
echo sleeping ...
|
|
exec sleep infinity
|