Git Product home page Git Product logo

codespell's Introduction

gcloud compute instance create Instance name \

    --network nucleus-vpc \
    --zone us-east1-b \
    --machine-type f1-micro \
    --omage-project deboan-cloud \

gcloud container clusters create nucleus-backend \

     --num-nodes 1 \
     --network nucleus-vpc \
     --region us-east1

gcloud compute instance-templates create web-server-template \

  --metadata-from-file startup-script=startup.sh \
  --network nucleus-vpc \
  --machine-type g1-small \
  --region us-east1

gcloud compute instance-groups managed create web-server-group \

  --base-instance-name web-server \
  --size 2 \
  --template web-server-template \
  --region us-east1

gcloud compute firewall-rules create \

--allow tcp:80 \
--network nucleus-vpc

gcloud compute http-health-checks create http-basic-check

gcloud compute instance-groups managed \

set-named-ports web-server-group \
--named-ports http:80 \
--region us-east1

gcloud compute backend-services create web-server-backend \

--protocol HTTP \

--http-health-checks http-basic-check
--global

gcloud compute backend-services add-backend web-server-backend \

  --instance-group web-server-group \
  --instance-group-region us-east1 \
  --global  

gcloud compute url-maps create web-server-map \

  --default-service web-server-backend

gcloud compute target-http-proxies create http-lb-proxy \

  --url-map web-server-map

gcloud compute forwarding-rules create permit-tcp-rule-261 \

--global \
--target-http-proxy http-lb-proxy \
--ports 80

gcloud compute forwarding-rules list

codespell's People

Contributors

anatol avatar arm-in avatar bl-ue avatar cfi-gb avatar dimitripapadopoulos avatar edwardbetts avatar fishilico avatar fourchaux avatar gelma avatar int-y1 avatar janosh avatar jdufresne avatar jonmeow avatar korverdev avatar larsoner avatar lucasdemarchi avatar lurch avatar luzpaz avatar matkoniecz avatar pabs3 avatar peternewman avatar qyearsley avatar robin-wayve avatar sebweb3r avatar skangas avatar stweil avatar sylvestre avatar tkoyama010 avatar vikivivi avatar waldyrious avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.