Skip to content

Commit f919619

Browse files
committed
Fix 5 documentation issues for shared ConfigMap architecture
- Update error message to show 'curl', 'wrk', 'put', 'login' - Change ConfigMap name from nginx-intel-config to nginx-config - Remove ConfigMap from ARM deployment output - Remove ARM-specific optimization bullet point - Update ConfigMap verification to show only nginx-config
1 parent b737c5c commit f919619

3 files changed

Lines changed: 6 additions & 10 deletions

File tree

content/learning-paths/servers-and-cloud-computing/multiarch_nginx_on_aks/create-test-utility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ In the folder you ran the curl command, you should now see the `nginx_util.sh` s
4444

4545
The output should include usage instructions:
4646
```output
47-
Invalid first argument. Use 'get', 'put', or 'login'.
47+
Invalid first argument. Use 'curl', 'wrk', 'put', or 'login'.
4848
```
4949

5050
With it working, you're now ready to deploy nginx to the Intel nodes in the cluster.

content/learning-paths/servers-and-cloud-computing/multiarch_nginx_on_aks/deploy-arm.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ kubectl apply -f arm_nginx.yaml
2424
You will see output similar to:
2525

2626
```output
27-
configmap/nginx-arm-config created
2827
deployment.apps/nginx-arm-deployment created
2928
service/nginx-arm-svc created
3029
```
@@ -49,8 +48,6 @@ Taking a closer look at the `arm_nginx.yaml` deployment file, you'll see setting
4948
arch: arm
5049
```
5150

52-
* The ARM ConfigMap includes performance optimizations specific to ARM architecture, such as `worker_processes 2` and `worker_cpu_affinity 01 10` for optimal CPU core utilization.
53-
5451
### Verify the deployment
5552

5653
1. Get the status of nodes, pods and services by running:
@@ -75,16 +72,15 @@ service/nginx-arm-svc LoadBalancer 10.0.241.154 48.192.64.197 80:30082
7572
service/nginx-intel-svc LoadBalancer 10.0.226.250 20.80.128.191 80:30080/TCP 9m22s
7673
```
7774

78-
You can also verify the ConfigMap was created:
75+
You can also verify the shared ConfigMap is available:
7976

8077
```bash
8178
kubectl get configmap -nnginx
8279
```
8380

8481
```output
85-
NAME DATA AGE
86-
nginx-arm-config 1 51s
87-
nginx-intel-config 1 10m
82+
NAME DATA AGE
83+
nginx-config 1 10m
8884
```
8985

9086
When the pods show `Running` and the service shows a valid `External IP`, you're ready to test the nginx ARM service.

content/learning-paths/servers-and-cloud-computing/multiarch_nginx_on_aks/deploy-intel.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ kubectl get configmap -nnginx
118118
```
119119

120120
```output
121-
NAME DATA AGE
122-
nginx-intel-config 1 51s
121+
NAME DATA AGE
122+
nginx-config 1 51s
123123
```
124124

125125
With the pods in a `Ready` state and the service showing a valid `External IP`, you're now ready to test the nginx Intel service.

0 commit comments

Comments
 (0)