<@ULVA73B9P> It is possible to set up memory and c...
# ask-marvin
s
@Marvin It is possible to set up memory and cpu requests for jobs run on kubernetes in base_job_template. Is it possible to guarantee disk space?
m
The Prefect documentation does not explicitly mention disk space requests in the context of the
base_job_template
for Kubernetes. However, disk space allocation in Kubernetes is typically managed through persistent volumes (PVs) and persistent volume claims (PVCs). To ensure disk space for your Prefect jobs running on Kubernetes, you can define a PVC and reference it in your job configuration. This would involve modifying your job template to include a volume and volumeMounts section that specifies the PVC. For more details on configuring Kubernetes infrastructure for Prefect, you can refer to the following documentation: - Prefect Work Pools - Kubernetes Infrastructure Examples If you require further customization, you might need to consult Kubernetes documentation on persistent volumes and claims.