Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksandr Stefurishin <[email protected]>
  • Loading branch information
astef committed Dec 20, 2024
1 parent 14e1e82 commit fe9cc5c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions images/agent/src/cmd/llvs.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
package main

import (
"sigs.k8s.io/controller-runtime/pkg/manager"

"agent/internal/cache"
"agent/internal/config"
"agent/internal/logger"
"agent/internal/monitoring"

"sigs.k8s.io/controller-runtime/pkg/manager"
)

func addLLVSReconciler(
Expand Down
7 changes: 4 additions & 3 deletions images/agent/src/cmd/llvs_ee.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@
package main

import (
"os"

"sigs.k8s.io/controller-runtime/pkg/manager"

"agent/internal/cache"
"agent/internal/config"
"agent/internal/controller"
"agent/internal/controller/llvs"
"agent/internal/logger"
"agent/internal/monitoring"
"os"

"sigs.k8s.io/controller-runtime/pkg/manager"
)

func addLLVSReconciler(
Expand Down
3 changes: 2 additions & 1 deletion images/agent/src/internal/controller/llv/llvs_ee.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
package llv

import (
"agent/internal/utils"
"context"
"errors"
"fmt"

"github.com/deckhouse/sds-node-configurator/api/v1alpha1"
"k8s.io/apimachinery/pkg/types"

"agent/internal/utils"
)

func (r *Reconciler) handleLLVSSource(ctx context.Context, llv *v1alpha1.LVMLogicalVolume, lvg *v1alpha1.LVMVolumeGroup) (string, bool, error) {
Expand Down

0 comments on commit fe9cc5c

Please sign in to comment.