Skip to content
This repository has been archived by the owner on Sep 24, 2021. It is now read-only.

Commit

Permalink
Rename module
Browse files Browse the repository at this point in the history
Signed-off-by: Chuck Ha <[email protected]>
  • Loading branch information
chuckha committed Jun 15, 2019
1 parent c290035 commit 1aafb87
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,5 @@ The kubeconfig is on the management cluster in secrets. Grab it and write it to

`kubectl get secrets -o jsonpath='{.data.kubeconfig}' kubeconfig-my-cluster | base64 --decode > ~/.kube/kind-config-my-cluster`

`kubectl get po --all-namespaces --kubeconfig ~/.kube/kind-config-my-cluster`
`kubectl get po --all-namespaces --kubeconfig ~/.kube/kind-config-my-cluster`

2 changes: 1 addition & 1 deletion capkactuators/actuators.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"fmt"
"io/ioutil"

"github.com/chuckha/cluster-api-provider-kind/kind/actions"
"github.com/pkg/errors"
"gitlab.com/chuckh/cluster-api-provider-kind/kind/actions"
"k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
clusterv1 "sigs.k8s.io/cluster-api/pkg/apis/cluster/v1alpha1"
Expand Down
2 changes: 1 addition & 1 deletion capkactuators/machine.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"fmt"
"time"

"gitlab.com/chuckh/cluster-api-provider-kind/kind/actions"
"github.com/chuckha/cluster-api-provider-kind/kind/actions"
"k8s.io/apimachinery/pkg/types"
corev1 "k8s.io/client-go/kubernetes/typed/core/v1"
clusterv1 "sigs.k8s.io/cluster-api/pkg/apis/cluster/v1alpha1"
Expand Down
2 changes: 1 addition & 1 deletion cmd/capk-manager/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"fmt"
"time"

"gitlab.com/chuckh/cluster-api-provider-kind/capkactuators"
"github.com/chuckha/cluster-api-provider-kind/capkactuators"
"k8s.io/client-go/kubernetes"
"sigs.k8s.io/cluster-api/pkg/apis"
"sigs.k8s.io/cluster-api/pkg/apis/cluster/common"
Expand Down
2 changes: 1 addition & 1 deletion cmd/capkctl/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"io/ioutil"
"os"

"gitlab.com/chuckh/cluster-api-provider-kind/execer"
"github.com/chuckha/cluster-api-provider-kind/execer"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"sigs.k8s.io/cluster-api/pkg/apis/cluster/v1alpha1"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/kind-test/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"os"
"strings"

"gitlab.com/chuckh/cluster-api-provider-kind/kind/actions"
"github.com/chuckha/cluster-api-provider-kind/kind/actions"
"sigs.k8s.io/kind/pkg/cluster/constants"
"sigs.k8s.io/kind/pkg/cluster/nodes"
)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module gitlab.com/chuckh/cluster-api-provider-kind
module github.com/chuckha/cluster-api-provider-kind

go 1.12

Expand Down
4 changes: 2 additions & 2 deletions kind/actions/cluster_actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ import (
"html/template"
"strings"

"github.com/chuckha/cluster-api-provider-kind/kind/kubeadm"
"github.com/chuckha/cluster-api-provider-kind/third_party/forked/loadbalancer"
"github.com/pkg/errors"
"gitlab.com/chuckh/cluster-api-provider-kind/kind/kubeadm"
"gitlab.com/chuckh/cluster-api-provider-kind/third_party/forked/loadbalancer"
"sigs.k8s.io/kind/pkg/cluster/constants"
"sigs.k8s.io/kind/pkg/cluster/nodes"
"sigs.k8s.io/kind/pkg/container/docker"
Expand Down
3 changes: 1 addition & 2 deletions kind/actions/kind.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ import (

"sigs.k8s.io/kind/pkg/cluster/config/defaults"

"github.com/chuckha/cluster-api-provider-kind/third_party/forked/loadbalancer"
"github.com/pkg/errors"
"gitlab.com/chuckh/cluster-api-provider-kind/third_party/forked/loadbalancer"
"sigs.k8s.io/kind/pkg/cluster/constants"
"sigs.k8s.io/kind/pkg/cluster/nodes"
"sigs.k8s.io/kind/pkg/container/cri"
Expand Down Expand Up @@ -232,7 +232,6 @@ func image(version string) string {
switch version {
case "v1.14.2":
case "v1.14.1":
case "v1.14.0":
return fmt.Sprintf("kindest/node:%s", version)
}
return defaults.Image
Expand Down

0 comments on commit 1aafb87

Please sign in to comment.