| service: monitor |
| runtime: go116 |
| |
| # Note: this is interpreted by gae.py, it maps the app ID being deployed to |
| # values of ${...} vars. |
| luci_gae_vars: |
| cr-buildbucket-dev: |
| AUTH_SERVICE_HOST: chrome-infra-auth-dev.appspot.com |
| REDIS_ADDR: 10.90.74.59:6379 |
| VPC_CONNECTOR: projects/cr-buildbucket-dev/locations/us-central1/connectors/connector |
| DS_CACHE: redis |
| cr-buildbucket: |
| AUTH_SERVICE_HOST: chrome-infra-auth.appspot.com |
| REDIS_ADDR: 10.52.56.84:6379 |
| VPC_CONNECTOR: projects/cr-buildbucket/locations/us-central1/connectors/connector |
| DS_CACHE: disable |
| |
| vpc_access_connector: |
| name: ${VPC_CONNECTOR} |
| |
| basic_scaling: |
| max_instances: 1 |
| idle_timeout: 10m |
| |
| inbound_services: |
| - warmup |
| |
| instance_class: B4 |
| |
| entrypoint: > |
| main |
| -auth-service-host ${AUTH_SERVICE_HOST} |
| -ts-mon-account app-engine-metric-publishers@prodx-mon-chrome-infra.google.com.iam.gserviceaccount.com |
| -cloud-error-reporting |
| -root-secret sm://root-secret |
| -primary-tink-aead-key sm://tink-aead-primary |
| -ds-connection-pool-size 8 |
| -redis-addr ${REDIS_ADDR} |
| -ds-cache ${DS_CACHE} |
| |
| handlers: |
| - url: /.* |
| script: auto |
| secure: always |