rename Cloud Run Deploy to Service

Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com>
This commit is contained in:
Tihomir Jovicic 2021-06-21 11:36:01 +02:00
parent 6451e2e40d
commit 293ee0680f
2 changed files with 8 additions and 8 deletions

View File

@ -9,8 +9,8 @@ TestConfig: gcpConfig: gcp.#Config & {
region: "us-west2"
}
TestCloudRun: deploy: cloudrun.#Deploy & {
config: TestConfig.gcpConfig
serviceName: "cloudrun-test"
image: "gcr.io/dagger-ci/cloudrun-test:latest"
TestCloudRun: deploy: cloudrun.#Service & {
config: TestConfig.gcpConfig
name: "cloudrun-test"
image: "gcr.io/dagger-ci/cloudrun-test:latest"
}

View File

@ -5,13 +5,13 @@ import (
"dagger.io/gcp"
)
// Deploy deploys a Cloud Run service based on provided GCR image
#Deploy: {
// Service deploys a Cloud Run service based on provided GCR image
#Service: {
// GCP Config
config: gcp.#Config
// service name
serviceName: string @dagger(input)
name: string @dagger(input)
// GCR image ref
image: string @dagger(input)
@ -39,7 +39,7 @@ import (
"""#,
]
env: {
SERVICE_NAME: serviceName
SERVICE_NAME: name
PLATFORM: platform
REGION: config.region
IMAGE: image