Skip to content

Commit

Permalink
Update my username.
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Miguel Custódio <[email protected]>
  • Loading branch information
bmcustodio committed Apr 18, 2020
1 parent 92afa31 commit 1b7a901
Show file tree
Hide file tree
Showing 13 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ VERSION := $(shell git describe --always --dirty=-dev)

.PHONY: build
build:
@CGO_ENABLED=0 go build -ldflags="-X github.com/bmcstdio/kubectl-cilium/internal/version.Version=$(VERSION)" \
@CGO_ENABLED=0 go build -ldflags="-X github.com/bmcustodio/kubectl-cilium/internal/version.Version=$(VERSION)" \
-v -o "$(ROOT)/bin/kubectl-cilium" -tags netgo "$(ROOT)/cmd/kubectl-cilium/"

.PHONY: ci
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

A `kubectl` plugin for interacting with [Cilium](https://cilium.io).

![Release](https://img.shields.io/github/v/release/bmcstdio/kubectl-cilium)
![Downloads](https://img.shields.io/github/downloads/bmcstdio/kubectl-cilium/total?color=green)
[![Build](https://img.shields.io/travis/com/bmcstdio/kubectl-cilium)](https://travis-ci.com/bmcstdio/kubectl-cilium)
![License](https://img.shields.io/github/license/bmcstdio/kubectl-cilium)
![Release](https://img.shields.io/github/v/release/bmcustodio/kubectl-cilium)
![Downloads](https://img.shields.io/github/downloads/bmcustodio/kubectl-cilium/total?color=green)
[![Build](https://img.shields.io/travis/com/bmcustodio/kubectl-cilium)](https://travis-ci.com/bmcustodio/kubectl-cilium)
![License](https://img.shields.io/github/license/bmcustodio/kubectl-cilium)

## Installation

Expand All @@ -18,7 +18,7 @@ $ kubectl krew install cilium
Alternatively, `kubectl-cilium` can be installed by running

```shell
$ go get github.com/bmcstdio/kubectl-cilium/cmd/kubectl-cilium
$ go get github.com/bmcustodio/kubectl-cilium/cmd/kubectl-cilium
```

or by cloning this repository, running
Expand Down Expand Up @@ -97,7 +97,7 @@ root@kind-cilium-mesh-2-control-plane:~#

## License

Copyright 2020 bmcstdio
Copyright 2020 bmcustodio

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions cmd/kubectl-cilium/main.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020 bmcstdio
// Copyright 2020 bmcustodio
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand All @@ -20,7 +20,7 @@ import (
_ "k8s.io/client-go/plugin/pkg/client/auth/oidc"
_ "k8s.io/client-go/plugin/pkg/client/auth/openstack"

"github.com/bmcstdio/kubectl-cilium/internal/cmd"
"github.com/bmcustodio/kubectl-cilium/internal/cmd"
)

func main() {
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/bmcstdio/kubectl-cilium
module github.com/bmcustodio/kubectl-cilium

go 1.13

Expand Down
8 changes: 4 additions & 4 deletions internal/cmd/exec.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020 bmcstdio
// Copyright 2020 bmcustodio
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand All @@ -20,9 +20,9 @@ import (
"github.com/spf13/cobra"
"k8s.io/client-go/tools/cache"

"github.com/bmcstdio/kubectl-cilium/internal/constants"
ciliumutils "github.com/bmcstdio/kubectl-cilium/internal/utils/cilium"
nodeutils "github.com/bmcstdio/kubectl-cilium/internal/utils/kubernetes"
"github.com/bmcustodio/kubectl-cilium/internal/constants"
ciliumutils "github.com/bmcustodio/kubectl-cilium/internal/utils/cilium"
nodeutils "github.com/bmcustodio/kubectl-cilium/internal/utils/kubernetes"
)

func init() {
Expand Down
4 changes: 2 additions & 2 deletions internal/cmd/root.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020 bmcstdio
// Copyright 2020 bmcustodio
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand All @@ -23,7 +23,7 @@ import (
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"

"github.com/bmcstdio/kubectl-cilium/internal/version"
"github.com/bmcustodio/kubectl-cilium/internal/version"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion internal/constants/constants.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020 bmcstdio
// Copyright 2020 bmcustodio
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions internal/utils/cilium/namespace.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020 bmcstdio
// Copyright 2020 bmcustodio
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand All @@ -21,7 +21,7 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"

"github.com/bmcstdio/kubectl-cilium/internal/constants"
"github.com/bmcustodio/kubectl-cilium/internal/constants"
)

func DiscoverCiliumNamespace(kubeClient kubernetes.Interface) (string, error) {
Expand Down
4 changes: 2 additions & 2 deletions internal/utils/cilium/pod.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020 bmcstdio
// Copyright 2020 bmcustodio
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand All @@ -20,7 +20,7 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"

"github.com/bmcstdio/kubectl-cilium/internal/constants"
"github.com/bmcustodio/kubectl-cilium/internal/constants"
)

func DiscoverCiliumPodInNode(kubeClient kubernetes.Interface, ciliumNamespace, nodeName string) (string, error) {
Expand Down
2 changes: 1 addition & 1 deletion internal/utils/kubernetes/exec.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020 bmcstdio
// Copyright 2020 bmcustodio
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion internal/utils/kubernetes/node.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020 bmcstdio
// Copyright 2020 bmcustodio
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion internal/utils/kubernetes/pod.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020 bmcstdio
// Copyright 2020 bmcustodio
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020 bmcstdio
// Copyright 2020 bmcustodio
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down

0 comments on commit 1b7a901

Please sign in to comment.