summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorIshita Sequeira <46771830+ishitasequeira@users.noreply.github.com>2024-12-17 02:02:29 +0530
committerGitHub <noreply@github.com>2024-12-16 15:32:29 -0500
commit4f0141a895d068eb326400d6951692e9007e5835 (patch)
tree7d83fe6db3fdb47d09846c5a92d6aba162829a23 /cmd
parentf55eeef5df6302a30134896b69c93f4dff31afa7 (diff)
Update references of pkg/tag pkg/log pkg/options to use modules from registry-scanner (#962)
Signed-off-by: Ishita Sequeira <ishiseq29@gmail.com>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/run.go2
-rw-r--r--cmd/template.go2
-rw-r--r--cmd/test.go4
-rw-r--r--cmd/util.go2
4 files changed, 5 insertions, 5 deletions
diff --git a/cmd/run.go b/cmd/run.go
index 6abcda2..4e2ba32 100644
--- a/cmd/run.go
+++ b/cmd/run.go
@@ -14,10 +14,10 @@ import (
"github.com/argoproj-labs/argocd-image-updater/pkg/common"
"github.com/argoproj-labs/argocd-image-updater/pkg/env"
"github.com/argoproj-labs/argocd-image-updater/pkg/health"
- "github.com/argoproj-labs/argocd-image-updater/pkg/log"
"github.com/argoproj-labs/argocd-image-updater/pkg/metrics"
"github.com/argoproj-labs/argocd-image-updater/pkg/registry"
"github.com/argoproj-labs/argocd-image-updater/pkg/version"
+ "github.com/argoproj-labs/argocd-image-updater/registry-scanner/pkg/log"
"github.com/argoproj/argo-cd/v2/reposerver/askpass"
diff --git a/cmd/template.go b/cmd/template.go
index b135071..04b7ee6 100644
--- a/cmd/template.go
+++ b/cmd/template.go
@@ -9,7 +9,7 @@ import (
"github.com/argoproj-labs/argocd-image-updater/pkg/argocd"
"github.com/argoproj-labs/argocd-image-updater/pkg/common"
"github.com/argoproj-labs/argocd-image-updater/pkg/image"
- "github.com/argoproj-labs/argocd-image-updater/pkg/tag"
+ "github.com/argoproj-labs/argocd-image-updater/registry-scanner/pkg/tag"
"github.com/spf13/cobra"
)
diff --git a/cmd/test.go b/cmd/test.go
index 53cdd95..fbef681 100644
--- a/cmd/test.go
+++ b/cmd/test.go
@@ -7,9 +7,9 @@ import (
"github.com/argoproj-labs/argocd-image-updater/pkg/image"
"github.com/argoproj-labs/argocd-image-updater/pkg/kube"
- "github.com/argoproj-labs/argocd-image-updater/pkg/log"
- "github.com/argoproj-labs/argocd-image-updater/pkg/options"
"github.com/argoproj-labs/argocd-image-updater/pkg/registry"
+ "github.com/argoproj-labs/argocd-image-updater/registry-scanner/pkg/log"
+ "github.com/argoproj-labs/argocd-image-updater/registry-scanner/pkg/options"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
diff --git a/cmd/util.go b/cmd/util.go
index 7b6a944..4284c81 100644
--- a/cmd/util.go
+++ b/cmd/util.go
@@ -7,7 +7,7 @@ import (
"time"
"github.com/argoproj-labs/argocd-image-updater/pkg/kube"
- "github.com/argoproj-labs/argocd-image-updater/pkg/log"
+ "github.com/argoproj-labs/argocd-image-updater/registry-scanner/pkg/log"
)
func getPrintableInterval(interval time.Duration) string {