Merge pull request #947 from benja-M-1/feat/gcp-cloudrun-env-vars
Add env var support on GCP cloudrun
This commit is contained in:
commit
3ef1196cb6
@ -1,11 +1,13 @@
|
||||
package cloudrun
|
||||
|
||||
import (
|
||||
"strings"
|
||||
|
||||
"alpha.dagger.io/dagger/op"
|
||||
"alpha.dagger.io/gcp"
|
||||
)
|
||||
|
||||
// Service deploys a Cloud Run service based on provided GCR image
|
||||
// Service deploys a Cloud Run service based on provided GCR image
|
||||
#Service: {
|
||||
// GCP Config
|
||||
config: gcp.#Config
|
||||
@ -22,6 +24,10 @@ import (
|
||||
// Cloud Run service exposed port
|
||||
port: *"80" | string @dagger(input)
|
||||
|
||||
// Cloud Run service environment variables
|
||||
env: [string]: string
|
||||
_envVars: [ for key, val in env {key + "=" + val}]
|
||||
|
||||
#up: [
|
||||
op.#Load & {
|
||||
from: gcp.#GCloud & {
|
||||
@ -38,7 +44,13 @@ import (
|
||||
"pipefail",
|
||||
"-c",
|
||||
#"""
|
||||
gcloud run deploy "$SERVICE_NAME" --image "$IMAGE" --region "$REGION" --port "$PORT" --platform "$PLATFORM" --allow-unauthenticated
|
||||
gcloud run deploy "$SERVICE_NAME" \
|
||||
--image "$IMAGE" \
|
||||
--region "$REGION" \
|
||||
--port "$PORT" \
|
||||
--platform "$PLATFORM" \
|
||||
--allow-unauthenticated \
|
||||
--set-env-vars "$ENV_VARS"
|
||||
"""#,
|
||||
]
|
||||
env: {
|
||||
@ -47,6 +59,7 @@ import (
|
||||
REGION: config.region
|
||||
IMAGE: image
|
||||
PORT: port
|
||||
ENV_VARS: strings.Join(_envVars, ",")
|
||||
}
|
||||
},
|
||||
]
|
||||
|
@ -11,4 +11,8 @@ TestCloudRun: deploy: cloudrun.#Service & {
|
||||
config: TestConfig.gcpConfig
|
||||
name: "todoapp"
|
||||
image: "gcr.io/dagger-ci/todoapp:latest"
|
||||
env: {
|
||||
FOO: "foo"
|
||||
BAR: "bar"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user