Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Shubham Gupta <[email protected]>
  • Loading branch information
shubham-cmyk committed Nov 10, 2023
1 parent 8df718c commit ab72efd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions k8sutils/finalizers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import (
"github.com/go-logr/logr/testr"
"github.com/stretchr/testify/assert"
corev1 "k8s.io/api/core/v1"
v1 "k8s.io/api/core/v1"
k8serrors "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
Expand Down Expand Up @@ -301,7 +300,7 @@ func helperRedisClusterPVCs(clusterName string, namespace string) []*corev1.Pers
}
pvcs = append(pvcs, clusterPVC)
nodeConfPVCName := fmt.Sprintf("node-conf-%s-%s-%d", clusterName, role, i)
nodeConfPVC := &v1.PersistentVolumeClaim{
nodeConfPVC := &corev1.PersistentVolumeClaim{
ObjectMeta: metav1.ObjectMeta{
Name: nodeConfPVCName,
Namespace: namespace,
Expand Down

0 comments on commit ab72efd

Please sign in to comment.