Microservices - Orchestration with Kubernetes
You deployed a microservice with Kubernetes, but it keeps crashing. The YAML file has this snippet:
spec:
containers:
- name: app
image: myapp:v1
ports:
- containerPort: 80
restartPolicy: Never
What is the problem and how to fix it?