You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
validation: Must be a valid Docker image (lowercase repo, optional registry, tag, or SHA256 digest)
53
+
container_name:
54
+
name: container_name
55
+
title: Container Name
56
+
regexValidation: ^[a-z0-9][a-z0-9_.-]{0,62}$
57
+
validation: Container name must start and end with a lowercase alphanumeric character, contain only lowercase alphanumeric characters, hyphens or periods and must be less than 64 characters.
58
+
working_dir:
59
+
name: working_dir
60
+
title: Working Dir
61
+
regexValidation: ^(/[^/ ]+)*\/?$
62
+
validation: Must be an absolute path (e.g., /app/src).
53
63
volume_mounts:
54
64
name: volume_mounts
55
65
title: Volume Mounts
56
66
subtext: Mount In-memory, Network File System, Secret and Cloud Storage bucket volumes to your container
validation: Must be a valid memory size with unit, such as Mi, Gi, M, or G
73
105
nvidia_gpu:
74
106
name: nvidia_gpu
75
107
title: Nvidia GPU
76
-
subtext: Number of GPUs to allocate to each instance of this container. Requires a minimum of 4 vCPUs and 16Gi of memory Maximum instance count for this template is 3. A node selector must be provided for GPU allocation.
108
+
regexValidation: ^[0-9]+$
109
+
validation: Must be a whole number representing the number of GPUs.
77
110
startup_probe:
78
111
name: startup_probe
79
112
title: Startup Probe
@@ -110,10 +143,12 @@ spec:
110
143
name: http_get
111
144
title: Http Get
112
145
properties:
113
-
get:
114
-
name: get
115
-
title: Get
146
+
path:
147
+
name: path
148
+
title: Path
116
149
subtext: "Path to access on the HTTP server. Ex: e.g./reddy"
150
+
regexValidation: ^(/[^/ ]+)*/?$
151
+
validation: Path must be a valid URL path (e.g., /health).
117
152
port:
118
153
name: port
119
154
title: Port
@@ -122,6 +157,17 @@ spec:
122
157
name: http_headers
123
158
title: Http Headers
124
159
subtext: Custom headers to set in the request. HTTP allows repeated headers
160
+
properties:
161
+
name:
162
+
name: name
163
+
title: Name
164
+
regexValidation: ^[A-Za-z][A-Za-z0-9-]{0,62}$
165
+
validation: "Must be a valid HTTP header name: start with a letter, contain only letters [A–Z, a–z], digits [0–9], or hyphens [-], and be at most 63 characters long"
166
+
value:
167
+
name: value
168
+
title: Value
169
+
regexValidation: ^.*$
170
+
validation: Must be a valid string
125
171
tcp_socket:
126
172
name: tcp_socket
127
173
title: TCP Socket
@@ -133,7 +179,7 @@ spec:
133
179
port:
134
180
name: port
135
181
title: Port
136
-
subtext: Port to make a connection for the Cloud Run instance. It will default to the container port, whose default value is 8080.
182
+
subtext: Port to make a connection for the Cloud Run instance. It will default to the container port, whose default value is 8080
137
183
liveness_probe:
138
184
name: liveness_probe
139
185
title: Liveness Probe
@@ -162,6 +208,8 @@ spec:
162
208
name: path
163
209
title: Path
164
210
subtext: Path to access on HTTP server
211
+
regexValidation: ^(/[^/ ]+)*/?$
212
+
validation: Path must be a valid URL path (e.g., /health).
165
213
port:
166
214
name: port
167
215
title: Port
@@ -170,6 +218,17 @@ spec:
170
218
name: http_headers
171
219
title: Http Headers
172
220
subtext: Custom Headers to set in the request. HTTP allows repeated headers.
221
+
properties:
222
+
name:
223
+
name: name
224
+
title: Name
225
+
regexValidation: ^[A-Za-z][A-Za-z0-9-]{0,62}$
226
+
validation: "Must be a valid HTTP header name: start with a letter, contain only letters [A–Z, a–z], digits [0–9], or hyphens [-], and be at most 63 characters long"
validation: Network must be a valid network name or a full resource path.
394
564
subnetwork:
395
565
name: subnetwork
396
566
title: Subnetwork
397
567
subtext: The VPC subnetwork that the Cloud Run resource will get IPs from. At least one of network or subnetwork must be specified. If both network and subnetwork are specified, the given VPC subnetwork must belong to the given VPC network. If subnetwork is not specified, the subnetwork with the same name with the network will be used.
0 commit comments