You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
547
547
548
548
```yaml
549
549
apiVersion: v1
550
550
kind: ConfigMap
551
551
data:
552
552
nginx-hosts:
553
553
"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"
554
558
metadata:
555
559
name: nlk-config
556
560
namespace: nlk
@@ -559,13 +563,13 @@ After a new installation of NGINX Plus, make the following configuration changes
559
563
1. Apply the updated ConfigMap:
560
564
561
565
```bash
562
-
kubectl apply -f nlk-configmap.yaml
566
+
kubectl apply -f configmap.yaml
563
567
```
564
568
565
569
1. Deploy the NLK Controller:
566
570
567
571
```bash
568
-
kubectl apply -f nlk-deployment.yaml
572
+
kubectl apply -f deployment.yaml
569
573
```
570
574
571
575
1. Check to see if the NLK Controller is running, with the updated ConfigMap:
0 commit comments