Skip to content

Commit 4b5a46f

Browse files
committed
*/*: update skippbox repo to bitnami-labs
1 parent 99eacd8 commit 4b5a46f

14 files changed

+32
-32
lines changed

Dockerfile.build

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ MAINTAINER "Cuong Manh Le <[email protected]>"
44
RUN apk update && \
55
apk add git build-base && \
66
rm -rf /var/cache/apk/* && \
7-
mkdir -p "$GOPATH/src/github.com/skippbox/kubewatch"
7+
mkdir -p "$GOPATH/src/github.com/bitnami-labs/kubewatch"
88

9-
ADD . "$GOPATH/src/github.com/skippbox/kubewatch"
9+
ADD . "$GOPATH/src/github.com/bitnami-labs/kubewatch"
1010

11-
RUN cd "$GOPATH/src/github.com/skippbox/kubewatch" && \
11+
RUN cd "$GOPATH/src/github.com/bitnami-labs/kubewatch" && \
1212
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a --installsuffix cgo --ldflags="-s" -o /kubewatch
1313

1414
COPY Dockerfile.run /

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@ $ helm upgrade --install kubewatch incubator/kubewatch --values=values-file.yml
4747

4848
## Installing kubewatch using kubectl
4949

50-
In order to run kubewatch in a Kubernetes cluster quickly, the easiest way is for you to create a [ConfigMap](https://github.com/skippbox/kubewatch/blob/master/kubewatch-configmap.yaml) to hold kubewatch configuration. It contains the SLACK bot API token and channel to use.
50+
In order to run kubewatch in a Kubernetes cluster quickly, the easiest way is for you to create a [ConfigMap](https://github.com/bitnami-labs/kubewatch/blob/master/kubewatch-configmap.yaml) to hold kubewatch configuration. It contains the SLACK bot API token and channel to use.
5151

52-
An example is provided at [`kubewatch-configmap.yaml`](https://github.com/skippbox/kubewatch/blob/master/kubewatch-configmap.yaml), do not forget to update your own slack channel and token parameters. Alternatively, you could use secrets.
52+
An example is provided at [`kubewatch-configmap.yaml`](https://github.com/bitnami-labs/kubewatch/blob/master/kubewatch-configmap.yaml), do not forget to update your own slack channel and token parameters. Alternatively, you could use secrets.
5353

5454
Create k8s configmap:
5555

5656
```console
5757
$ kubectl create -f kubewatch-configmap.yaml
5858
```
59-
Create the [Pod](https://github.com/skippbox/kubewatch/blob/master/kubewatch.yaml) directly, or create your own deployment:
59+
Create the [Pod](https://github.com/bitnami-labs/kubewatch/blob/master/kubewatch.yaml) directly, or create your own deployment:
6060

6161
```console
6262
$ kubectl create -f kubewatch.yaml
@@ -118,7 +118,7 @@ kubewatch-builder latest 6b2d325a3b88 About a minute ago
118118
## Download kubewatch package
119119

120120
```console
121-
$ go get -u github.com/skippbox/kubewatch
121+
$ go get -u github.com/bitnami-labs/kubewatch
122122
```
123123

124124
## Configuration

cmd/hipchat.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package cmd
1818

1919
import (
2020
"github.com/Sirupsen/logrus"
21-
"github.com/skippbox/kubewatch/config"
21+
"github.com/bitnami-labs/kubewatch/config"
2222
"github.com/spf13/cobra"
2323
)
2424

cmd/resource.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package cmd
1818

1919
import (
2020
"github.com/Sirupsen/logrus"
21-
"github.com/skippbox/kubewatch/config"
21+
"github.com/bitnami-labs/kubewatch/config"
2222
"github.com/spf13/cobra"
2323
)
2424

cmd/root.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import (
2323
"github.com/spf13/cobra"
2424
"github.com/spf13/viper"
2525

26-
c "github.com/skippbox/kubewatch/pkg/client"
27-
"github.com/skippbox/kubewatch/config"
26+
c "github.com/bitnami-labs/kubewatch/pkg/client"
27+
"github.com/bitnami-labs/kubewatch/config"
2828
"github.com/Sirupsen/logrus"
2929
)
3030

cmd/slack.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package cmd
1818

1919
import (
2020
"github.com/spf13/cobra"
21-
"github.com/skippbox/kubewatch/config"
21+
"github.com/bitnami-labs/kubewatch/config"
2222
"github.com/Sirupsen/logrus"
2323
)
2424

@@ -59,4 +59,4 @@ var slackConfigCmd = &cobra.Command{
5959
func init() {
6060
slackConfigCmd.Flags().StringP("channel", "c", "", "Specify slack channel")
6161
slackConfigCmd.Flags().StringP("token", "t", "", "Specify slack token")
62-
}
62+
}

docs/design.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ With each event get from k8s and matched filtering from configuration, it is pas
2727

2828
More handlers will be added in future.
2929

30-
Each handler must implement the [Handler interface](https://github.com/skippbox/kubewatch/blob/master/pkg/handlers/handler.go#L31)
30+
Each handler must implement the [Handler interface](https://github.com/bitnami-labs/kubewatch/blob/master/pkg/handlers/handler.go#L31)

main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ limitations under the License.
1616

1717
package main
1818

19-
import "github.com/skippbox/kubewatch/cmd"
19+
import "github.com/bitnami-labs/kubewatch/cmd"
2020

2121
func main() {
2222
cmd.Execute()
23-
}
23+
}

pkg/client/run.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ package client
1919
import (
2020
"log"
2121

22-
"github.com/skippbox/kubewatch/config"
23-
"github.com/skippbox/kubewatch/pkg/handlers"
24-
"github.com/skippbox/kubewatch/pkg/handlers/slack"
25-
"github.com/skippbox/kubewatch/pkg/controller"
26-
"github.com/skippbox/kubewatch/pkg/handlers/hipchat"
22+
"github.com/bitnami-labs/kubewatch/config"
23+
"github.com/bitnami-labs/kubewatch/pkg/handlers"
24+
"github.com/bitnami-labs/kubewatch/pkg/handlers/slack"
25+
"github.com/bitnami-labs/kubewatch/pkg/controller"
26+
"github.com/bitnami-labs/kubewatch/pkg/handlers/hipchat"
2727
)
2828

2929
// Run runs the event loop processing with given handler

pkg/handlers/handler.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ limitations under the License.
1717
package handlers
1818

1919
import (
20-
"github.com/skippbox/kubewatch/config"
21-
"github.com/skippbox/kubewatch/pkg/handlers/slack"
22-
"github.com/skippbox/kubewatch/pkg/handlers/hipchat"
20+
"github.com/bitnami-labs/kubewatch/config"
21+
"github.com/bitnami-labs/kubewatch/pkg/handlers/slack"
22+
"github.com/bitnami-labs/kubewatch/pkg/handlers/hipchat"
2323
)
2424

2525
// Handler is implemented by any handler.

pkg/handlers/hipchat/hipchat.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ import (
2323

2424
hipchat "github.com/tbruyelle/hipchat-go/hipchat"
2525

26-
"github.com/skippbox/kubewatch/config"
27-
"github.com/skippbox/kubewatch/pkg/event"
28-
kbEvent "github.com/skippbox/kubewatch/pkg/event"
26+
"github.com/bitnami-labs/kubewatch/config"
27+
"github.com/bitnami-labs/kubewatch/pkg/event"
28+
kbEvent "github.com/bitnami-labs/kubewatch/pkg/event"
2929
"net/url"
3030
)
3131

pkg/handlers/hipchat/hipchat_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"reflect"
2222
"testing"
2323

24-
"github.com/skippbox/kubewatch/config"
24+
"github.com/bitnami-labs/kubewatch/config"
2525
)
2626

2727
func TestHipchatInit(t *testing.T) {

pkg/handlers/slack/slack.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ import (
2323

2424
"github.com/nlopes/slack"
2525

26-
"github.com/skippbox/kubewatch/config"
27-
"github.com/skippbox/kubewatch/pkg/event"
28-
kbEvent "github.com/skippbox/kubewatch/pkg/event"
26+
"github.com/bitnami-labs/kubewatch/config"
27+
"github.com/bitnami-labs/kubewatch/pkg/event"
28+
kbEvent "github.com/bitnami-labs/kubewatch/pkg/event"
2929
)
3030

3131
var slackColors = map[string]string{

pkg/handlers/slack/slack_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"reflect"
2222
"testing"
2323

24-
"github.com/skippbox/kubewatch/config"
24+
"github.com/bitnami-labs/kubewatch/config"
2525
)
2626

2727
func TestSlackInit(t *testing.T) {

0 commit comments

Comments
 (0)