Skip to content

Commit

Permalink
Rename vmware-tanzu --> projectcontour
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Sloka <slokas@vmware.com>
  • Loading branch information
stevesloka committed Jan 8, 2020
1 parent 1407cbf commit 858ce06
Show file tree
Hide file tree
Showing 21 changed files with 43 additions and 43 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: go
go_import_path: github.com/vmware-tanzu/gimbal
go_import_path: github.com/projectcontour/gimbal
go:
- 1.13.x

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ RUN go mod download
COPY cmd cmd
COPY pkg pkg

RUN CGO_ENABLED=0 GOOS=linux GOFLAGS=-ldflags=-w go build -o /go/bin/kubernetes-discoverer -ldflags=-s -v github.com/vmware-tanzu/gimbal/cmd/kubernetes-discoverer
RUN CGO_ENABLED=0 GOOS=linux GOFLAGS=-ldflags=-w go build -o /go/bin/openstack-discoverer -ldflags=-s -v github.com/vmware-tanzu/gimbal/cmd/openstack-discoverer
RUN CGO_ENABLED=0 GOOS=linux GOFLAGS=-ldflags=-w go build -o /go/bin/kubernetes-discoverer -ldflags=-s -v github.com/projectcontour/gimbal/cmd/kubernetes-discoverer
RUN CGO_ENABLED=0 GOOS=linux GOFLAGS=-ldflags=-w go build -o /go/bin/openstack-discoverer -ldflags=-s -v github.com/projectcontour/gimbal/cmd/openstack-discoverer

FROM scratch AS final
COPY --from=build /go/bin/kubernetes-discoverer /go/bin/kubernetes-discoverer
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# <img src="docs/images/gimbal-logo.png" width="400px" > [![Build Status](https://travis-ci.org/vmware-tanzu/gimbal.svg?branch=master)](https://travis-ci.org/vmware-tanzu/gimbal)
# <img src="docs/images/gimbal-logo.png" width="400px" > [![Build Status](https://travis-ci.org/projectcontour/gimbal.svg?branch=master)](https://travis-ci.org/projectcontour/gimbal)

## Overview

Expand Down Expand Up @@ -34,11 +34,11 @@ Documentation for all the Gimbal components can be found in the [docs directory]

* Upstream Kubernetes Pods and OpenStack VMs must be routable from the Gimbal load balancing cluster.
* Support is not available for Kubernetes clusters with overlay networks.
* We are looking for community feedback on design requirements for a solution. A possible option is one GRE tunnel per upstream cluster. [Feedback welcome here](https://github.com/vmware-tanzu/gimbal/issues/39)!
* We are looking for community feedback on design requirements for a solution. A possible option is one GRE tunnel per upstream cluster. [Feedback welcome here](https://github.com/projectcontour/gimbal/issues/39)!

## Troubleshooting

If you encounter any problems that the documentation does not address, please [file an issue](https://github.com/vmware-tanzu/gimbal/issues) or talk to us on the Kubernetes Slack team channel [#gimbal](https://kubernetes.slack.com/messages/gimbal).
If you encounter any problems that the documentation does not address, please [file an issue](https://github.com/projectcontour/gimbal/issues) or talk to us on the Kubernetes Slack team channel [#gimbal](https://kubernetes.slack.com/messages/gimbal).

## Contributing

Expand All @@ -51,4 +51,4 @@ Thanks for taking the time to join our community and start contributing!

### Pull Requests

- We welcome pull requests. Fee free to dig through the [issues](https://github.com/vmware-tanzu/gimbal/issues) and jump in.
- We welcome pull requests. Fee free to dig through the [issues](https://github.com/projectcontour/gimbal/issues) and jump in.
2 changes: 1 addition & 1 deletion SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

Thanks for trying out Gimbal! We welcome all feedback, please consider opening an issue:

- [Issues](https://github.com/vmware-tanzu/gimbal/issues)
- [Issues](https://github.com/projectcontour/gimbal/issues)
10 changes: 5 additions & 5 deletions cmd/kubernetes-discoverer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ import (
"os"
"time"

"github.com/vmware-tanzu/gimbal/pkg/buildinfo"
"github.com/projectcontour/gimbal/pkg/buildinfo"

"github.com/projectcontour/gimbal/pkg/k8s"
localmetrics "github.com/projectcontour/gimbal/pkg/metrics"
"github.com/projectcontour/gimbal/pkg/signals"
"github.com/projectcontour/gimbal/pkg/util"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/sirupsen/logrus"
"github.com/vmware-tanzu/gimbal/pkg/k8s"
localmetrics "github.com/vmware-tanzu/gimbal/pkg/metrics"
"github.com/vmware-tanzu/gimbal/pkg/signals"
"github.com/vmware-tanzu/gimbal/pkg/util"
_ "k8s.io/api/core/v1"
kubeinformers "k8s.io/client-go/informers"
)
Expand Down
12 changes: 6 additions & 6 deletions cmd/openstack-discoverer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ import (
"os"
"time"

"github.com/vmware-tanzu/gimbal/pkg/buildinfo"
"github.com/vmware-tanzu/gimbal/pkg/openstack"
"github.com/projectcontour/gimbal/pkg/buildinfo"
"github.com/projectcontour/gimbal/pkg/openstack"

"github.com/gophercloud/gophercloud"
gopheropenstack "github.com/gophercloud/gophercloud/openstack"
"github.com/projectcontour/gimbal/pkg/k8s"
localmetrics "github.com/projectcontour/gimbal/pkg/metrics"
"github.com/projectcontour/gimbal/pkg/signals"
"github.com/projectcontour/gimbal/pkg/util"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/sirupsen/logrus"
"github.com/vmware-tanzu/gimbal/pkg/k8s"
localmetrics "github.com/vmware-tanzu/gimbal/pkg/metrics"
"github.com/vmware-tanzu/gimbal/pkg/signals"
"github.com/vmware-tanzu/gimbal/pkg/util"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion deployment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
- A copy of this repository. Download, or clone:

```sh
$ git clone git@github.com:vmware-tanzu/gimbal.git
$ git clone git@github.com:projectcontour/gimbal.git
```

- A single Kubernetes cluster to deploy Gimbal
Expand Down
10 changes: 5 additions & 5 deletions docs/route.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Route Specification

The core of Gimbal is IngressRoutes, which allow traffic to be routed into one or more applications. This section will discuss how to utilize [Contour IngressRoute](https://github.com/vmware-tanzu/contour/blob/master/docs/ingressroute.md) objects to create these definitions.
The core of Gimbal is IngressRoutes, which allow traffic to be routed into one or more applications. This section will discuss how to utilize [Contour IngressRoute](https://github.com/projectcontour/contour/blob/master/docs/ingressroute.md) objects to create these definitions.

Before beginning it is important to understand how service discovery functions within Gimbal. The Discoverer components should be deployed per upstream cluster. Once synchronized, services will show up in your team namespace with the cluster name appended.

Expand All @@ -27,7 +27,7 @@ spec:

## IngressRoute Features

The IngressRoute API provides a number of [enhancements](https://github.com/vmware-tanzu/contour/blob/master/docs/ingressroute.md#key-ingressroute-benefits) over Kubernetes Ingress:
The IngressRoute API provides a number of [enhancements](https://github.com/projectcontour/contour/blob/master/docs/ingressroute.md#key-ingressroute-benefits) over Kubernetes Ingress:

* Weight shifting
* Multiple services per route
Expand All @@ -36,15 +36,15 @@ The IngressRoute API provides a number of [enhancements](https://github.com/vmwa

## IngressRoute Delegation

Gimbal's multi-team support is enabled through Contour's [IngressRoute Delegation](https://github.com/vmware-tanzu/contour/blob/master/docs/ingressroute.md#ingressroute-delegation).
Gimbal's multi-team support is enabled through Contour's [IngressRoute Delegation](https://github.com/projectcontour/contour/blob/master/docs/ingressroute.md#ingressroute-delegation).

### Restricted root namespaces

Contour has an [enforcing mode](https://github.com/vmware-tanzu/contour/blob/master/docs/ingressroute.md#restricted-root-namespaces) which accepts a list of namespaces where root IngressRoutes are valid.
Contour has an [enforcing mode](https://github.com/projectcontour/contour/blob/master/docs/ingressroute.md#restricted-root-namespaces) which accepts a list of namespaces where root IngressRoutes are valid.
Only users permitted to operate in those namespaces can therefore create IngressRoutes with the `virtualhost` field.

This restricted mode is enabled in Contour by specifying a command line flag, `--ingressroute-root-namespaces`, which will restrict Contour to only searching the defined namespaces for root IngressRoutes.

## Additional Information

More information regarding IngressRoutes can be found in the [Contour Documentation](https://github.com/vmware-tanzu/contour/blob/master/docs/ingressroute.md)
More information regarding IngressRoutes can be found in the [Contour Documentation](https://github.com/projectcontour/contour/blob/master/docs/ingressroute.md)
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/vmware-tanzu/gimbal
module github.com/projectcontour/gimbal

go 1.13

Expand Down
6 changes: 3 additions & 3 deletions pkg/k8s/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ package k8s
import (
"fmt"

"github.com/vmware-tanzu/gimbal/pkg/translator"
"github.com/projectcontour/gimbal/pkg/translator"

"github.com/sirupsen/logrus"

localmetrics "github.com/vmware-tanzu/gimbal/pkg/metrics"
"github.com/vmware-tanzu/gimbal/pkg/sync"
localmetrics "github.com/projectcontour/gimbal/pkg/metrics"
"github.com/projectcontour/gimbal/pkg/sync"
v1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/apimachinery/pkg/util/runtime"
Expand Down
4 changes: 2 additions & 2 deletions pkg/k8s/controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import (
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"

localmetrics "github.com/projectcontour/gimbal/pkg/metrics"
"github.com/projectcontour/gimbal/pkg/sync"
"github.com/prometheus/client_golang/prometheus"
localmetrics "github.com/vmware-tanzu/gimbal/pkg/metrics"
"github.com/vmware-tanzu/gimbal/pkg/sync"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
kubeinformers "k8s.io/client-go/informers"
Expand Down
2 changes: 1 addition & 1 deletion pkg/k8s/translate.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
package k8s

import (
"github.com/vmware-tanzu/gimbal/pkg/translator"
"github.com/projectcontour/gimbal/pkg/translator"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/openstack/httplogger.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"net/http/httptrace"
"time"

localmetrics "github.com/projectcontour/gimbal/pkg/metrics"
"github.com/sirupsen/logrus"
localmetrics "github.com/vmware-tanzu/gimbal/pkg/metrics"
)

// LogRoundTripper satisfies the http.RoundTripper interface and is used to
Expand Down
6 changes: 3 additions & 3 deletions pkg/openstack/reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ import (
"strings"
"time"

"github.com/vmware-tanzu/gimbal/pkg/translator"
"github.com/projectcontour/gimbal/pkg/translator"

"github.com/gophercloud/gophercloud/openstack/identity/v3/projects"
"github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/lbaas_v2/loadbalancers"
"github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/lbaas_v2/pools"
localmetrics "github.com/projectcontour/gimbal/pkg/metrics"
"github.com/projectcontour/gimbal/pkg/sync"
"github.com/sirupsen/logrus"
localmetrics "github.com/vmware-tanzu/gimbal/pkg/metrics"
"github.com/vmware-tanzu/gimbal/pkg/sync"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
Expand Down
2 changes: 1 addition & 1 deletion pkg/openstack/translate.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"strconv"
"strings"

"github.com/vmware-tanzu/gimbal/pkg/translator"
"github.com/projectcontour/gimbal/pkg/translator"

"github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/lbaas_v2/listeners"
"github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/lbaas_v2/loadbalancers"
Expand Down
2 changes: 1 addition & 1 deletion pkg/sync/endpoints.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import (
"encoding/json"
"fmt"

localmetrics "github.com/projectcontour/gimbal/pkg/metrics"
"github.com/sirupsen/logrus"
localmetrics "github.com/vmware-tanzu/gimbal/pkg/metrics"
v1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion pkg/sync/endpoints_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ import (
"testing"
"time"

localmetrics "github.com/projectcontour/gimbal/pkg/metrics"
"github.com/prometheus/client_golang/prometheus"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
localmetrics "github.com/vmware-tanzu/gimbal/pkg/metrics"

"github.com/sirupsen/logrus"
v1 "k8s.io/api/core/v1"
Expand Down
2 changes: 1 addition & 1 deletion pkg/sync/queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ package sync
import (
"time"

localmetrics "github.com/projectcontour/gimbal/pkg/metrics"
"github.com/sirupsen/logrus"
localmetrics "github.com/vmware-tanzu/gimbal/pkg/metrics"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/runtime"
"k8s.io/apimachinery/pkg/util/wait"
Expand Down
2 changes: 1 addition & 1 deletion pkg/sync/queue_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"github.com/prometheus/client_golang/prometheus"
"github.com/stretchr/testify/require"

"github.com/projectcontour/gimbal/pkg/metrics"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
"github.com/vmware-tanzu/gimbal/pkg/metrics"
v1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/client-go/kubernetes/fake"
Expand Down
2 changes: 1 addition & 1 deletion pkg/sync/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import (
"encoding/json"
"fmt"

localmetrics "github.com/projectcontour/gimbal/pkg/metrics"
"github.com/sirupsen/logrus"
localmetrics "github.com/vmware-tanzu/gimbal/pkg/metrics"
v1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion pkg/sync/service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

localmetrics "github.com/projectcontour/gimbal/pkg/metrics"
"github.com/sirupsen/logrus"
localmetrics "github.com/vmware-tanzu/gimbal/pkg/metrics"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
Expand Down

0 comments on commit 858ce06

Please sign in to comment.