Skip to content

Commit d72d7f1

Browse files
fixing lint
Signed-off-by: Chaitanya Kolluru <[email protected]>
1 parent 725e3cb commit d72d7f1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

controllers/helmchartproxy/helmchartproxy_controller.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"context"
2121

2222
"github.com/pkg/errors"
23-
v1 "k8s.io/api/core/v1"
23+
corev1 "k8s.io/api/core/v1"
2424
apierrors "k8s.io/apimachinery/pkg/api/errors"
2525
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2626
"k8s.io/apimachinery/pkg/labels"
@@ -239,7 +239,7 @@ func (r *HelmChartProxyReconciler) reconcileNormal(ctx context.Context, helmChar
239239
hrpReadyCond := helmChartProxy.GetHelmReleaseProxyReadyCondition()
240240
// If HelmReleaseProxiesReadyCondition is false, reconcile existing
241241
// HelmReleaseProxies and exit.
242-
if hrpReadyCond != nil && (hrpReadyCond.Status == v1.ConditionFalse) {
242+
if hrpReadyCond != nil && (hrpReadyCond.Status == corev1.ConditionFalse) {
243243
for _, hrpRltMeta := range clusterRolloutMeta {
244244
if hrpRltMeta.hrpExists {
245245
// Don't reconcile if the Cluster is being deleted
@@ -253,6 +253,7 @@ func (r *HelmChartProxyReconciler) reconcileNormal(ctx context.Context, helmChar
253253
}
254254
}
255255
}
256+
256257
return nil
257258
}
258259

0 commit comments

Comments
 (0)