From f2fc69ef9ff1c2903828873d2c7896c5f18fff1b Mon Sep 17 00:00:00 2001 From: Todd Short Date: Fri, 3 May 2024 14:51:33 -0400 Subject: [PATCH] Make helm-operator-plugins public Signed-off-by: Todd Short --- internal/controllers/bundledeployment/bundledeployment.go | 2 +- {internal => pkg}/helm-operator-plugins/predicate/depedent.go | 0 .../helm-operator-plugins/predicate/depedent_test.go | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename {internal => pkg}/helm-operator-plugins/predicate/depedent.go (100%) rename {internal => pkg}/helm-operator-plugins/predicate/depedent_test.go (100%) diff --git a/internal/controllers/bundledeployment/bundledeployment.go b/internal/controllers/bundledeployment/bundledeployment.go index 3de4456c..5eebe3b1 100644 --- a/internal/controllers/bundledeployment/bundledeployment.go +++ b/internal/controllers/bundledeployment/bundledeployment.go @@ -40,8 +40,8 @@ import ( rukpakv1alpha2 "github.com/operator-framework/rukpak/api/v1alpha2" "github.com/operator-framework/rukpak/internal/healthchecks" - helmpredicate "github.com/operator-framework/rukpak/internal/helm-operator-plugins/predicate" "github.com/operator-framework/rukpak/pkg/features" + helmpredicate "github.com/operator-framework/rukpak/pkg/helm-operator-plugins/predicate" unpackersource "github.com/operator-framework/rukpak/pkg/source" "github.com/operator-framework/rukpak/pkg/storage" "github.com/operator-framework/rukpak/pkg/util" diff --git a/internal/helm-operator-plugins/predicate/depedent.go b/pkg/helm-operator-plugins/predicate/depedent.go similarity index 100% rename from internal/helm-operator-plugins/predicate/depedent.go rename to pkg/helm-operator-plugins/predicate/depedent.go diff --git a/internal/helm-operator-plugins/predicate/depedent_test.go b/pkg/helm-operator-plugins/predicate/depedent_test.go similarity index 100% rename from internal/helm-operator-plugins/predicate/depedent_test.go rename to pkg/helm-operator-plugins/predicate/depedent_test.go