Skip to content

This Repo deals with the learning path of k8s and docker along with other topics.

Notifications You must be signed in to change notification settings

swapxs/Cloud-Task

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Task 1: Docker:
1.1. Containerize a Static Web application using Nginx docker image. (hello-xenon)
    Note:
        a. Contents of Web Application should persist on Container restarts.
        b. When we hit the IP on browser a message of "Welcome to XenonStack" must be visible. 
1.2. Dockerize Notejam Application using any one of the Web Framework. (notejam-docker)
    URL: https://github.com/komarserjio/notejam
    Note: Web Application should connect with external Database.
    a. Create an image and push to Docker hub
    b. Create the deployment from this image

Task 2: Kubernetes:
1. Containerize the Notejam application (or the application which you dockerise in week1), ensuring separate images for the application and database components.
2. Create a Deployment for the application to ensure its availability and scalability.
3. Establish a StatefulSet for the database to manage its state and persistence.
4. Configure an Ingress resource to expose the application externally.
5. Utilize ConfigMap and Secret resources to manage application configuration and sensitive information securely.
6. Create PersistentVolumes (PV) and PersistentVolumeClaims (PVC) to provide storage for the application and database.