Skip to content

Commit

Permalink
fix(train): use name from created configmap
Browse files Browse the repository at this point in the history
  • Loading branch information
akhileshh authored and supersergiy committed Jan 7, 2025
1 parent db5ad1d commit 932f113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zetta_utils/training/lightning/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def _spec_configmap_vol_and_ctx(
)

configmap_projection = k8s_client.V1ConfigMapProjection(
name=run.RUN_ID,
name=configmap.metadata.name,
items=[k8s_client.V1KeyToPath(key=f"{spec}.cue", path=f"{spec}.cue") for spec in specs],
)

Expand Down

0 comments on commit 932f113

Please sign in to comment.