Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion mmv1/products/vertexai/ReasoningEngine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ samples:
ignore_read_extra:
- 'deletion_policy'
- name: 'vertex_ai_reasoning_engine_byoc'
skip_func: acctest.SkipTestUntil(t, "2026-05-15") # requires valid image in Artifact Registry, give time for things to settle
skip_vcr: true # multiple IAM members
primary_resource_id: 'reasoning_engine'
steps:
Expand Down Expand Up @@ -771,6 +770,11 @@ properties:
The Artifact Registry Docker image URI (e.g.,
`us-central1-docker.pkg.dev/my-project/my-repo/my-image:tag`) of the
container image that is to be run on each worker replica.
- name: 'port'
type: Integer
default_from_api: true
description: |-
Optional. The port that the container listens on for incoming requests. If not specified, defaults to 8080.
- name: 'sourceCodeSpec'
type: NestedObject
conflicts:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ resource "google_vertex_ai_reasoning_engine" "{{$.PrimaryResourceId}}" {

spec {
container_spec {
image_uri = "us-central1-docker.pkg.dev/${data.google_project.project.project_id}/vertex-byoc/byoc-agent:latest" # image path
image_uri = "us-docker.pkg.dev/cloudrun/container/hello"
port = 8000
}
}

Expand Down