go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/bisection/app.yaml (about)

     1  runtime: go121
     2  instance_class: F4
     3  
     4  # Note: this is interpreted by gae.py, it maps the app ID being deployed to
     5  # values of ${...} vars.
     6  # Reference: https://chromium.googlesource.com/infra/luci/luci-go/+/HEAD/examples/appengine/helloworld_v2/app.yaml
     7  luci_gae_vars:
     8    luci-bisection-dev:
     9      AUTH_SERVICE_HOST: chrome-infra-auth-dev.appspot.com
    10      CONFIG_SERVICE_HOST: config.luci.app
    11      LUCI_ANALYSIS_PROJECT: luci-analysis-dev
    12      TINK_AEAD_KEY: sm://tink-aead-primary
    13      TS_MON_ACCOUNT: app-engine-metric-publishers@prodx-mon-chrome-infra.google.com.iam.gserviceaccount.com
    14      UI_REDIRECT_URL: luci-milo-dev.appspot.com/ui/bisection
    15    luci-bisection:
    16      AUTH_SERVICE_HOST: chrome-infra-auth.appspot.com
    17      CONFIG_SERVICE_HOST: luci-config.appspot.com
    18      LUCI_ANALYSIS_PROJECT: luci-analysis
    19      TINK_AEAD_KEY: sm://tink-aead-primary
    20      TS_MON_ACCOUNT: app-engine-metric-publishers@prodx-mon-chrome-infra.google.com.iam.gserviceaccount.com
    21      UI_REDIRECT_URL: ci.chromium.org/ui/bisection
    22  
    23  handlers:
    24  - url: /.*
    25    script: auto
    26    secure: always
    27  
    28  # Pubsub Handler.
    29  - url: /_ah/push-handlers/.*
    30    script: auto
    31    secure: always
    32  
    33  entrypoint: >
    34    main
    35    -auth-service-host ${AUTH_SERVICE_HOST}
    36    -config-service-host ${CONFIG_SERVICE_HOST}
    37    -luci-analysis-project ${LUCI_ANALYSIS_PROJECT}
    38    -primary-tink-aead-key ${TINK_AEAD_KEY}
    39    -ts-mon-account ${TS_MON_ACCOUNT}
    40    -ui-redirect-url ${UI_REDIRECT_URL}