conventions.io

Tech Challenge

2026-07-06

☸️

Daily Tech Challenge

Kubernetes

medium
Question 1 of 5

A Job is created with the pod template below, which sets restartPolicy: Always. What happens when you apply it?

Example
apiVersion: batch/v1
kind: Job
metadata:
  name: pi
spec:
  template:
    spec:
      restartPolicy: Always
      containers:
      - name: pi
        image: perl:5.34
        command: ["perl", "-Mbignum=bpi", "-wle", "print bpi(2000)"]

Monday, July 6, 2026 · A new challenge drops every day