Skip to content

Commit 5d39e2d

Browse files
committed
chore: rename apisix-ingress-controller
Signed-off-by: ashing <[email protected]>
1 parent 4c604ba commit 5d39e2d

File tree

8 files changed

+9
-11
lines changed

8 files changed

+9
-11
lines changed

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727
- '.github/**'
2828
jobs:
2929
update_release_draft:
30-
if: github.repository == 'api7/api7-ingress-controller'
30+
if: github.repository == 'apache/apisix-ingress-controller'
3131
runs-on: buildjet-2vcpu-ubuntu-2204
3232
steps:
3333
- name: Drafting release

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,3 @@ apisix-ingress-controller-conformance-report.yaml
3434
*.mdx
3535
.cursor/
3636
.env
37-
38-
charts/api7ee3

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ VERSION ?= 2.0.0
55

66
IMAGE_TAG ?= dev
77

8-
IMG ?= api7/api7-ingress-controller:$(IMAGE_TAG)
8+
IMG ?= apache/apisix-ingress-controller:$(IMAGE_TAG)
99
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
1010
ENVTEST_K8S_VERSION = 1.30.0
1111

README.md

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

33
## Description
44

5-
The APISIX Ingress Controller allows you to run the APISIX Gateway as a Kubernetes Ingress to handle inbound traffic for a Kubernetes cluster. It dynamically configures and manages the API7 Gateway using Gateway API resources.
5+
The APISIX Ingress Controller allows you to run the APISIX Gateway as a Kubernetes Ingress to handle inbound traffic for a Kubernetes cluster. It dynamically configures and manages the APISIX Gateway using Gateway API resources.
66

77
## Document
88

@@ -41,7 +41,7 @@ make install
4141
**Deploy the Manager to the cluster with the image specified by `IMG`:**
4242

4343
```sh
44-
make deploy #IMG=api7/api7-ingress-controller:dev
44+
make deploy #IMG=apache/apisix-ingress-controller:dev
4545
```
4646

4747
> **NOTE**: If you encounter RBAC errors, you may need to grant yourself cluster-admin
@@ -66,7 +66,7 @@ Following are the steps to build the installer and distribute this project to us
6666
1. Build the installer for the image built and published in the registry:
6767

6868
```sh
69-
make build-installer # IMG=api7/api7-ingress-controller:dev
69+
make build-installer # IMG=apache/apisix-ingress-controller:dev
7070
```
7171

7272
NOTE: The makefile target mentioned above generates an 'install.yaml'

charts/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ deployment:
3333
- ALL
3434
topologySpreadConstraints: []
3535
image:
36-
repository: api7/api7-ingress-controller
36+
repository: apache/apisix-ingress-controller
3737
pullPolicy: IfNotPresent
3838
tag: "dev"
3939

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1
44
kind: Kustomization
55
images:
66
- name: controller
7-
newName: api7/api7-ingress-controller
7+
newName: apache/apisix-ingress-controller
88
newTag: dev

docs/concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Concepts
22

3-
The APISIX Ingress Controller is used to manage the APISIX Gateway as either a standalone application or a Kubernetes-based application. It dynamically configures and manages the API7 Gateway using Gateway API resources.
3+
The APISIX Ingress Controller is used to manage the APISIX Gateway as either a standalone application or a Kubernetes-based application. It dynamically configures and manages the APISIX Gateway using Gateway API resources.
44

55
## Architecture
66

docs/gateway-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For more information about Gateway API, please refer to [Gateway API](https://ga
2929

3030
## HTTPRoute
3131

32-
The HTTPRoute resource allows users to configure HTTP routing by matching HTTP traffic and forwarding it to Kubernetes backends. Currently, the only backend supported by API7 Gateway is the Service resource.
32+
The HTTPRoute resource allows users to configure HTTP routing by matching HTTP traffic and forwarding it to Kubernetes backends. Currently, the only backend supported by APISIX Gateway is the Service resource.
3333

3434
### Example
3535

0 commit comments

Comments
 (0)