830ad87ced
Signed-off-by: Benjamin Grandfond <benjamin.grandfond@gmail.com>
19 lines
296 B
CUE
19 lines
296 B
CUE
package cloudrun
|
|
|
|
import (
|
|
"alpha.dagger.io/gcp"
|
|
"alpha.dagger.io/gcp/cloudrun"
|
|
)
|
|
|
|
TestConfig: gcpConfig: gcp.#Config
|
|
|
|
TestCloudRun: deploy: cloudrun.#Service & {
|
|
config: TestConfig.gcpConfig
|
|
name: "todoapp"
|
|
image: "gcr.io/dagger-ci/todoapp:latest"
|
|
env: {
|
|
FOO: "foo"
|
|
BAR: "bar"
|
|
}
|
|
}
|