Create buildsteps to deploy to Cloud Run
cr_buildstep_run(
name,
image,
allowUnauthenticated = TRUE,
region = cr_region_get(),
concurrency = 80,
port = NULL,
...
)
Name for deployment on Cloud Run
The name of the image to create or use in deployment - gcr.io
TRUE if can be reached from public HTTP address.
The endpoint region for deployment
How many connections each image can serve. Can be up to 80.
Container port to receive requests at. Also sets the $PORT environment variable. Must be a number between 1 and 65535, inclusive. To unset this field, pass the special value "default".
passed on to cr_buildstep
Other Cloud Buildsteps:
cr_buildstep_bash()
,
cr_buildstep_decrypt()
,
cr_buildstep_df()
,
cr_buildstep_docker()
,
cr_buildstep_edit()
,
cr_buildstep_extract()
,
cr_buildstep_gitsetup()
,
cr_buildstep_mailgun()
,
cr_buildstep_nginx_setup()
,
cr_buildstep_pkgdown()
,
cr_buildstep_r()
,
cr_buildstep_secret()
,
cr_buildstep_slack()
,
cr_buildstep()