NGINX Tutorial: How to Deploy and Configure Microservices
NGINX Tutorial: How to Deploy and Configure Microservices This post is one of four tutorials that help you put into practice concepts from Microservices March 2023: Start Delivering Microservices: How to Deploy and Configure Microservices (this post) How to Securely Manage Secrets in Containers (coming soon) How to Use GitHub Actions to Automate Microservices Canary Releases (coming soon) How to Use OpenTelemetry Tracing to Understand Your Microservices (coming soon) intro $ kubectl get pods NAME READY STATUS RESTARTS AGE coffee-87cf76b96-5b85h 1/1 Running 0 7h39m coffee-87cf76b96-lqjrp 1/1 Running 0 7h39m tea-55bc9d5586-9z26v 1/1 Running 0 111m All apps require configuration, but the considerations when configuring a microservice may not be the same as for a monolithic app. We can look to Factor 3 (Store config in the environment) of the twelve‑factor app for guidance applicable to both types of apps, but that guidance can be [ more… ]