Skip to content

Commit f3424e1

Browse files
authored
Updating references for public name (#92)
Make sure our references are consistent and will align with the new repository name. NGINX Kubernetes Gateway and nginxinc/nginx-kubernetes-gateway
1 parent 6b3361a commit f3424e1

File tree

57 files changed

+158
-148
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+158
-148
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Describe the use case and detail of the change. If this PR addresses an issue on
44
### Checklist
55
Before creating a PR, run through this checklist and mark each as complete.
66

7-
- [ ] I have read the [CONTRIBUTING](https://github.com/nginxinc/nginx-gateway-kubernetes/blob/main/CONTRIBUTING.md) doc
7+
- [ ] I have read the [CONTRIBUTING](https://github.com/nginxinc/nginx-kubernetes-gateway/blob/main/CONTRIBUTING.md) doc
88
- [ ] I have added tests that prove my fix is effective or that my feature works
99
- [ ] I have checked that all unit tests pass after adding my changes
1010
- [ ] I have updated necessary documentation

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
uses: actions/cache@v3
102102
with:
103103
path: ${{ github.workspace }}/build/.out/gateway
104-
key: nginx-gateway-kubernetes-${{ github.run_id }}-${{ github.run_number }}
104+
key: nginx-kubernetes-gateway-${{ github.run_id }}-${{ github.run_number }}
105105

106106
build:
107107
name: Build Image
@@ -114,7 +114,7 @@ jobs:
114114
uses: actions/cache@v3
115115
with:
116116
path: ${{ github.workspace }}/build/.out/gateway
117-
key: nginx-gateway-kubernetes-${{ github.run_id }}-${{ github.run_number }}
117+
key: nginx-kubernetes-gateway-${{ github.run_id }}-${{ github.run_number }}
118118
- name: Docker Buildx
119119
uses: docker/setup-buildx-action@v1
120120
- name: Build Image Debian
@@ -126,7 +126,7 @@ jobs:
126126
load: true
127127
cache-from: type=gha
128128
cache-to: type=gha,mode=max
129-
tags: nginx/nginx-gateway-kubernetes:${{ needs.vars.outputs.sha }}
129+
tags: nginx/nginx-kubernetes-gateway:${{ needs.vars.outputs.sha }}
130130
build-args: |
131131
VERSION=${{ needs.vars.outputs.version }}
132132
GIT_COMMIT=${{ needs.vars.outputs.sha }}
@@ -135,20 +135,20 @@ jobs:
135135
uses: aquasecurity/trivy-action@0.2.2
136136
continue-on-error: true
137137
with:
138-
image-ref: nginx/nginx-gateway-kubernetes:${{ needs.vars.outputs.sha }}
138+
image-ref: nginx/nginx-kubernetes-gateway:${{ needs.vars.outputs.sha }}
139139
format: 'template'
140140
template: '@/contrib/sarif.tpl'
141-
output: 'trivy-results-nginx-gateway-kubernetes.sarif'
141+
output: 'trivy-results-nginx-kubernetes-gateway.sarif'
142142
ignore-unfixed: 'true'
143143
- name: Upload Trivy scan results to GitHub Security tab
144144
uses: github/codeql-action/upload-sarif@v1
145145
continue-on-error: true
146146
with:
147-
sarif_file: 'trivy-results-nginx-gateway-kubernetes.sarif'
147+
sarif_file: 'trivy-results-nginx-kubernetes-gateway.sarif'
148148
- name: Upload Scan Results
149149
uses: actions/upload-artifact@v2
150150
continue-on-error: true
151151
with:
152-
name: 'trivy-results-nginx-gateway-kubernetes.sarif'
153-
path: 'trivy-results-nginx-gateway-kubernetes.sarif'
152+
name: 'trivy-results-nginx-kubernetes-gateway.sarif'
153+
path: 'trivy-results-nginx-kubernetes-gateway.sarif'
154154
if: always()

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The following is a set of guidelines for contributing to NGINX Kubernetes Gatewa
1414
* [Git Style Guide](#git-style-guide)
1515
* [Go Style Guide](#go-style-guide)
1616

17-
[Code of Conduct](https://github.com/nginxinc/nginx-gateway-kubernetes/blob/master/CODE_OF_CONDUCT.md)
17+
[Code of Conduct](https://github.com/nginxinc/nginx-kubernetes-gateway/blob/master/CODE_OF_CONDUCT.md)
1818

1919
[Contributor License Agreement](#contributor-license-agreement)
2020

@@ -50,7 +50,7 @@ To suggest an enhancement, please create an issue on GitHub with the label `enha
5050
### Open a Pull Request
5151

5252
* Fork the repo, create a branch, submit a PR when your changes are tested and ready for review
53-
* Fill in [our pull request template](https://github.com/nginxinc/nginx-gateway-kubernetes/blob/main/.github/PULL_REQUEST_TEMPLATE.md)
53+
* Fill in [our pull request template](https://github.com/nginxinc/nginx-kubernetes-gateway/blob/main/.github/PULL_REQUEST_TEMPLATE.md)
5454

5555
Note: if you’d like to implement a new feature, please consider creating a feature request issue first to start a discussion about the feature.
5656

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION = 0.0.1
22
TAG = $(VERSION)
3-
PREFIX ?= nginx-gateway
3+
PREFIX ?= nginx-kubernetes-gateway
44

55
GIT_COMMIT = $(shell git rev-parse HEAD)
66
DATE = $(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
@@ -19,7 +19,7 @@ container: build
1919
.PHONY: build
2020
build:
2121
ifeq (${TARGET},local)
22-
CGO_ENABLED=0 GOOS=linux go build -trimpath -a -ldflags "-s -w -X main.version=${VERSION} -X main.commit=${GIT_COMMIT} -X main.date=${DATE}" -o $(OUT_DIR)/gateway github.com/nginxinc/nginx-gateway-kubernetes/cmd/gateway
22+
CGO_ENABLED=0 GOOS=linux go build -trimpath -a -ldflags "-s -w -X main.version=${VERSION} -X main.commit=${GIT_COMMIT} -X main.date=${DATE}" -o $(OUT_DIR)/gateway github.com/nginxinc/nginx-kubernetes-gateway/cmd/gateway
2323
endif
2424

2525
.PHONY: generate
@@ -71,7 +71,7 @@ vet: ## Run go vet against code.
7171

7272
.PHONY: lint
7373
lint: ## Run golangci-lint against code.
74-
docker run --pull always --rm -v $(shell pwd):/nginx-gateway-kubernetes -w /nginx-gateway-kubernetes -v $(shell go env GOCACHE):/cache/go -e GOCACHE=/cache/go -e GOLANGCI_LINT_CACHE=/cache/go -v $(shell go env GOPATH)/pkg:/go/pkg golangci/golangci-lint:latest golangci-lint --color always run
74+
docker run --pull always --rm -v $(shell pwd):/nginx-kubernetes-gateway -w /nginx-kubernetes-gateway -v $(shell go env GOCACHE):/cache/go -e GOCACHE=/cache/go -e GOLANGCI_LINT_CACHE=/cache/go -v $(shell go env GOPATH)/pkg:/go/pkg golangci/golangci-lint:latest golangci-lint --color always run
7575

7676
.PHONY: unit-test
7777
unit-test:

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![FOSSA Status](https://app.fossa.com/api/projects/custom%2B5618%2Fgithub.com%2Fnginxinc%2Fnginx-gateway-kubernetes.svg?type=shield)](https://app.fossa.com/projects/custom%2B5618%2Fgithub.com%2Fnginxinc%2Fnginx-gateway-kubernetes?ref=badge_shield)
1+
[![FOSSA Status](https://app.fossa.com/api/projects/custom%2B5618%2Fgithub.com%2Fnginxinc%2Fnginx-kubernetes-gateway.svg?type=shield)](https://app.fossa.com/projects/custom%2B5618%2Fgithub.com%2Fnginxinc%2Fnginx-kubernetes-gateway?ref=badge_shield)
22

33
# NGINX Kubernetes Gateway
44

@@ -21,29 +21,29 @@ Before you can build and run the NGINX Kubernetes Gateway, make sure you have th
2121

2222
## Build the image
2323

24-
1. Clone the repo and change into the `nginx-gateway-kubernetes` directory:
24+
1. Clone the repo and change into the `nginx-kubernetes-gateway` directory:
2525

2626
```
27-
git clone https://github.com/nginxinc/nginx-gateway-kubernetes.git
28-
cd nginx-gateway-kubernetes
27+
git clone https://github.com/nginxinc/nginx-kubernetes-gateway.git
28+
cd nginx-kubernetes-gateway
2929
```
3030

3131
1. Build the image:
3232

3333
```
34-
make PREFIX=myregistry.example.com/nginx-gateway container
34+
make PREFIX=myregistry.example.com/nginx-kubernetes-gateway container
3535
```
3636

37-
Set the `PREFIX` variable to the name of the registry you'd like to push the image to. By default, the image will be named `nginx-gateway:0.0.1`.
37+
Set the `PREFIX` variable to the name of the registry you'd like to push the image to. By default, the image will be named `nginx-kubernetes-gateway:0.0.1`.
3838

3939

4040
1. Push the image to your container registry:
4141

4242
```
43-
docker push myregistry.example.com/nginx-gateway:0.0.1
43+
docker push myregistry.example.com/nginx-kubernetes-gateway:0.0.1
4444
```
4545

46-
Make sure to substitute `myregistry.example.com/nginx-gateway` with your private registry.
46+
Make sure to substitute `myregistry.example.com/nginx-kubernetes-gateway` with your private registry.
4747

4848
## Deploy NGINX Kubernetes Gateway
4949

@@ -52,7 +52,7 @@ You can deploy NGINX Kubernetes Gateway on an existing Kubernetes 1.16+ cluster.
5252
1. Load the NGINX Kubernetes Gateway image onto your kind cluster:
5353

5454
```
55-
kind load docker-image nginx-gateway:0.0.1
55+
kind load docker-image nginx-kubernetes-gateway:0.0.1
5656
```
5757

5858
Make sure to substitute the image name with the name of the image you built.

build/Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ ARG VERSION
33
ARG GIT_COMMIT
44
ARG DATE
55

6-
WORKDIR /go/src/github.com/nginxinc/nginx-gateway-kubernetes/cmd/gateway
6+
WORKDIR /go/src/github.com/nginxinc/nginx-kubernetes-gateway/cmd/gateway
77

8-
COPY go.mod go.sum /go/src/github.com/nginxinc/nginx-gateway-kubernetes
8+
COPY go.mod go.sum /go/src/github.com/nginxinc/nginx-kubernetes-gateway
99
RUN go mod download
1010

11-
COPY cmd /go/src/github.com/nginxinc/nginx-gateway-kubernetes/cmd
12-
COPY internal /go/src/github.com/nginxinc/nginx-gateway-kubernetes/internal
13-
COPY pkg /go/src/github.com/nginxinc/nginx-gateway-kubernetes/pkg
11+
COPY cmd /go/src/github.com/nginxinc/nginx-kubernetes-gateway/cmd
12+
COPY internal /go/src/github.com/nginxinc/nginx-kubernetes-gateway/internal
13+
COPY pkg /go/src/github.com/nginxinc/nginx-kubernetes-gateway/pkg
1414
RUN CGO_ENABLED=0 GOOS=linux go build -trimpath -a -ldflags "-s -w -X main.version=${VERSION} -X main.commit=${GIT_COMMIT} -X main.date=${DATE}" -o gateway .
1515

1616
FROM alpine:3.15 as capabilizer
@@ -21,7 +21,7 @@ COPY ./build/.out/gateway /usr/bin/
2121
RUN setcap 'cap_kill=+ep' /usr/bin/gateway
2222

2323
FROM capabilizer as container-capabilizer
24-
COPY --from=builder /go/src/github.com/nginxinc/nginx-gateway-kubernetes/cmd/gateway/gateway /usr/bin/
24+
COPY --from=builder /go/src/github.com/nginxinc/nginx-kubernetes-gateway/cmd/gateway/gateway /usr/bin/
2525
RUN setcap 'cap_kill=+ep' /usr/bin/gateway
2626

2727
FROM scratch as common
@@ -32,4 +32,4 @@ FROM common as container
3232
COPY --from=container-capabilizer /usr/bin/gateway /usr/bin/
3333

3434
FROM common as local
35-
COPY --from=local-capabilizer /usr/bin/gateway /usr/bin/
35+
COPY --from=local-capabilizer /usr/bin/gateway /usr/bin/

cmd/gateway/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import (
44
"fmt"
55
"os"
66

7-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/config"
8-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/manager"
9-
107
flag "github.com/spf13/pflag"
118
"sigs.k8s.io/controller-runtime/pkg/log/zap"
9+
10+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/config"
11+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/manager"
1212
)
1313

1414
const (
@@ -43,7 +43,7 @@ func main() {
4343
GatewayControllerParam(domain, "nginx-gateway" /* TODO dynamically set */),
4444
)
4545

46-
logger.Info("Starting NGINX Gateway",
46+
logger.Info("Starting NGINX Kubernetes Gateway",
4747
"version", version,
4848
"commit", commit,
4949
"date", date)

cmd/gateway/setup_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main_test
33
import (
44
"errors"
55

6-
. "github.com/nginxinc/nginx-gateway-kubernetes/cmd/gateway"
6+
. "github.com/nginxinc/nginx-kubernetes-gateway/cmd/gateway"
77
flag "github.com/spf13/pflag"
88

99
. "github.com/onsi/ginkgo"

design/gateway-evaluation.md renamed to design/archive/gateway-evaluation.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Gateway Evaluation
2+
STATUS: Archived
23

34
This document captures the design of the initial experimental work to implement the [Gateway API](https://gateway-api.sigs.k8s.io/) using the NGINX data plane. Throughout this document we will refer to this work as "Gateway evaluation".
45

examples/cafe-example/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# Example
22

3-
In this example we deploy NGINX Gateway, a simple web application, and then configure NGINX Gateway to route traffic to that application using `HTTPRoute` resources.
3+
In this example we deploy NGINX Kubernetes Gateway, a simple web application, and then configure NGINX Gateway to route traffic to that application using `HTTPRoute` resources.
44

55
## Running the Example
66

7-
## 1. Deploy NGINX Gateway
7+
## 1. Deploy NGINX Kubernetes Gateway
88

9-
1. Follow the [installation instructions](https://github.com/nginxinc/nginx-gateway-kubernetes/blob/main/README.md#run-nginx-gateway) to deploy NGINX Gateway.
9+
1. Follow the [installation instructions](https://github.com/nginxinc/nginx-kubernetes-gateway/blob/main/README.md#run-nginx-gateway) to deploy NGINX Gateway.
1010

11-
1. Save the public IP address of NGINX Gateway into a shell variable:
11+
1. Save the public IP address of NGINX Kubernetes Gateway into a shell variable:
1212

1313
```
1414
GW_IP=XXX.YYY.ZZZ.III
1515
```
1616

17-
1. Save the port of NGINX Gateway:
17+
1. Save the port of NGINX Kubernetes Gateway:
1818

1919
```
2020
GW_PORT=<port number>

hack/update-codegen.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ fi
3232
# k8s.io/kubernetes. The output-base is needed for the generators to output into the vendor dir
3333
# instead of the $GOPATH directly. For normal projects this can be dropped.
3434
bash "${CODEGEN_PKG}"/generate-groups.sh "deepcopy,client,informer,lister" \
35-
github.com/nginxinc/nginx-gateway-kubernetes/pkg/client \
36-
github.com/nginxinc/nginx-gateway-kubernetes/pkg/apis \
35+
github.com/nginxinc/nginx-kubernetes-gateway/pkg/client \
36+
github.com/nginxinc/nginx-kubernetes-gateway/pkg/apis \
3737
gateway:v1alpha1 \
3838
--output-base "$(dirname "${BASH_SOURCE[0]}")/../../../.." \
3939
--go-header-file "${SCRIPT_ROOT}"/hack/boilerplate.go.txt

internal/events/loop.go

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@ import (
55
"fmt"
66

77
"github.com/go-logr/logr"
8-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/nginx/config"
9-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/nginx/file"
10-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/nginx/runtime"
11-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/state"
12-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/status"
138
apiv1 "k8s.io/api/core/v1"
149
"sigs.k8s.io/gateway-api/apis/v1alpha2"
10+
11+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/nginx/config"
12+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/nginx/file"
13+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/nginx/runtime"
14+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/state"
15+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/status"
1516
)
1617

1718
// EventLoop is the main event loop of the Gateway.

internal/events/loop_test.go

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,6 @@ package events_test
33
import (
44
"context"
55

6-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/events"
7-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/nginx/config"
8-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/nginx/config/configfakes"
9-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/nginx/file/filefakes"
10-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/nginx/runtime/runtimefakes"
11-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/state"
12-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/state/statefakes"
13-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/status/statusfakes"
146
. "github.com/onsi/ginkgo/v2"
157
. "github.com/onsi/gomega"
168
apiv1 "k8s.io/api/core/v1"
@@ -20,6 +12,15 @@ import (
2012
"k8s.io/apimachinery/pkg/types"
2113
"sigs.k8s.io/controller-runtime/pkg/log/zap"
2214
"sigs.k8s.io/gateway-api/apis/v1alpha2"
15+
16+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/events"
17+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/nginx/config"
18+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/nginx/config/configfakes"
19+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/nginx/file/filefakes"
20+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/nginx/runtime/runtimefakes"
21+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/state"
22+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/state/statefakes"
23+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/status/statusfakes"
2324
)
2425

2526
type unsupportedResource struct {

internal/implementations/gateway/gateway.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ package implementation
22

33
import (
44
"github.com/go-logr/logr"
5-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/config"
6-
"github.com/nginxinc/nginx-gateway-kubernetes/pkg/sdk"
7-
85
"sigs.k8s.io/gateway-api/apis/v1alpha2"
6+
7+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/config"
8+
"github.com/nginxinc/nginx-kubernetes-gateway/pkg/sdk"
99
)
1010

1111
type gatewayImplementation struct {

internal/implementations/gatewayclass/gatewayclass.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package implementation
22

33
import (
4-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/config"
5-
"github.com/nginxinc/nginx-gateway-kubernetes/pkg/sdk"
6-
74
"github.com/go-logr/logr"
85
"sigs.k8s.io/gateway-api/apis/v1alpha2"
6+
7+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/config"
8+
"github.com/nginxinc/nginx-kubernetes-gateway/pkg/sdk"
99
)
1010

1111
type gatewayClassImplementation struct {

internal/implementations/gatewayconfig/gatewayconfig.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ package gatewayconfig
22

33
import (
44
"github.com/go-logr/logr"
5-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/config"
6-
"github.com/nginxinc/nginx-gateway-kubernetes/pkg/sdk"
75

8-
nginxgwv1alpha1 "github.com/nginxinc/nginx-gateway-kubernetes/pkg/apis/gateway/v1alpha1"
6+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/config"
7+
nginxgwv1alpha1 "github.com/nginxinc/nginx-kubernetes-gateway/pkg/apis/gateway/v1alpha1"
8+
"github.com/nginxinc/nginx-kubernetes-gateway/pkg/sdk"
99
)
1010

1111
type gatewayConfigImplementation struct {

internal/implementations/httproute/httproute.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ package implementation
22

33
import (
44
"github.com/go-logr/logr"
5-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/config"
6-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/events"
7-
"github.com/nginxinc/nginx-gateway-kubernetes/pkg/sdk"
85
"k8s.io/apimachinery/pkg/types"
9-
106
"sigs.k8s.io/gateway-api/apis/v1alpha2"
7+
8+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/config"
9+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/events"
10+
"github.com/nginxinc/nginx-kubernetes-gateway/pkg/sdk"
1111
)
1212

1313
type httpRouteImplementation struct {

internal/implementations/service/service.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ package service
22

33
import (
44
"github.com/go-logr/logr"
5-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/config"
6-
"github.com/nginxinc/nginx-gateway-kubernetes/internal/events"
7-
"github.com/nginxinc/nginx-gateway-kubernetes/pkg/sdk"
85
apiv1 "k8s.io/api/core/v1"
96
"k8s.io/apimachinery/pkg/types"
7+
8+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/config"
9+
"github.com/nginxinc/nginx-kubernetes-gateway/internal/events"
10+
"github.com/nginxinc/nginx-kubernetes-gateway/pkg/sdk"
1011
)
1112

1213
type serviceImplementation struct {

0 commit comments

Comments
 (0)