| #!/usr/bin/env bash |
| |
| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| export DEBIAN_FRONTEND=noninteractive |
| export FLUTTER_VERSION=3.10.4 |
| |
| apt-get -qq update |
| |
| apt-get -qq install -y wget unzip software-properties-common git curl apt-transport-https ca-certificates gnupg jq lsb-release |
| |
| echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" | tee -a /etc/apt/sources.list.d/google-cloud-sdk.list |
| |
| curl -fsSL https://packages.cloud.google.com/apt/doc/apt-key.gpg | gpg --dearmor -o /usr/share/keyrings/cloud.google.gpg |
| |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg |
| |
| echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" |tee /etc/apt/sources.list.d/docker.list |
| |
| wget -nv https://releases.hashicorp.com/terraform/1.4.2/terraform_1.4.2_linux_amd64.zip |
| |
| unzip terraform_1.4.2_linux_amd64.zip |
| |
| mv terraform /usr/local/bin/terraform |
| |
| wget -nv https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_$FLUTTER_VERSION-stable.tar.xz |
| |
| tar xf flutter_linux_$FLUTTER_VERSION-stable.tar.xz |
| |
| git config --global --add safe.directory /usr/local/bin/flutter |
| |
| mv flutter /usr/local/bin/flutter |
| |
| export PATH="$PATH:/usr/local/bin/flutter/bin" |
| |
| flutter doctor |
| |
| wget -nv https://firebase.tools/bin/linux/latest |
| |
| mv latest /usr/local/bin/firebase |
| |
| chmod +x /usr/local/bin/firebase |
| |
| export PATH="$PATH:/usr/local/bin/" |
| |
| firebase --version |
| |
| apt-get -qq update |
| |
| apt-get -qq install -y google-cloud-sdk-gke-gcloud-auth-plugin google-cloud-sdk openjdk-11-jdk kubectl docker-ce golang |
| |
| git clone --branch $BRANCH_NAME $REPO_NAME --single-branch |
| |
| gcloud auth configure-docker $PG_REGION-docker.pkg.dev |
| |
| gcloud container clusters get-credentials --region $PG_GKE_ZONE $PG_GKE_NAME --project $PROJECT_ID |
| |
| cd beam/learning/tour-of-beam/terraform |
| |
| gcloud datastore indexes create ../backend/internal/storage/index.yaml |
| |
| terraform init -backend-config="bucket=${STATE_BUCKET}" |
| |
| terraform apply -auto-approve -var "pg_router_host=$(kubectl get svc -l app=backend-router-grpc -o jsonpath='{.items[0].status.loadBalancer.ingress[0].ip}:{.items[0].spec.ports[0].port}')" |
| |
| cd ../../../ |
| |
| export QUALIFIED_WEB_APP_ID=${WEB_APP_ID}-${TF_VAR_environment} |
| |
| ./gradlew learning:tour-of-beam:terraform:InitFrontend -Pregion=$PG_REGION -Pproject_id=$TF_VAR_project_id -Pproject_environment=$TF_VAR_environment -Pdns-name=$DNS_NAME -Pwebapp_id=$QUALIFIED_WEB_APP_ID |
| |
| cd learning/tour-of-beam/backend |
| |
| go run ./cmd/ci_cd/ci_cd.go |
| |