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
A few cleanup items in the docs:
- Clarify full path to templates directory
- the pod-resource2.yaml already has the correct memory setting, so no need to change it
- method for confirming why deployment did not work after quota change needs updating
Copy file name to clipboardExpand all lines: 01-path-basics/103-kubernetes-concepts/readme.adoc
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ This chapter uses a cluster with 3 master nodes and 5 worker nodes as described
19
19
All configuration files for this chapter are in the `01-path-basics/103-kubernetes-concepts/templates` directory.
20
20
Please be sure to `cd` into that directory before running the commands below.
21
21
22
-
$ cd 01-path-basics/103-kubernetes-concepts/templates
22
+
$ cd ~/environment/aws-workshop-for-kubernetes/01-path-basics/103-kubernetes-concepts/templates
23
23
24
24
== Display Nodes
25
25
@@ -339,7 +339,7 @@ Watch the status of the Pod:
339
339
340
340
`OOMKilled` shows that the container was terminated because it ran out of memory.
341
341
342
-
In `pod-resources2.yaml`, change the value of `spec.containers[].resources.limits.memory` to `300Mi`. Delete the existing Pod, and create a new one:
342
+
In `pod-resources2.yaml`, confirm that the value of `spec.containers[].resources.limits.memory` is `300Mi`. Delete the existing Pod, and create a new one:
343
343
344
344
$ kubectl delete -f pod-resources1.yaml
345
345
pod "wildfly-pod" deleted
@@ -1568,8 +1568,14 @@ It shows only three replicas are available.
1568
1568
+
1569
1569
. More details can be found:
1570
1570
+
1571
-
$ kubectl get deployment/nginx-deployment -o jsonpath={.status.conditions[].message}
0 commit comments