Changes

m
Line 164: Line 164:     
To restore a container from a checkpoint, specify the OCI image containing the checkpoint in the container's <code>image</code> field.
 
To restore a container from a checkpoint, specify the OCI image containing the checkpoint in the container's <code>image</code> field.
 +
 +
==== Example ====
 +
<pre>
 +
cat > restore-pod.yaml <<'EOF'
 +
apiVersion: v1
 +
kind: Pod
 +
metadata:
 +
  name: counters
 +
spec:
 +
  containers:
 +
    - name: counter
 +
      image: quay.io/foo/bar:latest
 +
EOF
 +
</pre>
 +
 +
<pre>
 +
kubectl apply -f restore-pod.yaml
 +
</pre>
509

edits