Skip to content

Commit b2025b4

Browse files
authored
chore: replace "api7" with "apisix" (#130)
1 parent d89df03 commit b2025b4

Some content is hidden

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

75 files changed

+456
-413
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ body:
1212
Prior to opening the issue, please make sure that you:
1313
1414
- Use English to communicate.
15-
- Search the [open issues](https://github.com/apache/api7-ingress-controller/issues) to avoid duplicating the issue.
15+
- Search the [open issues](https://github.com/apache/apisix-ingress-controller/issues) to avoid duplicating the issue.
1616
1717
- type: textarea
1818
id: current-behavior
@@ -56,7 +56,7 @@ body:
5656
label: Environment
5757
description: Share your environment details. Reports without proper environment details will likely be closed.
5858
value: |
59-
- APISIX Ingress controller version (run `api7-ingress-controller version --long`)
59+
- APISIX Ingress controller version (run `apisix-ingress-controller version --long`)
6060
- Kubernetes cluster version (run `kubectl version`)
6161
- OS version if running APISIX Ingress controller in a bare-metal environment (run `uname -a`)
6262
validations:

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ body:
1010
Prior to opening the issue, please make sure that you:
1111
1212
- Use English to communicate.
13-
- Search the [open issues](https://github.com/apache/api7-ingress-controller/issues) to avoid duplicating the issue.
13+
- Search the [open issues](https://github.com/apache/apisix-ingress-controller/issues) to avoid duplicating the issue.
1414
1515
- type: textarea
1616
id: description

.github/ISSUE_TEMPLATE/improve_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ body:
1111
Prior to opening the issue, please make sure that you:
1212
1313
- Use English to communicate.
14-
- Search the [open issues](https://github.com/apache/api7-ingress-controller/issues) to avoid duplicating the issue.
14+
- Search the [open issues](https://github.com/apache/apisix-ingress-controller/issues) to avoid duplicating the issue.
1515
1616
- type: textarea
1717
id: current-state

.github/ISSUE_TEMPLATE/performance_issue.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ body:
1212
Prior to opening the issue, please make sure that you:
1313
1414
- Use English to communicate.
15-
- Search the [open issues](https://github.com/apache/api7-ingress-controller/issues) to avoid duplicating the issue.
15+
- Search the [open issues](https://github.com/apache/apisix-ingress-controller/issues) to avoid duplicating the issue.
1616
- type: textarea
1717
id: issue-faced
1818
attributes:
@@ -46,7 +46,7 @@ body:
4646
label: Environment
4747
description: Share your environment details. Reports without proper environment details will likely be closed.
4848
value: |
49-
- APISIX Ingress controller version (run `api7-ingress-controller version --long`)
49+
- APISIX Ingress controller version (run `apisix-ingress-controller version --long`)
5050
- Kubernetes cluster version (run `kubectl version`)
5151
- OS version if running APISIX Ingress controller in a bare-metal environment (run `uname -a`)
5252
validations:

.github/ISSUE_TEMPLATE/request_help.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ body:
2424
label: Environment
2525
description: Request help without environment information will be ignored or closed.
2626
value: |
27-
- your api7-ingress-controller version (output of api7-ingress-controller version --long):
27+
- your apisix-ingress-controller version (output of apisix-ingress-controller version --long):
2828
- your Kubernetes cluster version (output of kubectl version):
29-
- if you run api7-ingress-controller in Bare-metal environment, also show your OS version (uname -a):
29+
- if you run apisix-ingress-controller in Bare-metal environment, also show your OS version (uname -a):
3030
validations:
3131
required: true

.github/PULL_REQUEST_TEMPLATE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ Please follow the requirements:
3434
- [ ] Did you explain what problem does this PR solve? Or what new features have been added?
3535
- [ ] Have you added corresponding test cases?
3636
- [ ] Have you modified the corresponding document?
37-
- [ ] Is this PR backward compatible? **If it is not backward compatible, please discuss on the [mailing list](https://github.com/apache/api7-ingress-controller#community) first**
37+
- [ ] Is this PR backward compatible? **If it is not backward compatible, please discuss on the [mailing list](https://github.com/apache/apisix-ingress-controller#community) first**

.github/workflows/conformance-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,22 +103,22 @@ jobs:
103103
- name: Get Logs from api7-ingress-controller
104104
shell: bash
105105
run: |
106-
export KUBECONFIG=/tmp/api7-ingress-cluster.kubeconfig
107-
kubectl logs -n api7ee-conformance-test -l app=api7-ingress-controller
106+
export KUBECONFIG=/tmp/apisix-ingress-cluster.kubeconfig
107+
kubectl logs -n apisix-conformance-test -l app=apisix-ingress-controller
108108
109109
- name: Upload Gateway API Conformance Report
110110
if: ${{ github.event_name == 'push' }}
111111
uses: actions/upload-artifact@v4
112112
with:
113-
name: api7-ingress-controller-conformance-report.yaml
114-
path: api7-ingress-controller-conformance-report.yaml
113+
name: apisix-ingress-controller-conformance-report.yaml
114+
path: apisix-ingress-controller-conformance-report.yaml
115115

116116
- name: Format Conformance Test Report
117117
if: ${{ github.event_name == 'pull_request' }}
118118
run: |
119119
echo '# conformance test report' > report.md
120120
echo '```yaml' >> report.md
121-
cat api7-ingress-controller-conformance-report.yaml >> report.md
121+
cat apisix-ingress-controller-conformance-report.yaml >> report.md
122122
echo '```' >> report.md
123123
124124
- name: Report Conformance Test Result to PR Comment

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ go.work
2828

2929
dist
3030
.tmp
31-
api7-ingress-controller
32-
api7-ingress-controller-conformance-report.yaml
31+
apisix-ingress-controller
32+
apisix-ingress-controller-conformance-report.yaml
3333

3434
*.mdx
3535
.cursor/

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ ARG TARGETARCH
2222
WORKDIR /app
2323

2424
COPY --from=deps /bin/adc /bin/adc
25-
COPY ./bin/api7-ingress-controller_${TARGETARCH} ./api7-ingress-controller
25+
COPY ./bin/apisix-ingress-controller_${TARGETARCH} ./apisix-ingress-controller
2626
COPY ./config/samples/config.yaml ./conf/config.yaml
2727

28-
ENTRYPOINT ["/app/api7-ingress-controller"]
28+
ENTRYPOINT ["/app/apisix-ingress-controller"]
2929
CMD ["-c", "/app/conf/config.yaml"]

Dockerfile.dev

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ FROM debian:bullseye-slim
2525
WORKDIR /app
2626

2727
COPY --from=node_builder /bin/adc /bin/adc
28-
COPY ./bin/api7-ingress-controller .
28+
COPY ./bin/apisix-ingress-controller .
2929
COPY ./config/samples/config.yaml ./conf/config.yaml
3030

31-
ENTRYPOINT ["/app/api7-ingress-controller"]
31+
ENTRYPOINT ["/app/apisix-ingress-controller"]
3232
CMD ["-c", "/app/conf/config.yaml"]

0 commit comments

Comments
 (0)