Microservices - Orchestration with Kubernetes
Given this Kubernetes YAML snippet for a microservice pod:
apiVersion: v1
kind: Pod
metadata:
name: myservice
spec:
containers:
- name: app
image: myapp:v1
ports:
- containerPort: 80
What will happen if the pod crashes unexpectedly?