- Why did we remove the Eureka server from the microservices landscape when deploying it on Kubernetes?
- What did we replace the Eureka server with and how was the source code of the microservices affected by this change?
- How are base and overlay folders used with Kustomize?
- How can we get a running pod updated with changes in a config map or secret?
- If we are using the latest tag on a Docker image, how can we get running pods using a new build of the Docker image?
- What commands can we use to roll back a failed deployment?
- What's the purpose of liveness and readiness probes?
- What are the different ports that are being used in the following service definition?
apiVersion: v1kind: Servicespec: type: NodePort ports: - port: 80 nodePort: ...