Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 731 Bytes

File metadata and controls

22 lines (13 loc) · 731 Bytes

Stateless Service

Description

A Stateless Service does not maintain any state internally within the instance across service interactions, i.e. a container does not hold any information from requests in its internal storage (memory or temporary filesystem)

Stateless services are made of identical, replaceable instances that often offload state to external permanent storage systems and use load-balancers for distributing incoming requests

kubectl apply -f src/19-stateless-service/service.yml
kubectl get svc

References

[1] ReplicaSet

[2] Persistent Volumes