Skip to content

Commit 767bbe5

Browse files
authored
Slight corrections of appearance
Slightly modified the discrepancy from the actual results of the deployment-in-namespace command execution.
1 parent 4c2bc87 commit 767bbe5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

01-path-basics/103-kubernetes-concepts/readme.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1447,21 +1447,21 @@ Alternatively, a namespace can be created using `kubectl` as well.
14471447
. Create a Deployment:
14481448

14491449
$ kubectl -n dev2 apply -f deployment.yaml
1450-
deployment "nginx-deployment-ns" created
1450+
deployment "nginx-deployment" created
14511451

14521452
. Get Deployments in the newly created Namespace:
14531453

14541454
$ kubectl get deployments -n dev2
14551455
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
1456-
nginx-deployment-ns 3 3 3 3 1m
1456+
nginx-deployment 3 3 3 3 1m
14571457

14581458
. Get Deployments in all Namespaces:
14591459

14601460
$ kubectl get deployments --all-namespaces
14611461
NAMESPACE NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
14621462
default nginx-deployment 3 3 3 3 1h
14631463
dev nginx-deployment-ns 3 3 3 3 1h
1464-
dev2 nginx-deployment-ns 3 3 3 3 1m
1464+
dev2 nginx-deployment 3 3 3 3 1m
14651465
kube-system dns-controller 1 1 1 1 5h
14661466
kube-system kube-dns 2 2 2 2 5h
14671467
kube-system kube-dns-autoscaler 1 1 1 1 5h
@@ -1634,8 +1634,8 @@ Note, how CPU and memory resources have incremented values.
16341634

16351635
https://github.com/kubernetes/kubernetes/issues/55433[kubernetes#55433] provide more details on how an explicit CPU resource is not needed to create a Pod with ResourceQuota.
16361636

1637-
$ kubectl delete quota/quota
1638-
$ kubectl delete quota/quota2
1637+
$ kubectl delete quota/quota
1638+
$ kubectl delete quota/quota2
16391639

16401640
You are now ready to continue on with the workshop!
16411641

0 commit comments

Comments
 (0)