Skip to content

Commit 6fd320e

Browse files
committed
cleanup
1 parent 8e76cf6 commit 6fd320e

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

docs/http/http-installation-guide.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -537,20 +537,24 @@ After a new installation of NGINX Plus, make the following configuration changes
537537
kubectl create namespace nlk
538538
```
539539

540-
1. Apply the manifests for NLK's Secret, Service, ClusterRole, and ClusterRoleBinding:
540+
1. Change to the `/rbac` folder, and apply the manifests for NLK's Secret, ServiceAccount, ClusterRole, and ClusterRoleBinding:
541541
542542
```bash
543543
kubectl apply -f secret.yaml serviceaccount.yaml clusterrole.yaml clusterrolebinding.yaml
544544
```
545545
546-
1. Modify the ConfigMap manifest to match your NGINX Loadbalancing Server(s). Change the `nginx-hosts` IP address to match your NGINX Loadbalancing Server IP. If you have 2 or more Loadbalancing Servers, separate them with a comma. Important! - keep the port number for the Plus API endpoint, and the `/api` URL as shown.
546+
1. Change to the `/deployment` folder. Modify the ConfigMap manifest to match your NGINX Loadbalancing Server(s). Change the `nginx-hosts` IP address to match your NGINX Loadbalancing Server IP. If you have 2 or more Loadbalancing Servers, separate them with a comma. Important! - keep the port number for the Plus API endpoint, and the `/api` URL as shown. Change the log-level to `info` to see more log details about the NLK API calls.
547547
548548
```yaml
549549
apiVersion: v1
550550
kind: ConfigMap
551551
data:
552552
nginx-hosts:
553553
"http://10.1.1.4:9000/api,http://10.1.1.5:9000/api" # change IP(s) to match NGINX Loadbalancing Server(s)
554+
tls-mode: "no-tls"
555+
ca-certificate: ""
556+
client-certificate: ""
557+
log-level: "info"
554558
metadata:
555559
name: nlk-config
556560
namespace: nlk
@@ -559,13 +563,13 @@ After a new installation of NGINX Plus, make the following configuration changes
559563
1. Apply the updated ConfigMap:
560564
561565
```bash
562-
kubectl apply -f nlk-configmap.yaml
566+
kubectl apply -f configmap.yaml
563567
```
564568
565569
1. Deploy the NLK Controller:
566570
567571
```bash
568-
kubectl apply -f nlk-deployment.yaml
572+
kubectl apply -f deployment.yaml
569573
```
570574
571575
1. Check to see if the NLK Controller is running, with the updated ConfigMap:

0 commit comments

Comments
 (0)