mirror of
https://github.com/imjasonh/kontain.me
synced 2026-07-16 12:21:53 +00:00
15 lines
330 B
Bash
15 lines
330 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
set -euxo pipefail
|
||
|
|
|
||
|
|
gcloud run deploy wait \
|
||
|
|
--project=kontaindotme \
|
||
|
|
--region=us-central1 \
|
||
|
|
--allow-unauthenticated \
|
||
|
|
--set-env-vars=BUCKET=kontaindotme \
|
||
|
|
--image=$(KO_DOCKER_REPO=gcr.io/kontaindotme ko publish -P ./cmd/wait) \
|
||
|
|
--memory=1Gi \
|
||
|
|
--cpu=1 \
|
||
|
|
--concurrency=80 \
|
||
|
|
--timeout=60 # 1m
|