Skip to content

Commit

Permalink
update references to point to new org
Browse files Browse the repository at this point in the history
  • Loading branch information
rajatjindal committed Feb 9, 2020
1 parent 6e50f52 commit 7ed6a42
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project_name: fleet
release:
github:
owner: mhausenblas
owner: kubectl-plus
name: kcf
builds:
- id: fleet
Expand All @@ -19,7 +19,7 @@ builds:
- GO111MODULE=on
main: cmd/fleet/main.go
ldflags: -s -w
-X github.com/mhausenblas/kcf/pkg/version.version=
-X github.com/kubectl-plus/kcf/pkg/version.version=
archives:
- id: fleet
builds:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ the control plane version or API server endpoint are displayed, as well as selec
stats, for example, the number of worker nodes or namespaces found in the cluster.

Note that you can also use it standalone, simply download the binary for your platform
from the [release page](https://github.com/mhausenblas/kcf/releases).
from the [release page](https://github.com/kubectl-plus/kcf/releases).

## Getting started

Expand Down
2 changes: 1 addition & 1 deletion cmd/fleet/cli/details.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cli

import (
"github.com/mhausenblas/kcf/pkg/fleet"
"github.com/kubectl-plus/kcf/pkg/fleet"
"github.com/pkg/errors"
"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/fleet/cli/resources.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cli

import (
"github.com/mhausenblas/kcf/pkg/fleet"
"github.com/kubectl-plus/kcf/pkg/fleet"
"github.com/pkg/errors"
"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/fleet/cli/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"strings"

"github.com/mhausenblas/kcf/pkg/fleet"
"github.com/kubectl-plus/kcf/pkg/fleet"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"github.com/spf13/viper"
Expand Down
2 changes: 1 addition & 1 deletion cmd/fleet/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/mhausenblas/kcf/cmd/fleet/cli"
"github.com/kubectl-plus/kcf/cmd/fleet/cli"
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp" // required for GKE
)

Expand Down
10 changes: 5 additions & 5 deletions deploy/krew/fleet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ spec:
matchLabels:
os: linux
arch: amd64
{{addURIAndSha "https://github.com/mhausenblas/kcf/releases/download/{{ .TagName }}/fleet_linux_amd64.tar.gz" .TagName }}
{{addURIAndSha "https://github.com/kubectl-plus/kcf/releases/download/{{ .TagName }}/fleet_linux_amd64.tar.gz" .TagName }}
files:
- from: "./fleet"
to: "."
Expand All @@ -20,7 +20,7 @@ spec:
matchLabels:
os: darwin
arch: amd64
{{addURIAndSha "https://github.com/mhausenblas/kcf/releases/download/{{ .TagName }}/fleet_darwin_amd64.tar.gz" .TagName }}
{{addURIAndSha "https://github.com/kubectl-plus/kcf/releases/download/{{ .TagName }}/fleet_darwin_amd64.tar.gz" .TagName }}
files:
- from: "./fleet"
to: "."
Expand All @@ -31,22 +31,22 @@ spec:
matchLabels:
os: windows
arch: amd64
{{addURIAndSha "https://github.com/mhausenblas/kcf/releases/download/{{ .TagName }}/fleet_windows_amd64.zip" .TagName }}
{{addURIAndSha "https://github.com/kubectl-plus/kcf/releases/download/{{ .TagName }}/fleet_windows_amd64.zip" .TagName }}
files:
- from: "/fleet.exe"
to: "."
- from: "./LICENSE"
to: "."
bin: "fleet.exe"
shortDescription: Shows config and resources of a fleet of clusters
homepage: https://github.com/mhausenblas/kcf
homepage: https://github.com/kubectl-plus/kcf
caveats: |
Usage:
$ kubectl fleet
For additional options:
$ kubectl fleet --help
or https://github.com/mhausenblas/kcf/blob/v0.1.4/doc/USAGE.md
or https://github.com/kubectl-plus/kcf/blob/v0.1.4/doc/USAGE.md
description: |
Allows to get an overview and details on a fleet of Kubernetes clusters.
Expand Down
2 changes: 1 addition & 1 deletion doc/USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ $ kubectl krew install fleet
Alternatively, for a version that is not yet updated and hence available in the [krew index](https://index.krew.dev/), you can install `fleet` from this repo as follows:

```sh
$ git clone https://github.com/mhausenblas/kcf.git && cd kcf
$ git clone https://github.com/kubectl-plus/kcf.git && cd kcf

$ kubectl krew install --manifest=deploy/krew/fleet.yaml
```
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 github.com/mhausenblas/kcf
module github.com/kubectl-plus/kcf

go 1.12

Expand Down

0 comments on commit 7ed6a42

Please sign in to comment.