Reference
PachCTL

Pod Spec PPS

Set fields in the Pod Spec that aren't explicitly exposed.

March 29, 2023

â„šī¸

For a single-page view of all PPS options, go to the PPS series page.

Spec #


"pod_spec": string,

Behavior #

pod_spec is an advanced option that allows you to set fields in the pod spec that haven’t been explicitly exposed in the rest of the pipeline spec. A good way to figure out what JSON you should pass is to create a pod in Kubernetes with the proper settings, then do:

kubectl get po/<pod-name> -o json | jq .spec

this will give you a correctly formatted piece of JSON, you should then remove the extraneous fields that Kubernetes injects or that can be set else where.

The JSON is applied after the other parameters for the pod_spec have already been set as a JSON Merge Patch. This means that you can modify things such as the storage and user containers.