Skip to content

Commit db03b3f

Browse files
committed
Update imports and add migration notice
1 parent 56a05d7 commit db03b3f

29 files changed

+62
-46
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ release/
33
.env
44
cover.out
55
wave
6+
**/.DS_Store

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Download the dependencies using [`dep`](https://github.com/golang/dep).
77

88
```bash
99
cd $GOPATH/src/github.com # Create this directory if it doesn't exist
10-
git clone [email protected]:<YOUR_FORK>/wave pusher/wave
10+
git clone [email protected]:<YOUR_FORK>/wave wave-k8s/wave
1111
dep ensure # Installs dependencies to vendor folder.
1212
```
1313

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ARG VERSION=undefined
77
RUN curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
88

99
# Copy in the go src
10-
WORKDIR /go/src/github.com/pusher/wave
10+
WORKDIR /go/src/github.com/wave-k8s/wave
1111
COPY Gopkg.lock Gopkg.lock
1212
COPY Gopkg.toml Gopkg.toml
1313

@@ -18,11 +18,11 @@ COPY pkg/ pkg/
1818
COPY cmd/ cmd/
1919

2020
# Build
21-
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o wave -ldflags="-X main.VERSION=${VERSION}" github.com/pusher/wave/cmd/manager
21+
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o wave -ldflags="-X main.VERSION=${VERSION}" github.com/wave-k8s/wave/cmd/manager
2222

2323
# Copy the controller-manager into a thin image
2424
FROM alpine:3.9
2525
RUN apk --no-cache add ca-certificates
2626
WORKDIR /bin
27-
COPY --from=builder /go/src/github.com/pusher/wave/wave .
27+
COPY --from=builder /go/src/github.com/wave-k8s/wave/wave .
2828
ENTRYPOINT ["/bin/wave"]

Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ VERSION := $(shell git describe --always --dirty --tags 2>/dev/null || echo "und
66
ECHO := echo -e
77

88
# Image URL to use all building/pushing image targets
9-
IMG ?= quay.io/pusher/wave
9+
IMG ?= quay.io/wave-k8s/wave
1010

1111
.NOTPARALLEL:
1212

@@ -88,16 +88,16 @@ test: vendor generate manifests
8888

8989
# Build manager binary
9090
$(BINARY): generate fmt vet
91-
CGO_ENABLED=0 $(GO) build -o $(BINARY) -ldflags="-X main.VERSION=${VERSION}" github.com/pusher/wave/cmd/manager
91+
CGO_ENABLED=0 $(GO) build -o $(BINARY) -ldflags="-X main.VERSION=${VERSION}" github.com/wave-k8s/wave/cmd/manager
9292

9393
# Build all arch binaries
9494
release: test docker-build docker-tag docker-push
9595
mkdir -p release
96-
GOOS=darwin GOARCH=amd64 go build -ldflags="-X main.VERSION=${VERSION}" -o release/$(BINARY)-darwin-amd64 github.com/pusher/wave/cmd/manager
97-
GOOS=linux GOARCH=amd64 go build -ldflags="-X main.VERSION=${VERSION}" -o release/$(BINARY)-linux-amd64 github.com/pusher/wave/cmd/manager
98-
GOOS=linux GOARCH=arm64 go build -ldflags="-X main.VERSION=${VERSION}" -o release/$(BINARY)-linux-arm64 github.com/pusher/wave/cmd/manager
99-
GOOS=linux GOARCH=arm GOARM=6 go build -ldflags="-X main.VERSION=${VERSION}" -o release/$(BINARY)-linux-armv6 github.com/pusher/wave/cmd/manager
100-
GOOS=windows GOARCH=amd64 go build -ldflags="-X main.VERSION=${VERSION}" -o release/$(BINARY)-windows-amd64 github.com/pusher/wave/cmd/manager
96+
GOOS=darwin GOARCH=amd64 go build -ldflags="-X main.VERSION=${VERSION}" -o release/$(BINARY)-darwin-amd64 github.com/wave-k8s/wave/cmd/manager
97+
GOOS=linux GOARCH=amd64 go build -ldflags="-X main.VERSION=${VERSION}" -o release/$(BINARY)-linux-amd64 github.com/wave-k8s/wave/cmd/manager
98+
GOOS=linux GOARCH=arm64 go build -ldflags="-X main.VERSION=${VERSION}" -o release/$(BINARY)-linux-arm64 github.com/wave-k8s/wave/cmd/manager
99+
GOOS=linux GOARCH=arm GOARM=6 go build -ldflags="-X main.VERSION=${VERSION}" -o release/$(BINARY)-linux-armv6 github.com/wave-k8s/wave/cmd/manager
100+
GOOS=windows GOARCH=amd64 go build -ldflags="-X main.VERSION=${VERSION}" -o release/$(BINARY)-windows-amd64 github.com/wave-k8s/wave/cmd/manager
101101
$(SHASUM) -a 256 release/$(BINARY)-darwin-amd64 > release/$(BINARY)-darwin-amd64-sha256sum.txt
102102
$(SHASUM) -a 256 release/$(BINARY)-linux-amd64 > release/$(BINARY)-linux-amd64-sha256sum.txt
103103
$(SHASUM) -a 256 release/$(BINARY)-linux-arm64 > release/$(BINARY)-linux-arm64-sha256sum.txt

PROJECT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version: "1"
22
domain: pusher.com
3-
repo: github.com/pusher/wave
3+
repo: github.com/wave-k8s/wave

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
<img src="./wave-logo.svg" width=150 height=150 alt="Wave Logo"/>
22

3+
# Note: Project Migration in Progress
4+
5+
Wave is currently undergoing migration to a separate Github organisation and infrastructure.
6+
Since the previous maintainers are no longer able to look after this project and with their agreement,
7+
Wave will be maintained as a stand-alone entity.
8+
9+
Over the next few weeks, once CI and container builds are re-established and references updated, efforts
10+
will be made to resolve some of the outstanding Issues and Pull Requests.
11+
If this raises any questions or concerns, please feel free to reias them in Issues.
12+
13+
If you would like to be involved in the long-term future of Wave, please feel free to reach out.
14+
15+
---
16+
17+
318
# Wave
419

520
Wave watches Deployments within a Kubernetes cluster and ensures that each
@@ -68,7 +83,7 @@ configuration as an example of how to install the controller in the
6883
A public docker image is available on [Quay](https://quay.io/repository/pusher/wave).
6984

7085
```
71-
quay.io/pusher/wave
86+
quay.io/wave-k8s/wave
7287
```
7388

7489
#### RBAC

cmd/manager/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ import (
2424
"time"
2525

2626
"github.com/go-logr/glogr"
27-
"github.com/pusher/wave/pkg/apis"
28-
"github.com/pusher/wave/pkg/controller"
29-
"github.com/pusher/wave/pkg/webhook"
3027
flag "github.com/spf13/pflag"
28+
"github.com/wave-k8s/wave/pkg/apis"
29+
"github.com/wave-k8s/wave/pkg/controller"
30+
"github.com/wave-k8s/wave/pkg/webhook"
3131
_ "k8s.io/client-go/plugin/pkg/client/auth"
3232
"sigs.k8s.io/controller-runtime/pkg/client/config"
3333
"sigs.k8s.io/controller-runtime/pkg/manager"

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ appVersion: v0.4.0
66
keywords:
77
- wave
88
- kubernetes
9-
home: https://github.com/pusher/wave
9+
home: https://github.com/wave-k8s/wave
1010
sources:
11-
- https://github.com/pusher/wave
11+
- https://github.com/wave-k8s/wave

helm/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ global:
1010
# Annotations for the wave pods
1111
annotations: {}
1212
image:
13-
name: quay.io/pusher/wave
13+
name: quay.io/wave-k8s/wave
1414
tag: v0.4.0
1515
pullPolicy: IfNotPresent
1616

pkg/controller/add_daemonset.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package controller
1818

1919
import (
20-
"github.com/pusher/wave/pkg/controller/daemonset"
20+
"github.com/wave-k8s/wave/pkg/controller/daemonset"
2121
)
2222

2323
func init() {

pkg/controller/add_deployment.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package controller
1818

1919
import (
20-
"github.com/pusher/wave/pkg/controller/deployment"
20+
"github.com/wave-k8s/wave/pkg/controller/deployment"
2121
)
2222

2323
func init() {

pkg/controller/add_statefulset.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package controller
1818

1919
import (
20-
"github.com/pusher/wave/pkg/controller/statefulset"
20+
"github.com/wave-k8s/wave/pkg/controller/statefulset"
2121
)
2222

2323
func init() {

pkg/controller/daemonset/daemonset_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package daemonset
1919
import (
2020
"context"
2121

22-
"github.com/pusher/wave/pkg/core"
22+
"github.com/wave-k8s/wave/pkg/core"
2323
appsv1 "k8s.io/api/apps/v1"
2424
corev1 "k8s.io/api/core/v1"
2525
"k8s.io/apimachinery/pkg/api/errors"

pkg/controller/daemonset/daemonset_controller_suite_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ import (
2222
"sync"
2323
"testing"
2424

25-
"github.com/pusher/wave/test/reporters"
25+
"github.com/wave-k8s/wave/test/reporters"
2626

2727
"github.com/go-logr/glogr"
2828
. "github.com/onsi/ginkgo"
2929
. "github.com/onsi/gomega"
30-
"github.com/pusher/wave/pkg/apis"
30+
"github.com/wave-k8s/wave/pkg/apis"
3131
"k8s.io/client-go/kubernetes/scheme"
3232
"k8s.io/client-go/rest"
3333
"sigs.k8s.io/controller-runtime/pkg/envtest"

pkg/controller/daemonset/daemonset_controller_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ import (
2525
. "github.com/onsi/ginkgo"
2626
. "github.com/onsi/gomega"
2727
"github.com/prometheus/client_golang/prometheus"
28-
"github.com/pusher/wave/pkg/core"
29-
"github.com/pusher/wave/test/utils"
28+
"github.com/wave-k8s/wave/pkg/core"
29+
"github.com/wave-k8s/wave/test/utils"
3030
appsv1 "k8s.io/api/apps/v1"
3131
corev1 "k8s.io/api/core/v1"
3232
"k8s.io/apimachinery/pkg/api/errors"

pkg/controller/deployment/deployment_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package deployment
1919
import (
2020
"context"
2121

22-
"github.com/pusher/wave/pkg/core"
22+
"github.com/wave-k8s/wave/pkg/core"
2323
appsv1 "k8s.io/api/apps/v1"
2424
corev1 "k8s.io/api/core/v1"
2525
"k8s.io/apimachinery/pkg/api/errors"

pkg/controller/deployment/deployment_controller_suite_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ import (
2525
"github.com/go-logr/glogr"
2626
. "github.com/onsi/ginkgo"
2727
. "github.com/onsi/gomega"
28-
"github.com/pusher/wave/pkg/apis"
29-
"github.com/pusher/wave/test/reporters"
28+
"github.com/wave-k8s/wave/pkg/apis"
29+
"github.com/wave-k8s/wave/test/reporters"
3030
"k8s.io/client-go/kubernetes/scheme"
3131
"k8s.io/client-go/rest"
3232
"sigs.k8s.io/controller-runtime/pkg/envtest"

pkg/controller/deployment/deployment_controller_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ import (
2525
. "github.com/onsi/ginkgo"
2626
. "github.com/onsi/gomega"
2727
"github.com/prometheus/client_golang/prometheus"
28-
"github.com/pusher/wave/pkg/core"
29-
"github.com/pusher/wave/test/utils"
28+
"github.com/wave-k8s/wave/pkg/core"
29+
"github.com/wave-k8s/wave/test/utils"
3030
appsv1 "k8s.io/api/apps/v1"
3131
corev1 "k8s.io/api/core/v1"
3232
"k8s.io/apimachinery/pkg/api/errors"

pkg/controller/statefulset/statefulset_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package statefulset
1919
import (
2020
"context"
2121

22-
"github.com/pusher/wave/pkg/core"
22+
"github.com/wave-k8s/wave/pkg/core"
2323
appsv1 "k8s.io/api/apps/v1"
2424
corev1 "k8s.io/api/core/v1"
2525
"k8s.io/apimachinery/pkg/api/errors"

pkg/controller/statefulset/statefulset_controller_suite_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ import (
2222
"sync"
2323
"testing"
2424

25-
"github.com/pusher/wave/test/reporters"
25+
"github.com/wave-k8s/wave/test/reporters"
2626

2727
"github.com/go-logr/glogr"
2828
. "github.com/onsi/ginkgo"
2929
. "github.com/onsi/gomega"
30-
"github.com/pusher/wave/pkg/apis"
30+
"github.com/wave-k8s/wave/pkg/apis"
3131
"k8s.io/client-go/kubernetes/scheme"
3232
"k8s.io/client-go/rest"
3333
"sigs.k8s.io/controller-runtime/pkg/envtest"

pkg/controller/statefulset/statefulset_controller_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ import (
2525
. "github.com/onsi/ginkgo"
2626
. "github.com/onsi/gomega"
2727
"github.com/prometheus/client_golang/prometheus"
28-
"github.com/pusher/wave/pkg/core"
29-
"github.com/pusher/wave/test/utils"
28+
"github.com/wave-k8s/wave/pkg/core"
29+
"github.com/wave-k8s/wave/test/utils"
3030
appsv1 "k8s.io/api/apps/v1"
3131
corev1 "k8s.io/api/core/v1"
3232
"k8s.io/apimachinery/pkg/api/errors"

pkg/core/children_test.go

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

2323
. "github.com/onsi/ginkgo"
2424
. "github.com/onsi/gomega"
25-
"github.com/pusher/wave/test/utils"
25+
"github.com/wave-k8s/wave/test/utils"
2626
appsv1 "k8s.io/api/apps/v1"
2727
corev1 "k8s.io/api/core/v1"
2828
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

pkg/core/delete_test.go

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

2525
. "github.com/onsi/ginkgo"
2626
. "github.com/onsi/gomega"
27-
"github.com/pusher/wave/test/utils"
27+
"github.com/wave-k8s/wave/test/utils"
2828
appsv1 "k8s.io/api/apps/v1"
2929
corev1 "k8s.io/api/core/v1"
3030
"k8s.io/apimachinery/pkg/api/errors"

pkg/core/finalizer_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package core
1919
import (
2020
. "github.com/onsi/ginkgo"
2121
. "github.com/onsi/gomega"
22-
"github.com/pusher/wave/test/utils"
22+
"github.com/wave-k8s/wave/test/utils"
2323
appsv1 "k8s.io/api/apps/v1"
2424
)
2525

pkg/core/handler_test.go

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

2525
. "github.com/onsi/ginkgo"
2626
. "github.com/onsi/gomega"
27-
"github.com/pusher/wave/test/utils"
27+
"github.com/wave-k8s/wave/test/utils"
2828
appsv1 "k8s.io/api/apps/v1"
2929
corev1 "k8s.io/api/core/v1"
3030
"k8s.io/apimachinery/pkg/api/errors"

pkg/core/hash_test.go

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

2323
. "github.com/onsi/ginkgo"
2424
. "github.com/onsi/gomega"
25-
"github.com/pusher/wave/test/utils"
25+
"github.com/wave-k8s/wave/test/utils"
2626
appsv1 "k8s.io/api/apps/v1"
2727
corev1 "k8s.io/api/core/v1"
2828
"sigs.k8s.io/controller-runtime/pkg/client"

pkg/core/owner_references_test.go

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

2323
. "github.com/onsi/ginkgo"
2424
. "github.com/onsi/gomega"
25-
"github.com/pusher/wave/test/utils"
25+
"github.com/wave-k8s/wave/test/utils"
2626
appsv1 "k8s.io/api/apps/v1"
2727
corev1 "k8s.io/api/core/v1"
2828
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

pkg/core/required_annotation_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package core
1919
import (
2020
. "github.com/onsi/ginkgo"
2121
. "github.com/onsi/gomega"
22-
"github.com/pusher/wave/test/utils"
22+
"github.com/wave-k8s/wave/test/utils"
2323
appsv1 "k8s.io/api/apps/v1"
2424
)
2525

pkg/core/wave_suite_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ import (
2525
"github.com/go-logr/glogr"
2626
. "github.com/onsi/ginkgo"
2727
. "github.com/onsi/gomega"
28-
"github.com/pusher/wave/pkg/apis"
29-
"github.com/pusher/wave/test/reporters"
28+
"github.com/wave-k8s/wave/pkg/apis"
29+
"github.com/wave-k8s/wave/test/reporters"
3030
"k8s.io/client-go/kubernetes/scheme"
3131
"k8s.io/client-go/rest"
3232
"sigs.k8s.io/controller-runtime/pkg/envtest"

0 commit comments

Comments
 (0)