in python-batch/gke_batch/batch.py [0:0]
def _create_volume_mounts(self):
# Create Volume Mounts
# Get volume settings
mount_settings = get_setting("volume_mount", settings)
volume_mount1 = kubernetes.client.V1VolumeMount(
name="gcs-fuse-csi-ephemeral",
mount_path=mount_settings["mount_path"]
)
return([volume_mount1])