diff options
| author | Taras Madan <tarasmadan@google.com> | 2024-02-19 11:48:07 +0100 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2024-02-19 11:00:47 +0000 |
| commit | 1cf31a1b91a9104b431af48488ff3f3bf451f985 (patch) | |
| tree | d48175c4f10234cc90df476971c13acd09e97d52 | |
| parent | 578f753887693e1375d17cf79dc1c575f6032a5d (diff) | |
dashboard/app/README.md: update gcloud howto
1. We use modules now.
2. gcloud app deploy supports app_engine_apis flag.
3. "gcloud beta app deploy" believes project root is syzkaller/ and doesn't work.
| -rw-r--r-- | dashboard/app/README.md | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/dashboard/app/README.md b/dashboard/app/README.md index b1a3219da..c3f525c9b 100644 --- a/dashboard/app/README.md +++ b/dashboard/app/README.md @@ -22,11 +22,12 @@ production use. The app also needs one or more [syz-ci](/syz-ci/syz-ci.go) instances running elsewhere. The `syz-ci` instances do the actual fuzzing, bisection, patch testing, etc. -The app can be deployed with `GO111MODULE=off gcloud beta app deploy ./dashboard/app/app.yaml` command: -1. GO111MODULE=off is needed to deploy the package, not module. -2. "beta app" instead of "app" is needed to support the "app_engine_apis: true" flag in yaml file. -3. [optional flag] "--no-promote" let you to test the app firs and migrate the traffic to it later. -4. [optional flag] "--verbosity=info" let you to see what files are going to be deployed. +The app can be deployed by `gcloud app deploy ./dashboard/app/app.yaml`. + +Next optional flags are available: + +1. "--no-promote" to test the app firs and migrate the traffic to it later. +2. "--verbosity=info" to see what files are going to be deployed. The app tests can be run with: ``` |
