The page you navigated to does not exist, so we brought you to the closest page to it.
flytekit.core.pod_template
| Class |
Description |
PodTemplate |
Custom PodTemplate specification for a Task. |
| Property |
Type |
Description |
PRIMARY_CONTAINER_DEFAULT_NAME |
str |
|
TYPE_CHECKING |
bool |
|
def serialize_pod_template(
obj,
)
| Parameter |
Type |
Description |
obj |
|
|
Custom PodTemplate specification for a Task.
class PodTemplate(
pod_spec: typing.Optional[ForwardRef('V1PodSpec')],
primary_container_name: str,
labels: typing.Optional[typing.Dict[str, str]],
annotations: typing.Optional[typing.Dict[str, str]],
)
| Parameter |
Type |
Description |
pod_spec |
typing.Optional[ForwardRef('V1PodSpec')] |
|
primary_container_name |
str |
|
labels |
typing.Optional[typing.Dict[str, str]] |
|
annotations |
typing.Optional[typing.Dict[str, str]] |
|