mirror of
https://github.com/imjasonh/kontain.me
synced 2026-07-17 14:24:19 +00:00
14 lines
337 B
Bash
Executable file
14 lines
337 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
gcloud run deploy estargz \
|
|
--project=kontaindotme \
|
|
--region=us-central1 \
|
|
--allow-unauthenticated \
|
|
--set-env-vars=BUCKET=kontaindotme \
|
|
--image=$(KO_DOCKER_REPO=gcr.io/kontaindotme ko publish -P ./cmd/estargz) \
|
|
--memory=4Gi \
|
|
--cpu=1 \
|
|
--concurrency=80 \
|
|
--timeout=300 # 5m
|