You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please make sure you're comfortable with docker and kubernetes fundamentals before starting this. If not, it's highly recommended that you complete at least some of the hands-on, prescriptive labs in 1_fundamentals
Guidelines
You're free to use the language, web framework of your choice.
Focus more on containerization and kubernetes aspects rather than the actual design and implementation of the app itself. You just need two components at the very least, such as the one demonstrated in webinars. Something like below:
A front-end webapp
A backend api
Bonus: third component for caching or storage such as Redis.
Containerize the app components and use ghcr for image registry. Do not put any sensitive content into the app.
Recommended: Explore and use docker-compose for bringing up multiple containers together (locally) without kuberentes.
Avoid hard-coding backend service api url. Use env variables when possible. (can be done as part of Dockerfile too)
Build essential kubernetes manifests for all your app components and deploy them to your cluster.
Use ConfigMap and inject backend service location / url as an environment variable (may need some refactoring to Dockerfile if required)
You can use the below to repos as a reference, but please make sure you're building the app, dockerfiles, kubernetes manifests from the scratch