Skip to content

Commit 9ee8110

Browse files
committed
typo
1 parent 89ead11 commit 9ee8110

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_posts/kubernetes/2021-03-18-kubernetes-retrieve-container-image-inventory.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ items:
5151
---TRUNCATED---
5252
```
5353

54-
# Retrive the images
54+
# Retrieve the images
5555
Since we have the required data in a file, we can parse it to retrieve the info we need, in this case
5656
the image of containers.
5757

@@ -91,7 +91,7 @@ There are 4 main keys in the dictionary, and we are interested in items, as that
9191
Pods. We can iterate over the items list, and each item would be a dictionary again as that refers to
9292
one complete Pod manifest.
9393

94-
Let's create a file, where we can store the results, we are retreiving.
94+
Let's create a file, where we can store the results, we are retrieving.
9595
```
9696
file = open('/tmp/container-img-inventory.csv', 'w')
9797
file.write('Pod Name\tPod Namespace\tContainer Name\tContainer Image\n')

0 commit comments

Comments
 (0)