Skip to content

Commit

Permalink
fix: use root id
Browse files Browse the repository at this point in the history
Signed-off-by: Vladislav Sukhin <[email protected]>
  • Loading branch information
vsukhin committed Dec 18, 2024
1 parent 9de4313 commit 2ecd423
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/testworkflows/testworkflowprocessor/intermediate.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ func (s *intermediate) AppendPvcs(cfg map[string]corev1.PersistentVolumeClaimSpe
for name, spec := range cfg {
s.Ps[name] = corev1.PersistentVolumeClaim{
ObjectMeta: metav1.ObjectMeta{
Name: fmt.Sprintf("{{resource.id}}-%s", s.NextRef()),
Name: fmt.Sprintf("{{resource.root}}-%s", s.NextRef()),
},
Spec: spec,
}
Expand Down

0 comments on commit 2ecd423

Please sign in to comment.