Skip to content

Commit

Permalink
fix upercas issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hurzelpurzel committed Oct 30, 2024
1 parent d5de021 commit 470fb50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/transformer/kubernetes/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ func (k *Kubernetes) CreatePVC(name string, mode string, size string, selectorVa
APIVersion: "v1",
},
ObjectMeta: metav1.ObjectMeta{
Name: name,
Name: FormatResourceName(name),
Labels: transformer.ConfigLabels(name),
},
Spec: api.PersistentVolumeClaimSpec{
Expand Down

0 comments on commit 470fb50

Please sign in to comment.