Skip to content

Commit 156e588

Browse files
committed
2 parents 450c373 + 078cb85 commit 156e588

5 files changed

Lines changed: 4 additions & 151 deletions

File tree

netapp_dataops_k8s/netapp_dataops/k8s/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
by applications using the import method of utilizing the toolkit.
55
"""
66

7-
__version__ = "2.5.0"
7+
__version__ = "2.6.0"
88

99
import base64
1010
from datetime import datetime

netapp_dataops_traditional/Examples/README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,3 @@ This directory contains different examples including Jupyter Notebooks, YAML fil
99

1010
In this example we demonstrate an AI workflow in a Jupyter Notebook using Keras and MLflow. This notebook's goal is to give you an understanding of how to use the DataOps Toolkit with MLFlow for dataset-to-model traceability.
1111

12-
## SageMaker Notebook Instances with FSx for NetApp ONTAP
13-
14-
[notebookInstance-FSXVolume-stack.yaml](notebookInstance-FSXVolume-stack.yaml)
15-
16-
An AWS CloudFormation template for deploying Amazon SageMaker Notebook instances with access to an Amazon FSx for NetApp ONTAP filesystem.

netapp_dataops_traditional/Examples/notebookInstance-FSXVolume-stack.yaml

Lines changed: 0 additions & 142 deletions
This file was deleted.

netapp_dataops_traditional/netapp_dataops/mcp_server/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def load_credentials():
1919

2020
# If path not found, raise an error that config.json file doesn't exist
2121
if not os.path.exists(credentials_path):
22-
raise FileNotFoundError("Credentials file 'config.json' not found in the netapp_dataops directory.")
22+
raise FileNotFoundError("Credentials file 'config.json' not found in the ~/.netapp_dataops directory.")
2323

2424
# Opens the file specified, reads its contents, parses the contents as JSON, and stores the resulting data
2525
with open(credentials_path, 'r') as f:
@@ -48,4 +48,4 @@ def load_credentials():
4848
if key not in config:
4949
raise ValueError(f"Missing required key '{key}' in 'config.json' file.")
5050

51-
return config # Returns the validated configuration dictionary
51+
return config # Returns the validated configuration dictionary

netapp_dataops_traditional/netapp_dataops/traditional/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
import yaml
3535

3636

37-
__version__ = "2.5.0"
37+
__version__ = "2.6.0"
3838

3939

4040
# Using this decorator in lieu of using a dependency to manage deprecation

0 commit comments

Comments
 (0)