Skip to content

Commit 1dbf953

Browse files
authored
Merge pull request #812 from n2h9/chore-update-to-use-meshery-operator-from-meshery-project
[dependencies] chore: use meshery/meshery-operator instead of layer5io/meshery-operator
2 parents f9e56f8 + f05fe6e commit 1dbf953

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ require (
2525
github.com/google/go-containerregistry v0.20.3
2626
github.com/google/uuid v1.6.0
2727
github.com/kubernetes/kompose v1.35.0
28-
github.com/layer5io/meshery-operator v0.8.1
28+
github.com/meshery/meshery-operator v0.8.11
2929
github.com/meshery/schemas v0.8.34
3030
github.com/nats-io/nats.go v1.38.0
3131
github.com/open-policy-agent/opa v1.7.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -357,8 +357,6 @@ github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 h1:SOEGU9fKiNWd/HOJuq
357357
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0/go.mod h1:dXGbAdH5GtBTC4WfIxhKZfyBF/HBFgRZSWwZ9g/He9o=
358358
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 h1:P6pPBnrTSX3DEVR4fDembhRWSsG5rVo6hYhAB/ADZrk=
359359
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0/go.mod h1:vmVJ0l/dxyfGW6FmdpVm2joNMFikkuWg0EoCKLGUMNw=
360-
github.com/layer5io/meshery-operator v0.8.1 h1:AP6BTQ8fi5re4+o71vJ3NoQBuwfn+33EIYjabHU0Kxg=
361-
github.com/layer5io/meshery-operator v0.8.1/go.mod h1:Wi9ODHppoq8ODtzdfiplWYJXYpqsHOJfkJyTMQeNXk4=
362360
github.com/lib/pq v1.10.9 h1:YXG7RB+JIjhP29X+OtkiDnYaXQwpS4JEWq7dtCCRUEw=
363361
github.com/lib/pq v1.10.9/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o=
364362
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de h1:9TO3cAIGXtEhnIaL+V+BEER86oLrvS+kWobKpbJuye0=
@@ -378,6 +376,8 @@ github.com/mattn/go-shellwords v1.0.12/go.mod h1:EZzvwXDESEeg03EKmM+RmDnNOPKG4lL
378376
github.com/mattn/go-sqlite3 v1.14.22/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
379377
github.com/mattn/go-sqlite3 v1.14.24 h1:tpSp2G2KyMnnQu99ngJ47EIkWVmliIizyZBfPrBWDRM=
380378
github.com/mattn/go-sqlite3 v1.14.24/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
379+
github.com/meshery/meshery-operator v0.8.11 h1:eDo2Sw0jjVrXsvvhF8LenADM58pK+7Z68ROPVIejTPc=
380+
github.com/meshery/meshery-operator v0.8.11/go.mod h1:hQEtFKKa5Fr/Mskk6bV5ip3bQ0+3F0u1voYS3XisBp4=
381381
github.com/meshery/schemas v0.8.34 h1:RiD5JWWQE92d8nkEWy7Lt0guZRAG3XQstX07spfPw7w=
382382
github.com/meshery/schemas v0.8.34/go.mod h1:6BxRPapEnbH4ATuneUVLb7lOAWSdr8gyvNp1zAgmyKA=
383383
github.com/miekg/dns v1.1.57 h1:Jzi7ApEIzwEPLHWRcafCN9LZSBbqQpxjt/wpgvg7wcM=

models/controllers/helpers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"net/http"
1111
"net/url"
1212

13-
"github.com/layer5io/meshery-operator/api/v1alpha1"
13+
"github.com/meshery/meshery-operator/api/v1alpha1"
1414
"github.com/meshery/meshkit/utils"
1515
mesherykube "github.com/meshery/meshkit/utils/kubernetes"
1616
)

models/controllers/meshery_broker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"strings"
77

8-
opClient "github.com/layer5io/meshery-operator/pkg/client"
8+
opClient "github.com/meshery/meshery-operator/pkg/client"
99
"github.com/meshery/meshkit/utils"
1010
mesherykube "github.com/meshery/meshkit/utils/kubernetes"
1111
v1 "k8s.io/api/core/v1"

models/controllers/meshsync.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package controllers
33
import (
44
"context"
55

6-
opClient "github.com/layer5io/meshery-operator/pkg/client"
6+
opClient "github.com/meshery/meshery-operator/pkg/client"
77
mesherykube "github.com/meshery/meshkit/utils/kubernetes"
88
v1 "k8s.io/api/core/v1"
99
kubeerror "k8s.io/apimachinery/pkg/api/errors"

0 commit comments

Comments
 (0)