Skip to content

Remove references to old name #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ A clear and concise description of what the bug is.

Steps to reproduce the behavior:

1. Deploy nginx_k8s_edge_controller using
1. Deploy nginx_k8s_loadbalancer using
2. View output/logs/configuration on '...'
3. See error

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

### Your environment

- Version of the nginx_k8s_edge_controller or specific commit
- Version of the nginx_k8s_loadbalancer or specific commit
<!-- - Version of project language -->
- Target deployment platform

Expand Down
4 changes: 2 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Describe the use case and detail of the change. If this PR addresses an issue on

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

- [ ] I have read the [`CONTRIBUTING`](https://github.com/nginxinc/nginx-k8s-edge-controller/blob/main/CONTRIBUTING.md) document
- [ ] I have read the [`CONTRIBUTING`](https://github.com/nginxinc/nginx-k8s-loadbalancer/blob/main/CONTRIBUTING.md) document
- [ ] If applicable, I have added tests that prove my fix is effective or that my feature works
- [ ] If applicable, I have checked that any relevant tests pass after adding my changes
- [ ] 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))
- [ ] 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))
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing Guidelines

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

#### Table Of Contents

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

[Code Guidelines](#code-guidelines)

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

## Getting Started

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

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

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

* 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.
* Fill in [our pull request template](https://github.com/nginxinc/nginx-k8s-edge-controller/blob/main/.github/pull_request_template.md).
* Fill in [our pull request template](https://github.com/nginxinc/nginx-k8s-loadbalancer/blob/main/.github/pull_request_template.md).

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.

Expand Down
2 changes: 1 addition & 1 deletion DESIGN.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Overview

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

## Basic Architecture

Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ RUN go mod download

COPY . .

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

FROM alpine:3.16

WORKDIR /opt/nginx-k8s-edge-controller
WORKDIR /opt/nginx-k8s-loadbalancer

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

ENTRYPOINT ["/opt/nginx-k8s-edge-controller/nginx-k8s-edge-controller"]
ENTRYPOINT ["/opt/nginx-k8s-loadbalancer/nginx-k8s-loadbalancer"]
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# nginx-k8s-edge-controller
# nginx-k8s-loadbalancer

## Welcome to the Nginx Kubernetes Load Balancer project !

Expand Down Expand Up @@ -69,12 +69,12 @@ Please see the /docs folder for Installation Guide.
## Development

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

<br/>

## License

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

&copy; [F5 Networks, Inc.](https://www.f5.com/) 2023
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Latest Versions

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

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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

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`.
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`.

## NGINX Specific Questions and/or Issues

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// license that can be found in the LICENSE file.

/*
Package main includes the entrypoint for the nginx-k8s-edge-controller.
Package main includes the entrypoint for the nginx-k8s-loadbalancer.
*/

package main
10 changes: 5 additions & 5 deletions deployment/nkl-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ spec:
app: nkl
spec:
containers:
- name: nginx-k8s-edge-controller
image: ciroque/nginx-k8s-edge-controller:latest
- name: nginx-k8s-loadbalancer
image: ciroque/nginx-k8s-loadbalancer:latest
imagePullPolicy: Always
ports:
- name: http
Expand All @@ -26,13 +26,13 @@ spec:
livenessProbe:
httpGet:
path: /livez
port: http
port: 51031
initialDelaySeconds: 5
periodSeconds: 2
readinessProbe:
httpGet:
path: /readyz
port: http
port: 51031
initialDelaySeconds: 5
periodSeconds: 2
serviceAccountName: nginx-k8s-edge-controller
serviceAccountName: nginx-k8s-loadbalancer
4 changes: 2 additions & 2 deletions k8s/RBAC/ClusterRoleBinding.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: "nginx-k8s-edge-controller:ingress-resource-get-watch-list"
name: "nginx-k8s-loadbalancer:ingress-resource-get-watch-list"
namespace: nkl
subjects:
- kind: ServiceAccount
name: nginx-k8s-edge-controller
name: nginx-k8s-loadbalancer
namespace: nkl
roleRef:
kind: ClusterRole
Expand Down
4 changes: 2 additions & 2 deletions k8s/RBAC/Secret.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v1
kind: Secret
metadata:
name: nginx-k8s-edge-controller-secret
name: nginx-k8s-loadbalancer-secret
namespace: nkl
annotations:
kubernetes.io/service-account.name: nginx-k8s-edge-controller
kubernetes.io/service-account.name: nginx-k8s-loadbalancer
type: kubernetes.io/service-account-token
2 changes: 1 addition & 1 deletion k8s/RBAC/ServiceAccount.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
kind: ServiceAccount
metadata:
name: nginx-k8s-edge-controller
name: nginx-k8s-loadbalancer
namespace: nkl