Update connect-applications-service.md

It is the ReplicaSet who recreates dead pods and not the deployment
pull/42104/head
Lino Ngando 2023-07-20 10:37:06 +02:00 committed by GitHub
parent 81d6089d68
commit b1a61e5916
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ if you're curious.
So we have pods running nginx in a flat, cluster wide, address space. In theory,
you could talk to these pods directly, but what happens when a node dies? The pods
die with it, and the Deployment will create new ones, with different IPs. This is
die with it, and the ReplicaSet inside the Deployment will create new ones, with different IPs. This is
the problem a Service solves.
A Kubernetes Service is an abstraction which defines a logical set of Pods running