mirror of
https://github.com/imjasonh/kontain.me
synced 2026-07-11 18:31:08 +00:00
14 lines
306 B
Bash
14 lines
306 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
set -euxo pipefail
|
||
|
|
|
||
|
|
gcloud run deploy transparency \
|
||
|
|
--project=kontaindotme \
|
||
|
|
--region=us-central1 \
|
||
|
|
--allow-unauthenticated \
|
||
|
|
--image=$(KO_DOCKER_REPO=gcr.io/kontaindotme ko publish -P ./cmd/transparency) \
|
||
|
|
--memory=128Mi \
|
||
|
|
--cpu=1 \
|
||
|
|
--concurrency=1000 \
|
||
|
|
--timeout=60
|