Skip to content

Commit 670204c

Browse files
authored
Update from nginxinc to nginx (#132)
1 parent 2abd22d commit 670204c

File tree

12 files changed

+18
-18
lines changed

12 files changed

+18
-18
lines changed

.github/workflows/ci.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5.6.1
8686
with:
8787
images: |
88-
ghcr.io/nginxinc/kic-test-${{ matrix.type }}-server
88+
ghcr.io/nginx/kic-test-${{ matrix.type }}-server
8989
tags: |
9090
type=edge
9191
type=ref,event=pr
@@ -115,7 +115,7 @@ jobs:
115115
continue-on-error: true
116116
id: scan
117117
with:
118-
image: ghcr.io/nginxinc/kic-test-${{ matrix.type }}-server:${{ steps.meta.outputs.version }}
118+
image: ghcr.io/nginx/kic-test-${{ matrix.type }}-server:${{ steps.meta.outputs.version }}
119119
only-fixed: true
120120
add-cpes-if-none: true
121121

@@ -153,7 +153,7 @@ jobs:
153153
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5.6.1
154154
with:
155155
images: |
156-
ghcr.io/nginxinc/kic-test-grpc-server
156+
ghcr.io/nginx/kic-test-grpc-server
157157
tags: |
158158
type=edge
159159
type=ref,event=pr
@@ -182,7 +182,7 @@ jobs:
182182
continue-on-error: true
183183
id: scan
184184
with:
185-
image: ghcr.io/nginxinc/kic-test-grpc-server:${{ steps.meta.outputs.version }}
185+
image: ghcr.io/nginx/kic-test-grpc-server:${{ steps.meta.outputs.version }}
186186
only-fixed: true
187187
add-cpes-if-none: true
188188

@@ -220,7 +220,7 @@ jobs:
220220
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5.6.1
221221
with:
222222
images: |
223-
ghcr.io/nginxinc/kic-test-dos-server
223+
ghcr.io/nginx/kic-test-dos-server
224224
tags: |
225225
type=edge
226226
type=ref,event=pr
@@ -249,7 +249,7 @@ jobs:
249249
continue-on-error: true
250250
id: scan
251251
with:
252-
image: ghcr.io/nginxinc/kic-test-dos-server:${{ steps.meta.outputs.version }}
252+
image: ghcr.io/nginx/kic-test-dos-server:${{ steps.meta.outputs.version }}
253253
only-fixed: true
254254
add-cpes-if-none: true
255255

.github/workflows/labeler.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
sparse-checkout: |
1818
labeler.yml
1919
sparse-checkout-cone-mode: false
20-
repository: nginxinc/k8s-common
20+
repository: nginx/k8s-common
2121

2222
- uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0
2323
with:

CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @nginxinc/kic
1+
* @nginx/kic

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# KIC Test Containers
22

3-
This repository contains the Dockerfiles and code for the test containers used in the [Kubernetes Ingress Controller](https://github.com/nginxinc/kubernetes-ingress).
3+
This repository contains the Dockerfiles and code for the test containers used in the [Kubernetes Ingress Controller](https://github.com/nginx/kubernetes-ingress).
44

55
## Building the containers for local testing
66

@@ -19,5 +19,5 @@ make grpc-server
1919

2020
## Publishing the containers
2121

22-
The containers are published to the [NGINX GitHub Container Registry](https://github.com/orgs/nginxinc/packages?repo_name=kic-test-containers)
22+
The containers are published to the [NGINX GitHub Container Registry](https://github.com/orgs/nginx/packages?repo_name=kic-test-containers)
2323
when a new tag is created in this repository. You can see the packages on the right side of this page.

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/nginxinc/kic-test-containers
1+
module github.com/nginx/kic-test-containers
22

33
go 1.23.0

renovate.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
4-
"github>nginxinc/k8s-common",
4+
"github>nginx/k8s-common",
55
"schedule:monthly"
66
]
77
}

tcp/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1.12
22
FROM golang:1.23-alpine AS builder
33

4-
WORKDIR /go/src/github.com/nginxinc/kic-test-containers/
4+
WORKDIR /go/src/github.com/nginx/kic-test-containers/
55
COPY tcp/main.go ./tcp/
66
COPY go.mod utils.go ./
77
RUN CGO_ENABLED=0 GOOS=linux go build -o /main ./tcp/

tcp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ overridden.
1818
- Test the change:
1919
- Use the minikube registry ```$ eval $(minikube docker-env)```
2020
- Build the docker image from the root of the project ```docker build -t tcp-server .```
21-
- Update the [service yaml](https://github.com/nginxinc/kubernetes-ingress/blob/main/tests/data/transport-server-tcp-load-balance/standard/service_deployment.yaml)
21+
- Update the [service yaml](https://github.com/nginx/kubernetes-ingress/blob/main/tests/data/transport-server-tcp-load-balance/standard/service_deployment.yaml)
2222
to use the local version ```-> imagePullPolicy: Never```
2323
- Test the changes
2424
- Publish the tcp-server change

tcp/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"log"
77
"net"
88

9-
utils "github.com/nginxinc/kic-test-containers"
9+
utils "github.com/nginx/kic-test-containers"
1010
)
1111

1212
var version string

udp/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1.12
22
FROM golang:1.23-alpine AS builder
33

4-
WORKDIR /go/src/github.com/nginxinc/kic-test-containers/
4+
WORKDIR /go/src/github.com/nginx/kic-test-containers/
55
COPY udp/main.go ./udp/
66
COPY go.mod utils.go ./
77
RUN CGO_ENABLED=0 GOOS=linux go build -o /main ./udp/

udp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ overridden.
1818
- Test the change:
1919
- Use the minikube registry ```$ eval $(minikube docker-env)```
2020
- Build the docker image from the root of the project ```docker build -t udp-server .```
21-
- Update the [service yaml](https://github.com/nginxinc/kubernetes-ingress/blob/main/tests/data/transport-server-udp-load-balance/standard/service_deployment.yaml)
21+
- Update the [service yaml](https://github.com/nginx/kubernetes-ingress/blob/main/tests/data/transport-server-udp-load-balance/standard/service_deployment.yaml)
2222
to use the local version ```-> imagePullPolicy: Never```
2323
- Test the changes
2424
- Publish the upd-server change

udp/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"net"
88
"os"
99

10-
utils "github.com/nginxinc/kic-test-containers"
10+
utils "github.com/nginx/kic-test-containers"
1111
)
1212

1313
var version string

0 commit comments

Comments
 (0)