/ server / opensandbox_server / examples / e2e.batchsandbox-template.yaml
e2e.batchsandbox-template.yaml
 1  # E2E-only BatchSandbox template (not used in production defaults).
 2  # Bundled in the server image for scripts/python-k8s-e2e*.sh; config.toml selects this path.
 3  #
 4  # Faster Pod teardown in Kind/CI: skip the default 30s graceful termination window.
 5  # Do not use for real workloads where graceful shutdown matters.
 6  
 7  # Metadata template (will be merged with runtime-generated metadata)
 8  metadata:
 9  # Spec template
10  spec:
11    replicas: 1
12    template:
13      spec:
14        terminationGracePeriodSeconds: 0
15        restartPolicy: Never
16        tolerations:
17          - operator: "Exists"