💡
deploydocs
  • Introduction
  • Going Live: Checklist : CARE
  • CARE: CLOUD DEPLOYMENT OVERVIEW
    • Cloud Infrastructure Diagram
    • Google Cloud deployment
      • Set up the network
      • Set up Databases
      • Create storage buckets
      • Create a GKE cluster
      • Configure GKE workloads
      • Post setup
    • Azure Deployment
    • AWS Deployment
  • CARE: Deploying Technology
  • Tech Overview: CARE
  • Tech Prerequisites: CARE
  • Setting up the server locally
  • Setting up AWS EKS
  • Setting up AWS RDS
  • Build and push docker image
  • Production Environment Variables
  • Deploying the projects on EKS
  • Requirements: AWS
  • Tech Infrastructure: CARE
  • Steps to Deploy: CARE
  • CARE: Deploying Operations
  • Operationalizing CARE in the field
  • Setting up the War-Room
  • Deployment Timeline
  • Ambulance Management System
    • SuperHero Network
  • TeleICU Tech Deployment
    • Setup Nursing Station Desktop
    • BPL Monitor Network Configuration
Powered by GitBook
On this page
  • Create a VPC
  • Reserve a static IP address

Was this helpful?

Export as PDF
  1. CARE: CLOUD DEPLOYMENT OVERVIEW
  2. Google Cloud deployment

Set up the network

PreviousGoogle Cloud deploymentNextSet up Databases

Last updated 1 year ago

Was this helpful?

Create a VPC

Go To: VPC networks > VPC networks > Create VPC network. ()

  1. Enter the following values:

    1. Name: care-vpc

    2. Maximum Transmission unit (MTU): 1460

    3. VPC network ULA internal IPv6 range: Disabled

    4. Subnet creation mode: Custom

    5. Create a new subnet using following values:

      1. Name: cluster-snet

      2. Region: asia-south1

      3. P stack type: IPv4 (single-stack)

      4. IPv4 range: 10.0.0.0/16

      5. Private Google Access: On

      6. Flow logs: Off

    6. Firewall rules: Leave default

    7. Dynamic routing mode: Regional

Equivalent commands:

gcloud compute networks create care-vpc --project=$PROJECT --subnet-mode=custom --mtu=1460 --bgp-routing-mode=regional
gcloud compute networks subnets create cluster-snet --project=$PROJRCT --range=10.0.0.0/16 --stack-type=IPV4_ONLY --network=care-vpc --region=asia-south1 --enable-private-ip-google-access

Reserve a static IP address

  1. Enter the following values:

    1. Name: pip-care

    2. Network Service Tier: Premium

    3. IP version: IPv4

    4. Type: Regional

    5. Region: asia-south1 (Mumbai)

    6. Attached to: None

  2. Note down the IP address

Equivalent commands:

gcloud compute addresses create pip-care --project=$PROJECT --region=asia-south1

Go To: VPC Networks > IP Addresses > RESERVE EXTERNAL STATIC IP ADDRESS ()

link
link