Skip to content

Commit 50425af

Browse files
committed
Addressing review comments
1 parent 6d4632a commit 50425af

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

ads/feature_store/docs/source/setup_feature_store.rst

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ Feature store is being provided by OCI as a stack based offering in user's own t
77
:doc:`Setup via Feature Store Marketplace Operator (Recommended) <./user_guides.setup.feature_store_operator>`
88
__________________________________________________________
99

10-
The feature store marketplace operator can be used to setup the feature store api server in an existing OKE cluster while also utilising an existing MySQL database. It will also help setup authentication and authorization using OCI. For more details, see :doc:`Marketplace operator <./user_guides.setup.feature_store_operator>`
10+
The feature store marketplace operator can be used to setup the feature store api server in an existing OKE cluster while also utilising an existing MySQL database. It will also help setup authentication and authorization using OCI. For more details, see :doc:`Marketplace operator <./user_guides.setup.feature_store_operator>`. Optionally, we can also setup `Feature Store API Gateway stack <https://github.com/oracle-samples/oci-data-science-ai-samples/blob/main/feature_store/README.md>`_ for authentication and authorization.
1111

1212
:doc:`Setup via Helm Charts <./user_guides.setup.helm_chart>`
1313
_______________________________
1414

15-
We can manually export images to OCIR using Marketplace UI and then deploy the obtained Helm Chart. Optionally, we can also setup Feature Store API Gateway stack for authentication and authorization.
15+
We can manually export images to OCIR using Marketplace UI and then deploy the obtained Helm Chart. Optionally, we can also setup `Feature Store API Gateway stack <https://github.com/oracle-samples/oci-data-science-ai-samples/blob/main/feature_store/README.md>`_ for authentication and authorization.
1616

1717
.. _Database configuration:
1818

@@ -31,7 +31,10 @@ Storing the password in Vault:
3131
3. (Required) Additional policies for the Feature Store API dynamic group to allow reading the secret from Vault:
3232
- ``Allow dynamic-group <feature-store-dynamic-group> to use secret-family in tenancy``
3333

34-
Here ``feature-store-dynamic-group`` is the dynamic group corresponding to the instances of the OKE nodepool where the server is deployed. `Dynamic groups <https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/callingservicesfrominstances.htm#:~:text=Dynamic%20groups%20allow%20you%20to,against%20Oracle%20Cloud%20Infrastructure%20services.>`_
34+
Here ``feature-store-dynamic-group`` is the dynamic group corresponding to the instances of the OKE nodepool where the server is deployed.
35+
36+
.. seealso::
37+
`Dynamic groups <https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/callingservicesfrominstances.htm#:~:text=Dynamic%20groups%20allow%20you%20to,against%20Oracle%20Cloud%20Infrastructure%20services.>`_
3538

3639

3740
.. _Policies:

ads/feature_store/docs/source/user_guides.setup.feature_store_operator.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ After the ``feature_store_marketplace.yaml`` is written using the init step abov
6363

6464
.. code-block:: bash
6565
66-
ads operator run -f feature_store_marketplace.yaml -b marketplace.python
66+
ads operator run -f feature_store_marketplace.yaml -b marketplace

ads/opctl/backend/marketplace/helm_helper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def check_helm_pull(helm_chart_url: str, version: str) -> HelmPullStatus:
133133
logger.debug(stderr)
134134
return HelmPullStatus.AUTHENTICATION_FAILURE
135135
else:
136-
print(stderr)
136+
logger.error(stderr)
137137
return HelmPullStatus.UNKNOWN_FAILURE
138138

139139

@@ -150,7 +150,7 @@ def run_helm_login(ocir_repo: str, token: str):
150150
if result.returncode == 0:
151151
pass
152152
else:
153-
print(result.stderr)
153+
logger.error(result.stderr)
154154
# TODO: Throw proper exception
155155
raise Exception()
156156

0 commit comments

Comments
 (0)