Skip to content

Commit c8fb6cf

Browse files
authored
moving away from kpt vanity url (#1857)
1 parent 2bed184 commit c8fb6cf

File tree

717 files changed

+3671
-3671
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

717 files changed

+3671
-3671
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
##### CONFIG #####
2020

21-
REPO := kpt.dev/configsync
21+
REPO := github.com/GoogleContainerTools/config-sync
2222

2323
# Some of our recipes use bash syntax, so explicitly set the shell to bash.
2424
SHELL := /bin/bash

Makefile.gen

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
######################################################################
1818

19-
CANONICAL_GOPATH := $(shell go env GOPATH)/src/kpt.dev/configsync
19+
CANONICAL_GOPATH := $(shell go env GOPATH)/src/github.com/GoogleContainerTools/config-sync
2020

2121
.PHONY: symlink-gopath
2222
symlink-gopath:

build/all/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ ARG VERSION
2929
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on \
3030
go install \
3131
-mod=vendor \
32-
-ldflags "-X kpt.dev/configsync/pkg/version.VERSION=${VERSION}" \
32+
-ldflags "-X github.com/GoogleContainerTools/config-sync/pkg/version.VERSION=${VERSION}" \
3333
./cmd/nomos \
3434
./cmd/reconciler \
3535
./cmd/reconciler-manager \

cmd/admission-webhook/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ import (
2121
"os"
2222
"time"
2323

24+
"github.com/GoogleContainerTools/config-sync/pkg/profiler"
25+
"github.com/GoogleContainerTools/config-sync/pkg/util/log"
26+
"github.com/GoogleContainerTools/config-sync/pkg/webhook"
27+
"github.com/GoogleContainerTools/config-sync/pkg/webhook/configuration"
2428
"k8s.io/klog/v2/textlogger"
25-
"kpt.dev/configsync/pkg/profiler"
26-
"kpt.dev/configsync/pkg/util/log"
27-
"kpt.dev/configsync/pkg/webhook"
28-
"kpt.dev/configsync/pkg/webhook/configuration"
2929
ctrl "sigs.k8s.io/controller-runtime"
3030
"sigs.k8s.io/controller-runtime/pkg/config"
3131
"sigs.k8s.io/controller-runtime/pkg/healthz"

cmd/gcenode-askpass-sidecar/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ import (
2020
"net/http"
2121

2222
"cloud.google.com/go/compute/metadata"
23+
"github.com/GoogleContainerTools/config-sync/pkg/askpass"
24+
"github.com/GoogleContainerTools/config-sync/pkg/auth"
25+
"github.com/GoogleContainerTools/config-sync/pkg/util"
26+
utillog "github.com/GoogleContainerTools/config-sync/pkg/util/log"
2327
"k8s.io/klog/v2/textlogger"
24-
"kpt.dev/configsync/pkg/askpass"
25-
"kpt.dev/configsync/pkg/auth"
26-
"kpt.dev/configsync/pkg/util"
27-
utillog "kpt.dev/configsync/pkg/util/log"
2828
)
2929

3030
// all the flags and their usage.

cmd/helm-sync/main.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ import (
2222
"strings"
2323
"time"
2424

25+
"github.com/GoogleContainerTools/config-sync/pkg/api/configsync"
26+
"github.com/GoogleContainerTools/config-sync/pkg/auth"
27+
"github.com/GoogleContainerTools/config-sync/pkg/helm"
28+
"github.com/GoogleContainerTools/config-sync/pkg/reconcilermanager"
29+
"github.com/GoogleContainerTools/config-sync/pkg/util"
30+
utillog "github.com/GoogleContainerTools/config-sync/pkg/util/log"
2531
"k8s.io/klog/v2/textlogger"
26-
"kpt.dev/configsync/pkg/api/configsync"
27-
"kpt.dev/configsync/pkg/auth"
28-
"kpt.dev/configsync/pkg/helm"
29-
"kpt.dev/configsync/pkg/reconcilermanager"
30-
"kpt.dev/configsync/pkg/util"
31-
utillog "kpt.dev/configsync/pkg/util/log"
3232
)
3333

3434
var (

cmd/hydration-controller/main.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ import (
2020
"os"
2121
"strings"
2222

23+
"github.com/GoogleContainerTools/config-sync/pkg/api/configsync"
24+
"github.com/GoogleContainerTools/config-sync/pkg/hydrate"
25+
"github.com/GoogleContainerTools/config-sync/pkg/importer/filesystem/cmpath"
26+
"github.com/GoogleContainerTools/config-sync/pkg/kmetrics"
27+
"github.com/GoogleContainerTools/config-sync/pkg/profiler"
28+
"github.com/GoogleContainerTools/config-sync/pkg/reconcilermanager"
29+
"github.com/GoogleContainerTools/config-sync/pkg/reconcilermanager/controllers"
30+
"github.com/GoogleContainerTools/config-sync/pkg/util/log"
2331
"k8s.io/klog/v2"
2432
"k8s.io/klog/v2/textlogger"
25-
"kpt.dev/configsync/pkg/api/configsync"
26-
"kpt.dev/configsync/pkg/hydrate"
27-
"kpt.dev/configsync/pkg/importer/filesystem/cmpath"
28-
"kpt.dev/configsync/pkg/kmetrics"
29-
"kpt.dev/configsync/pkg/profiler"
30-
"kpt.dev/configsync/pkg/reconcilermanager"
31-
"kpt.dev/configsync/pkg/reconcilermanager/controllers"
32-
"kpt.dev/configsync/pkg/util/log"
3333
ctrl "sigs.k8s.io/controller-runtime"
3434
)
3535

cmd/junit-report/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ import (
1818
"flag"
1919
"os"
2020

21+
"github.com/GoogleContainerTools/config-sync/cmd/junit-report/resetfailure"
2122
"github.com/spf13/cobra"
2223
"k8s.io/klog/v2"
23-
"kpt.dev/configsync/cmd/junit-report/resetfailure"
2424
)
2525

2626
var (

cmd/junit-report/resetfailure/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323

2424
// TestMain executes the tests for this package, with optional logging.
2525
// To see all logs, use:
26-
// go test kpt.dev/configsync/cmd/junit-report/resetfailure -v -args -v=5
26+
// go test github.com/GoogleContainerTools/config-sync/cmd/junit-report/resetfailure -v -args -v=5
2727
func TestMain(m *testing.M) {
2828
klog.InitFlags(nil)
2929
os.Exit(m.Run())

cmd/junit-report/resetfailure/reset_failure.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ func ResetFailure(path string) error {
5656
}
5757

5858
failureTestSuite := junit.Testsuite{
59-
Name: "kpt.dev/configsync/e2e/testcases",
59+
Name: "github.com/GoogleContainerTools/config-sync/e2e/testcases",
6060
ID: len(testSuites.Suites),
6161
Time: "0",
6262
Testcases: []junit.Testcase{
6363
{
6464
Name: "Failure",
65-
Classname: "kpt.dev/configsync/e2e/testcases",
65+
Classname: "github.com/GoogleContainerTools/config-sync/e2e/testcases",
6666
Time: "0",
6767
},
6868
},

0 commit comments

Comments
 (0)