Skip to content

This project deploys a simple Python Flask application to Google Kubernetes Engine (GKE) using Google Cloud Build and Google Artifact Registry.

Notifications You must be signed in to change notification settings

guddev99/gcp-devops-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GCP DevOps Project

This project deploys a simple Python Flask application to Google Kubernetes Engine (GKE) using Google Cloud Build and Google Artifact Registry. The application is exposed through an endpoint, allowing easy access.

Project Structure

  • app.py: Contains the Python Flask application code.
  • requirements.txt: Lists the dependencies required for the Flask application.
  • Dockerfile: Defines the Docker image build instructions.
  • cloudbuild.yaml: Configures the Google Cloud Build steps for building and deploying the Docker image.
  • gke.yaml: Specifies the Kubernetes deployment and service configurations for GKE.

Getting Started

To run this project locally or deploy it to GKE, follow these steps:

  1. Clone the repository:

    git clone https://github.com/guddev99/gcp-devops-project.git
  2. Navigate to the project directory:

    cd gcp-devops-project
  3. Ensure you have Docker installed:

  4. Build the Docker image locally:

    docker build -t gcpdevops .
  5. Run the Docker container locally:

    docker run -p 5000:5000 gcpdevops

    Access the Flask application at http://localhost:5000 in your web browser.

  6. To deploy to GKE, ensure you have a GKE cluster set up and configured. Create a new namespace:

    # Create a new namespace to isolate the deployment
    kubectl create namespace <namespace-name>

    Note: Creating a new namespace helps isolate the deployment within your Kubernetes cluster, ensuring better organization and management of resources.

  7. Update cloudbuild.yaml and gke.yaml with your GKE cluster details.

  8. Set up a Cloud Build Trigger connected with the project repository. This trigger should be configured to listen for pushes to the main/master branch.

    • Connect your project repository with Cloud Build by following the instructions provided in the Connecting to source repositories section of the Cloud Build documentation. connect-repository

    • Once your repository is connected, create a Cloud Build Trigger following the Creating a build trigger section of the Cloud Build documentation. connect-repository

    • You can refer to the screenshots provided, which were taken from the GCP console during the setup process.

  9. When changes are pushed to this branch, Cloud Build will automatically build the Docker image, push it to Google Artifact Registry, and deploy it to GKE.

  10. Access your deployed application through the endpoint provided by the GKE service.

Resources

Feel free to contribute to this project or customize it according to your requirements!

About

This project deploys a simple Python Flask application to Google Kubernetes Engine (GKE) using Google Cloud Build and Google Artifact Registry.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published