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
Copy file name to clipboardExpand all lines: docs/deployment_guide/getting_started/configure_data.rst
+21-29Lines changed: 21 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
..
2
-
SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
+
SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3
3
4
4
Licensed under the Apache License, Version 2.0 (the "License");
5
5
you may not use this file except in compliance with the License.
@@ -32,30 +32,26 @@ Workflow Logs
32
32
Run the following commands to configure the workflow spec and log storage location in OSMO. Make sure to replace the placeholders with the actual values.
33
33
34
34
.. code-block:: bash
35
-
:emphasize-lines: 2, 4, 5, 8
36
-
37
-
# URI of your s3 bucket e.g. s3://my_bucket
38
-
$ export BACKEND_URI=...
39
-
40
-
$ export ACCESS_KEY_ID=...
41
-
$ export ACCESS_KEY=...
42
-
43
-
# Bucket Region
44
-
$ export REGION=...
45
35
46
36
$ cat <<EOF > /tmp/workflow_log_config.json
47
37
{
48
38
"workflow_log": {
49
39
"credential": {
50
-
"endpoint": "'$BACKEND_URI'",
51
-
"access_key_id": "'$ACCESS_KEY_ID'",
52
-
"access_key": "'$ACCESS_KEY'",
53
-
"region": "'$REGION'"
40
+
"endpoint": "s3://my_bucket/workflows",
41
+
"access_key_id": "EXAMPLE_ACCESS_KEY_ID",
42
+
"access_key": "EXAMPLE_ACCESS_KEY",
43
+
"region": "us-east-1",
44
+
"override_url": "http://minio:9000" # Optional: HTTP endpoint for non-AWS S3
54
45
}
55
46
}
56
47
}
57
48
EOF
58
49
50
+
.. note::
51
+
52
+
``override_url`` is optional. Set it only when using non-AWS S3-compatible services
53
+
(MinIO, Ceph, LocalStack). Leave it empty or omit it for standard AWS S3.
54
+
59
55
Then, update the workflow configuration using the OSMO CLI. Please make sure you're logged in to your OSMO instance before running the following command.
60
56
61
57
.. code-block:: bash
@@ -69,30 +65,26 @@ Workflow Data
69
65
Configure the storage location for intermediate data that OSMO uses to pass outputs between workflow tasks. Replace the placeholders with your actual values.
70
66
71
67
.. code-block:: bash
72
-
:emphasize-lines: 2, 4, 5, 8
73
-
74
-
# URI of your s3 bucket e.g. s3://my_bucket
75
-
$ export BACKEND_URI=...
76
-
77
-
$ export ACCESS_KEY_ID=...
78
-
$ export ACCESS_KEY=...
79
-
80
-
# Bucket Region
81
-
$ export REGION=...
82
68
83
69
$ cat << EOF > /tmp/workflow_data_config.json
84
70
{
85
71
"workflow_data": {
86
72
"credential": {
87
-
"endpoint": "'$BACKEND_URI'",
88
-
"access_key_id": "'$ACCESS_KEY_ID'",
89
-
"access_key": "'$ACCESS_KEY'",
90
-
"region": "'$REGION'"
73
+
"endpoint": "s3://my_bucket/workflows",
74
+
"access_key_id": "EXAMPLE_ACCESS_KEY_ID",
75
+
"access_key": "EXAMPLE_ACCESS_KEY",
76
+
"region": "us-east-1",
77
+
"override_url": "http://minio:9000" # Optional: HTTP endpoint for non-AWS S3
91
78
}
92
79
}
93
80
}
94
81
EOF
95
82
83
+
.. note::
84
+
85
+
``override_url`` is optional. Set it only when using non-AWS S3-compatible services
86
+
(MinIO, Ceph, LocalStack). Leave it empty or omit it for standard AWS S3.
87
+
96
88
Then, update the workflow data configuration using the OSMO CLI. Please make sure you're logged in to your OSMO instance before running the following command.
0 commit comments