We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41e3cd0 commit 728180dCopy full SHA for 728180d
1 file changed
examples/containers/container_deployments_example.py
@@ -96,9 +96,16 @@ def main() -> None:
96
path="/health"
97
),
98
volume_mounts=[
99
+ # Shared memory volume
100
VolumeMount(
101
type=VolumeMountType.SCRATCH,
102
mount_path="/data"
103
+ ),
104
+ # Fileset secret
105
+ VolumeMount(
106
+ type=VolumeMountType.SECRET,
107
+ mount_path="/path/to/mount",
108
+ name="my-fileset-secret" # This fileset secret must be created beforehand
109
)
110
],
111
env=[
0 commit comments