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
2. The `OCTUE_SERVICE_REVISION_TAG` environment variable if present (returned by `get_service_sruid_parts`)
42
+
3. A generated 'cool name'
43
+
38
44
:param str octue_configuration_path: the path to the `octue.yaml` file if it's not in the current working directory
45
+
:param str|None image_uri_template: the image URI template to use to name and store images with Cloud Build
46
+
:param str|None revision_tag: a tag to use for this revision of the service (e.g. 1.3.7). This overrides the `OCTUE_SERVICE_REVISION_TAG` environment variable if it's present. If this option isn't given and the environment variable isn't present, a random 'cool name' tag is generated e.g 'curious-capybara'.
Copy file name to clipboardExpand all lines: octue/cloud/deployment/google/cloud_run/deployer.py
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,13 +26,15 @@ class CloudRunDeployer(BaseDeployer):
26
26
```
27
27
28
28
:param str octue_configuration_path: the path to the `octue.yaml` file if it's not in the current working directory
29
+
:param str|None image_uri_template: the image URI template to use to name and store images with Cloud Build
30
+
:param str revision_tag: a tag to use for this revision of the service (e.g. 1.3.7). This overrides the `OCTUE_SERVICE_REVISION_TAG` environment variable if it's present. If this option isn't given and the environment variable isn't present, a random 'cool name' tag is generated e.g 'curious-capybara'.
Copy file name to clipboardExpand all lines: octue/cloud/deployment/google/dataflow/deployer.py
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -32,13 +32,15 @@ class DataflowDeployer(BaseDeployer):
32
32
```
33
33
34
34
:param str octue_configuration_path: the path to the `octue.yaml` file if it's not in the current working directory
35
+
:param str|None image_uri_template: the image URI template to use to name and store images with Cloud Build
36
+
:param str revision_tag: a tag to use for this revision of the service (e.g. 1.3.7). This overrides the `OCTUE_SERVICE_REVISION_TAG` environment variable if it's present. If this option isn't given and the environment variable isn't present, a random 'cool name' tag is generated e.g 'curious-capybara'.
Copy file name to clipboardExpand all lines: octue/cloud/emulators/child.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -19,12 +19,12 @@ class ChildEmulator:
19
19
20
20
:param str|None id: the ID of the child; a UUID is generated if none is provided
21
21
:param dict|None backend: a dictionary including the key "name" with a value of the name of the type of backend (e.g. "GCPPubSubBackend") and key-value pairs for any other parameters the chosen backend expects; a mock backend is used if none is provided
22
-
:param str|None internal_service_name: the name to give to the internal service used to ask questions to the child; defaults to "<id>-parent"
22
+
:param str internal_service_name: the name to give to the internal service used to ask questions to the child
23
23
:param list(dict)|None messages: the list of messages to send to the parent
0 commit comments