diff --git a/dartdoc.yaml b/dartdoc.yaml deleted file mode 100644 index 3d6196525a..0000000000 --- a/dartdoc.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file -# for details. All rights reserved. Use of this source code is governed by a -# BSD-style license that can be found in the LICENSE file. - -runtime: custom -env: flex -service: dartdoc - -resources: - cpu: 2 - memory_gb: 8 - disk_size_gb: 25 - -#manual_scaling: -# instances: 1 - -automatic_scaling: - min_num_instances: 1 - max_num_instances: 2 - -skip_files: - - ^\.git/.*$ - -liveness_check: - path: '/liveness_check' - -readiness_check: - path: '/readiness_check' - check_interval_sec: 15 - app_start_timeout_sec: 1800 diff --git a/tool/.deploy.sh b/tool/.deploy.sh index 3dee6be6dc..9fe7ad4df5 100644 --- a/tool/.deploy.sh +++ b/tool/.deploy.sh @@ -57,7 +57,7 @@ else # Setup number of instances to one # NOTICE: this modifies the current folder, which is a bit of a hack - sed -i 's/_num_instances:[^\n]*/_num_instances: 1/' app.yaml search.yaml dartdoc.yaml analyzer.yaml + sed -i 's/_num_instances:[^\n]*/_num_instances: 1/' app.yaml search.yaml analyzer.yaml fi # Disable interactive gcloud prompts @@ -82,10 +82,6 @@ echo "### Start deploying search.yaml (version: $APP_VERSION)" time -p gcloud --project "$PROJECT_ID" app deploy --no-promote -v "$APP_VERSION" --image-url "$APP_IMAGE" 'search.yaml' & SEARCH_PID=$! -echo "### Start deploying dartdoc.yaml (version: $APP_VERSION)" -time -p gcloud --project "$PROJECT_ID" app deploy --no-promote -v "$APP_VERSION" --image-url "$APP_IMAGE" 'dartdoc.yaml' & -DARTDOC_PID=$! - echo "### Start deploying analyzer.yaml (version: $APP_VERSION)" time -p gcloud --project "$PROJECT_ID" app deploy --no-promote -v "$APP_VERSION" --image-url "$APP_IMAGE" 'analyzer.yaml' & ANALYZER_PID=$! @@ -96,8 +92,6 @@ echo "### app.yaml deployed" wait $SEARCH_PID echo "### search.yaml deployed" -wait $DARTDOC_PID -echo "### dartdoc.yaml deployed" wait $ANALYZER_PID echo "### analyzer.yaml deployed"