Skip to content

Commit

Permalink
object patch
Browse files Browse the repository at this point in the history
Signed-off-by: Pavel Okhlopkov <pavel.okhlopkov@flant.com>
  • Loading branch information
Pavel Okhlopkov committed Nov 15, 2024
1 parent 7d9a675 commit d6d8d1a
Show file tree
Hide file tree
Showing 18 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package objectpatch
package object_patch

import (
"bytes"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package objectpatch
package object_patch

import (
"fmt"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package objectpatch
package object_patch

import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package objectpatch
package object_patch

import (
"bytes"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package objectpatch
package object_patch

import (
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package objectpatch
package object_patch

import (
"context"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package objectpatch
package object_patch

import (
"encoding/json"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package objectpatch
package object_patch

import (
"testing"
Expand Down
2 changes: 1 addition & 1 deletion pkg/shell-operator/kube_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

klient "github.com/flant/kube-client/client"
"github.com/flant/shell-operator/pkg/app"
objectpatch "github.com/flant/shell-operator/pkg/kube/object_patch"
metricstorage "github.com/flant/shell-operator/pkg/metric_storage"
objectpatch "github.com/flant/shell-operator/pkg/object_patch"
utils "github.com/flant/shell-operator/pkg/utils/labels"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/shell-operator/operator.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ import (
"github.com/flant/shell-operator/pkg/hook/controller"
"github.com/flant/shell-operator/pkg/hook/task_metadata"
"github.com/flant/shell-operator/pkg/hook/types"
objectpatch "github.com/flant/shell-operator/pkg/kube/object_patch"
kubeeventsmanager "github.com/flant/shell-operator/pkg/kube_events_manager"
kemTypes "github.com/flant/shell-operator/pkg/kube_events_manager/types"
metricstorage "github.com/flant/shell-operator/pkg/metric_storage"
objectpatch "github.com/flant/shell-operator/pkg/object_patch"
schedulemanager "github.com/flant/shell-operator/pkg/schedule_manager"
"github.com/flant/shell-operator/pkg/task"
"github.com/flant/shell-operator/pkg/task/queue"
Expand Down
2 changes: 1 addition & 1 deletion test/integration/kubeclient/object_patch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"context"
"encoding/json"

objectpatch "github.com/flant/shell-operator/pkg/object_patch"
objectpatch "github.com/flant/shell-operator/pkg/kube/object_patch"
. "github.com/flant/shell-operator/test/integration/suite"
uuid "github.com/gofrs/uuid/v5"
. "github.com/onsi/ginkgo"
Expand Down
2 changes: 1 addition & 1 deletion test/integration/suite/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/deckhouse/deckhouse/pkg/log"
klient "github.com/flant/kube-client/client"
objectpatch "github.com/flant/shell-operator/pkg/object_patch"
objectpatch "github.com/flant/shell-operator/pkg/kube/object_patch"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
Expand Down

0 comments on commit d6d8d1a

Please sign in to comment.