Merge pull request #40896 from ggold7046/patch-2

Update _index.md
This commit is contained in:
Kubernetes Prow Robot 2023-05-08 17:24:52 -07:00 committed by GitHub
commit 251599f207
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ Each container that you run is repeatable; the standardization from having
dependencies included means that you get the same behavior wherever you
run it.
Containers decouple applications from underlying host infrastructure.
Containers decouple applications from the underlying host infrastructure.
This makes deployment easier in different cloud or OS environments.
Each {{< glossary_tooltip text="node" term_id="node" >}} in a Kubernetes
@ -27,7 +27,7 @@ Containers in a Pod are co-located and co-scheduled to run on the same node.
## Container images
A [container image](/docs/concepts/containers/images/) is a ready-to-run
software package, containing everything needed to run an application:
software package containing everything needed to run an application:
the code and any runtime it requires, application and system libraries,
and default values for any essential settings.