2020/07 時点での Serverless NEG のハンズオン資料です。

複数の記事に跨って作成しており、2番目の記事になります。


構成

この記事の内容は長いため複数の記事に跨って作成しています。

適宜、興味のある記事を参照して下さい。

事前準備

gcloud auth login -q
### New Setting
export _pj_id='Your GCP Project ID'
export _common='check-serverless-neg'
gcloud config set project ${_pj_id}
cd [Your WorkSpace]
git clone https://github.com/iganari/package-gcp.git
cd package-gcp/compute/networkendpointgroups/serverless

やること

Cloud Run のサンプルの準備

cd cloudrun
gcloud builds submit --tag gcr.io/${_pj_id}/${_common}-run
gcloud run deploy ${_common}-run \
    --image gcr.io/${_pj_id}/${_common}-run \
    --platform managed \
    --region asia-northeast1 \
    --allow-unauthenticated
### 例

# gcloud run deploy ${_common}-run \
>     --image gcr.io/${_pj_id}/${_common}-run \
>     --platform managed \
>     --region asia-northeast1 \
>     --allow-unauthenticated
Deploying container to Cloud Run service [check-serverless-neg-run] in project [~~~~~~~~~~] region [asia-northeast1]
✓ Deploying new service... Done.
  ✓ Creating Revision...
  ✓ Routing traffic...
  ✓ Setting IAM Policy...
Done.
Service [check-serverless-neg-run] revision [check-serverless-neg-run-00001-lut] has been deployed and is serving 100 percent of traffic at https://check-serverless-neg-run-3umtulj4sq-an.a.run.app
cd -

App Engine のサンプルの準備

cd appengine
cat app.yaml.sample | sed "s/YOUR_SERVICE/${_common}-app/g" > app.yaml
gcloud app deploy
gcloud app browse -s ${_common}-app
### 例

# gcloud app browse -s ${_common}-app
Did not detect your browser. Go to this link to view your app:
https://check-serverless-neg-app-dot-[~~~~~~~~~~].an.r.appspot.com
cd -

Cloud Functions のサンプルの準備

cd functions
gcloud functions deploy func \
  --runtime python38 \
  --trigger-http \
  --region asia-northeast1 \
  --allow-unauthenticated
cd -

まとめ

これで Serverless NEG の backend に設定する Cloud RUN, App Engine, Cloud Functions の準備が出来ました!!

次は サブドメインの設定 をやっていきます!

Have fun! :)

comments powered by Disqus