Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit e1ebfd5

Browse files
committed
change NKL to NLK
1 parent 40e9b47 commit e1ebfd5

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This repo contains source code and documents for a new `Kubernetes Controller fr
2323

2424
# Overview
2525

26-
- `NLK - Nginx Kubernetes Loadbalancer` is a new K8s Controller from Nginx, that monitors specified K8s Services, and then sends API calls to an external Nginx Plus server to manage Nginx Upstream servers dynamically.
26+
- `NLK - NGINX Loadbalancer for Kubernetes` is a new K8s Controller from Nginx, that monitors specified K8s Services, and then sends API calls to an external Nginx Plus server to manage Nginx Upstream servers dynamically.
2727
- This will `synchronize` the K8s Service Endpoint list, with the Nginx LB Server's upstream list.
2828
- The primary use case and Solution provided is for tracking the K8s` NodePort` IP:Port definitions for the Nginx Ingress Controller's `nginx-ingress Service`.
2929
- NLK is a native Kubernetes Controller, running, configured and managed with standard K8s commands.

docs/http/http-installation-guide.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ This Solution provides a replacement, using an NGINX Server, and a new K8s Contr
6161

6262
5. NGINX Plus software loaded on the LB Server(s). This install guide follows the instructions for installing NGINX Plus on Centos 7, located here: https://docs.nginx.com/nginx/admin-guide/installing-nginx/installing-nginx-plus/
6363

64-
6. The NGINX Kubernetes Loadbalancer (NLK) Controller, new software from NGINX for this Solution.
64+
6. The NGINX Loadbalancer for Kubernetes (NLK) Controller, new software from NGINX for this Solution.
6565

6666
<br/>
6767

@@ -73,7 +73,7 @@ This Solution provides a replacement, using an NGINX Server, and a new K8s Contr
7373

7474
<br/>
7575

76-
A standard K8s cluster is all that is required, two or more Clusters if you want the `Active/Active MultiCluster Load Balancing Solution` using HTTP Split Clients. There must be enough resources available to run the NGINX Ingress Controller, and the NGINX Kubernetes Loadbalancer Controller, and test application like the Cafe Demo. You must have administrative access to be able to create the namespace, services, and deployments for this Solution. This Solution was tested on Kubernetes version 1.23.
76+
A standard K8s cluster is all that is required, two or more Clusters if you want the `Active/Active MultiCluster Load Balancing Solution` using HTTP Split Clients. There must be enough resources available to run the NGINX Ingress Controller, and the NGINX Loadbalancer for Kubernetes Controller, and test application like the Cafe Demo. You must have administrative access to be able to create the namespace, services, and deployments for this Solution. This Solution was tested on Kubernetes version 1.23.
7777

7878
<br/>
7979

@@ -508,7 +508,7 @@ After a new installation of NGINX Plus, make the following configuration changes
508508
# Chris Akker, Apr 2023
509509
# Stream Zone Sync block
510510
# 2 NGINX Plus nodes
511-
# NGINX Kubernetes Loadbalancer
511+
# NGINX Loadbalancer for Kubernetes
512512
# https://docs.nginx.com/nginx/admin-guide/high-availability/zone_sync/
513513
#
514514
#### zonesync.conf
@@ -532,7 +532,7 @@ After a new installation of NGINX Plus, make the following configuration changes
532532
533533
<br/>
534534
535-
## 5. Install NLK - NGINX Kubernetes Loadbalancer Controller
535+
## 5. Install NLK - NGINX Loadbalancer for Kubernetes Controller
536536
537537
<br/>
538538
@@ -748,7 +748,7 @@ Use the `loadbalancer-cluster1.yaml` or `nodeport-cluster1.yaml` manifest file t
748748
749749
<br/>
750750
751-
## 7. Testing NLK NGINX Kubernetes Loadbalancer
751+
## 7. Testing NLK NGINX Loadbalancer for Kubernetes
752752
753753
<br/>
754754

docs/http/zonesync.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Chris Akker, Apr 2023
33
# Stream Zone Sync block
44
# 2 NGINX Plus nodes
5-
# Nginx Kubernetes Loadbalancer
5+
# NGINX Loadbalancer for Kubernetes
66
# https://docs.nginx.com/nginx/admin-guide/high-availability/zone_sync/
77
#
88
#### zonesync.conf

docs/tcp/nginxk8slb.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# NginxK8sLB Stream configuration, for L4 load balancing
22
# Chris Akker, Apr 2023
33
# TCP Proxy and load balancing block
4-
# Nginx Kubernetes Loadbalancer
4+
# NGINX Loadbalancer for Kubernetes
55
# State File for persistent reloads/restarts
66
# Health Check Match example for cafe.example.com
77
#

docs/tcp/tcp-installation-guide.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# NGINX Kubernetes Loadbalancer Solution
1+
# NGINX Loadbalancer for Kubernetes Solution
22

33
<br/>
44

5-
## This is the `TCP Installation Guide` for the NGINX Kubernetes Loadbalancer Controller Solution. It contains detailed instructions for implementing the different components for the Solution.
5+
## This is the `TCP Installation Guide` for the NGINX Loadbalancer for Kubernetes Controller Solution. It contains detailed instructions for implementing the different components for the Solution.
66

77
<br/>
88

@@ -44,7 +44,7 @@
4444
- Demo application, this install guide uses the NGINX Cafe example, found here: https://github.com/nginxinc/kubernetes-ingress/tree/main/examples/ingress-resources/complete-example
4545
- A bare metal Linux server or VM for the external NGINX LB Server, connected to a network external to the cluster. Two of these will be required if High Availability is needed, as shown here.
4646
- NGINX Plus software loaded on the LB Server(s). This install guide follows the instructions for installing NGINX Plus on Centos 7, located here: https://docs.nginx.com/nginx/admin-guide/installing-nginx/installing-nginx-plus/
47-
- The NGINX Kubernetes Loadbalancer (NLK) Controller, new software from NGINX for this Solution.
47+
- The NGINX Loadbalancer for Kubernetes (NLK) Controller, new software from NGINX for this Solution.
4848

4949
<br/>
5050

@@ -56,7 +56,7 @@
5656

5757
<br/>
5858

59-
A standard K8s cluster is all that is required. There must be enough resources available to run the NGINX Ingress Controller, and the new NGINX Kubernetes Loadbalancer Controller, and test application like the Cafe Demo. You must have administrative access to be able to create the namespace, services, and deployments for this Solution. This Solution was tested on Kubernetes version 1.23.
59+
A standard K8s cluster is all that is required. There must be enough resources available to run the NGINX Ingress Controller, and the new NGINX Loadbalancer for Kubernetes Controller, and test application like the Cafe Demo. You must have administrative access to be able to create the namespace, services, and deployments for this Solution. This Solution was tested on Kubernetes version 1.23.
6060

6161
<br/>
6262

@@ -279,7 +279,7 @@ stream {
279279
# NGINX K8sLB Stream configuration, for L4 load balancing
280280
# Chris Akker, Apr 2023
281281
# TCP Proxy and load balancing block
282-
# NGINX Kubernetes Loadbalancer
282+
# NGINX Loadbalancer for Kubernetes
283283
# State File for persistent reloads/restarts
284284
# Health Check Match example for cafe.example.com
285285
#
@@ -550,7 +550,7 @@ The name of the Service port is matched to the name of the upstream block in NGI
550550

551551
<br/>
552552

553-
## 7. Testing NLK NGINX Kubernetes Loadbalancer
553+
## 7. Testing NLK NGINX Loadbalancer for Kubernetes
554554

555555
<br/>
556556

0 commit comments

Comments
 (0)