Updates for org move to vmware-tanzu (#1920)

* update import paths to github.com/vmware-tanzu/...

Signed-off-by: Steve Kriss <krisss@vmware.com>

* update other GH org refs to vmware-tanzu

Signed-off-by: Steve Kriss <krisss@vmware.com>

* site and docs: update GH org to vmware-tanzu

Signed-off-by: Steve Kriss <krisss@vmware.com>

* update travis badge links on docs readmes

Signed-off-by: Steve Kriss <krisss@vmware.com>
This commit is contained in:
Steve Kriss
2019-09-30 15:26:56 -06:00
committed by Nolan Brubaker
parent d96186473c
commit 48792ece1f
348 changed files with 1059 additions and 1059 deletions

View File

@@ -4,9 +4,9 @@ package mocks
import io "io"
import mock "github.com/stretchr/testify/mock"
import persistence "github.com/heptio/velero/pkg/persistence"
import v1 "github.com/heptio/velero/pkg/apis/velero/v1"
import volume "github.com/heptio/velero/pkg/volume"
import persistence "github.com/vmware-tanzu/velero/pkg/persistence"
import v1 "github.com/vmware-tanzu/velero/pkg/apis/velero/v1"
import volume "github.com/vmware-tanzu/velero/pkg/volume"
// BackupStore is an autogenerated mock type for the BackupStore type
type BackupStore struct {

View File

@@ -28,10 +28,10 @@ import (
"github.com/sirupsen/logrus"
kerrors "k8s.io/apimachinery/pkg/util/errors"
velerov1api "github.com/heptio/velero/pkg/apis/velero/v1"
"github.com/heptio/velero/pkg/generated/clientset/versioned/scheme"
"github.com/heptio/velero/pkg/plugin/velero"
"github.com/heptio/velero/pkg/volume"
velerov1api "github.com/vmware-tanzu/velero/pkg/apis/velero/v1"
"github.com/vmware-tanzu/velero/pkg/generated/clientset/versioned/scheme"
"github.com/vmware-tanzu/velero/pkg/plugin/velero"
"github.com/vmware-tanzu/velero/pkg/volume"
)
type BackupInfo struct {

View File

@@ -32,14 +32,14 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
velerov1api "github.com/heptio/velero/pkg/apis/velero/v1"
"github.com/heptio/velero/pkg/builder"
"github.com/heptio/velero/pkg/cloudprovider"
cloudprovidermocks "github.com/heptio/velero/pkg/cloudprovider/mocks"
"github.com/heptio/velero/pkg/plugin/velero"
velerotest "github.com/heptio/velero/pkg/test"
"github.com/heptio/velero/pkg/util/encode"
"github.com/heptio/velero/pkg/volume"
velerov1api "github.com/vmware-tanzu/velero/pkg/apis/velero/v1"
"github.com/vmware-tanzu/velero/pkg/builder"
"github.com/vmware-tanzu/velero/pkg/cloudprovider"
cloudprovidermocks "github.com/vmware-tanzu/velero/pkg/cloudprovider/mocks"
"github.com/vmware-tanzu/velero/pkg/plugin/velero"
velerotest "github.com/vmware-tanzu/velero/pkg/test"
"github.com/vmware-tanzu/velero/pkg/util/encode"
"github.com/vmware-tanzu/velero/pkg/volume"
)
type objectBackupStoreTestHarness struct {