Skip to content

Commit 8abc079

Browse files
committed
Remove references to old name
1 parent e5a674b commit 8abc079

File tree

13 files changed

+27
-27
lines changed

13 files changed

+27
-27
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ A clear and concise description of what the bug is.
1313

1414
Steps to reproduce the behavior:
1515

16-
1. Deploy nginx_k8s_edge_controller using
16+
1. Deploy nginx_k8s_loadbalancer using
1717
2. View output/logs/configuration on '...'
1818
3. See error
1919

@@ -23,7 +23,7 @@ A clear and concise description of what you expected to happen.
2323

2424
### Your environment
2525

26-
- Version of the nginx_k8s_edge_controller or specific commit
26+
- Version of the nginx_k8s_loadbalancer or specific commit
2727
<!-- - Version of project language -->
2828
- Target deployment platform
2929

.github/pull_request_template.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Describe the use case and detail of the change. If this PR addresses an issue on
66

77
Before creating a PR, run through this checklist and mark each as complete.
88

9-
- [ ] I have read the [`CONTRIBUTING`](https://github.com/nginxinc/nginx-k8s-edge-controller/blob/main/CONTRIBUTING.md) document
9+
- [ ] I have read the [`CONTRIBUTING`](https://github.com/nginxinc/nginx-k8s-loadbalancer/blob/main/CONTRIBUTING.md) document
1010
- [ ] If applicable, I have added tests that prove my fix is effective or that my feature works
1111
- [ ] If applicable, I have checked that any relevant tests pass after adding my changes
12-
- [ ] I have updated any relevant documentation ([`README.md`](https://github.com/nginxinc/nginx-k8s-edge-controller/blob/main/README.md) and [`CHANGELOG.md`](https://github.com/nginxinc/nginx-k8s-edge-controller/blob/main/CHANGELOG.md))
12+
- [ ] I have updated any relevant documentation ([`README.md`](https://github.com/nginxinc/nginx-k8s-loadbalancer/blob/main/README.md) and [`CHANGELOG.md`](https://github.com/nginxinc/nginx-k8s-loadbalancer/blob/main/CHANGELOG.md))

CONTRIBUTING.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing Guidelines
22

3-
The following is a set of guidelines for contributing to the nginx_k8s_edge_controller. We really appreciate that you are considering contributing!
3+
The following is a set of guidelines for contributing to the nginx_k8s_loadbalancer. We really appreciate that you are considering contributing!
44

55
#### Table Of Contents
66

@@ -10,11 +10,11 @@ The following is a set of guidelines for contributing to the nginx_k8s_edge_cont
1010

1111
[Code Guidelines](#code-guidelines)
1212

13-
[Code of Conduct](https://github.com/nginxinc/nginx-k8s-edge-controller/blob/main/CODE_OF_CONDUCT.md)
13+
[Code of Conduct](https://github.com/nginxinc/nginx-k8s-loadbalancer/blob/main/CODE_OF_CONDUCT.md)
1414

1515
## Getting Started
1616

17-
Follow our [Installation Guide](https://github.com/nginxinc/nginx-k8s-edge-controller/blob/main/README.md#Installation) to get the nginx_k8s_edge_controller up and running.
17+
Follow our [Installation Guide](https://github.com/nginxinc/nginx-k8s-loadbalancer/blob/main/README.md#Installation) to get the nginx_k8s_loadbalancer up and running.
1818

1919
<!-- ### Project Structure (OPTIONAL) -->
2020

@@ -31,7 +31,7 @@ To suggest a feature or enhancement, please create an issue on GitHub with the l
3131
### Open a Pull Request
3232

3333
* Fork the repo, create a branch, implement your changes, add any relevant tests, submit a PR when your changes are **tested** and ready for review.
34-
* Fill in [our pull request template](https://github.com/nginxinc/nginx-k8s-edge-controller/blob/main/.github/pull_request_template.md).
34+
* Fill in [our pull request template](https://github.com/nginxinc/nginx-k8s-loadbalancer/blob/main/.github/pull_request_template.md).
3535

3636
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.
3737

DESIGN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Overview
22

3-
The nginx-k8s-edge-controller runs in a Kubernetes Cluster and responds to changes in resources of interest, updating designated NGINX Plus hosts with the appropriate configuration.
3+
The nginx-k8s-loadbalancer runs in a Kubernetes Cluster and responds to changes in resources of interest, updating designated NGINX Plus hosts with the appropriate configuration.
44

55
## Basic Architecture
66

Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ RUN go mod download
1212

1313
COPY . .
1414

15-
RUN go build -o nginx-k8s-edge-controller ./cmd/nginx-k8s-edge-controller/main.go
15+
RUN go build -o nginx-k8s-loadbalancer ./cmd/nginx-k8s-loadbalancer/main.go
1616

1717
FROM alpine:3.16
1818

19-
WORKDIR /opt/nginx-k8s-edge-controller
19+
WORKDIR /opt/nginx-k8s-loadbalancer
2020

21-
COPY --from=builder /app/nginx-k8s-edge-controller .
21+
COPY --from=builder /app/nginx-k8s-loadbalancer .
2222

23-
ENTRYPOINT ["/opt/nginx-k8s-edge-controller/nginx-k8s-edge-controller"]
23+
ENTRYPOINT ["/opt/nginx-k8s-loadbalancer/nginx-k8s-loadbalancer"]

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# nginx-k8s-edge-controller
1+
# nginx-k8s-loadbalancer
22

33
## Welcome to the Nginx Kubernetes Load Balancer project !
44

@@ -69,12 +69,12 @@ Please see the /docs folder for Installation Guide.
6969
## Development
7070

7171
Contributions are being accepted at this time.
72-
Read the [`CONTRIBUTING.md`](https://github.com/nginxinc/nginx-k8s-edge-controller/blob/main/CONTRIBUTING.md) file.
72+
Read the [`CONTRIBUTING.md`](https://github.com/nginxinc/nginx-k8s-loadbalancer/blob/main/CONTRIBUTING.md) file.
7373

7474
<br/>
7575

7676
## License
7777

78-
[Apache License, Version 2.0](https://github.com/nginxinc/nginx-k8s-edge-controller/blob/main/LICENSE)
78+
[Apache License, Version 2.0](https://github.com/nginxinc/nginx-k8s-loadbalancer/blob/main/LICENSE)
7979

8080
&copy; [F5 Networks, Inc.](https://www.f5.com/) 2023

SECURITY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Latest Versions
44

5-
We advise users to run or update to the most recent release of the nginx_k8s_edge_controller. Older versions of the nginx_k8s_edge_controller may not have all enhancements and/or bug fixes applied to them.
5+
We advise users to run or update to the most recent release of the nginx_k8s_loadbalancer. Older versions of the nginx_k8s_loadbalancer may not have all enhancements and/or bug fixes applied to them.
66

77
## Reporting a Vulnerability
88

SUPPORT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
We use GitHub for tracking bugs and feature requests related to this project.
66

7-
Don't know how something in the nginx_k8s_edge_controller works? Curious if the nginx_k8s_edge_controller can achieve your desired functionality? Please open an Issue on GitHub with the label `question`.
7+
Don't know how something in the nginx_k8s_loadbalancer works? Curious if the nginx_k8s_loadbalancer can achieve your desired functionality? Please open an Issue on GitHub with the label `question`.
88

99
## NGINX Specific Questions and/or Issues
1010

cmd/nginx-k8s-edge-controller/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// license that can be found in the LICENSE file.
44

55
/*
6-
Package main includes the entrypoint for the nginx-k8s-edge-controller.
6+
Package main includes the entrypoint for the nginx-k8s-loadbalancer.
77
*/
88

99
package main

deployment/nkl-deployment.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ spec:
1616
app: nkl
1717
spec:
1818
containers:
19-
- name: nginx-k8s-edge-controller
20-
image: ciroque/nginx-k8s-edge-controller:latest
19+
- name: nginx-k8s-loadbalancer
20+
image: ciroque/nginx-k8s-loadbalancer:latest
2121
imagePullPolicy: Always
2222
ports:
2323
- name: http
@@ -35,4 +35,4 @@ spec:
3535
port: http
3636
initialDelaySeconds: 5
3737
periodSeconds: 2
38-
serviceAccountName: nginx-k8s-edge-controller
38+
serviceAccountName: nginx-k8s-loadbalancer

k8s/RBAC/ClusterRoleBinding.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apiVersion: rbac.authorization.k8s.io/v1
22
kind: ClusterRoleBinding
33
metadata:
4-
name: "nginx-k8s-edge-controller:ingress-resource-get-watch-list"
4+
name: "nginx-k8s-loadbalancer:ingress-resource-get-watch-list"
55
namespace: nkl
66
subjects:
77
- kind: ServiceAccount
8-
name: nginx-k8s-edge-controller
8+
name: nginx-k8s-loadbalancer
99
namespace: nkl
1010
roleRef:
1111
kind: ClusterRole

k8s/RBAC/Secret.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
22
kind: Secret
33
metadata:
4-
name: nginx-k8s-edge-controller-secret
4+
name: nginx-k8s-loadbalancer-secret
55
namespace: nkl
66
annotations:
7-
kubernetes.io/service-account.name: nginx-k8s-edge-controller
7+
kubernetes.io/service-account.name: nginx-k8s-loadbalancer
88
type: kubernetes.io/service-account-token

k8s/RBAC/ServiceAccount.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v1
22
kind: ServiceAccount
33
metadata:
4-
name: nginx-k8s-edge-controller
4+
name: nginx-k8s-loadbalancer
55
namespace: nkl

0 commit comments

Comments
 (0)