Skip to content

Commit 5bc5745

Browse files
committed
Update README and version num
1 parent 3f90ebb commit 5bc5745

3 files changed

Lines changed: 11 additions & 7 deletions

File tree

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
NetApp DataOps Toolkit
22
=========
33

4-
The NetApp DataOps Toolkit is a Python library that makes it simple for developers, data scientists, DevOps engineers, and data engineers to perform various data management tasks, such as near-instantaneously provisioning a new data volume or JupyterLab workspace, near-instantaneously cloning a data volume or JupyterLab workspace, and near-instantaneously snapshotting a data volume or JupyterLab workspace for traceability/baselining. This Python library can function as either a command line utility or a library of functions that can be imported into any Python program or Jupyter Notebook.
4+
The NetApp DataOps Toolkit is a Python-based tool that simplifies the management of development/training workspaces and inference servers that are backed by high-performance, scale-out NetApp storage. Key capabilities include:
5+
- Provision new high-cacity JupyterLab workspaces that are backed by high-performance, scale-out NetApp storage.
6+
- Provision new NVIDIA Triton Inference Server instances that are backed by enterprise-class NetApp storage.
7+
- Near-instaneously clone high-capacity JupyterLab workspaces in order to enable experimentation or rapid iteration.
8+
- Near-instaneously save snapshots of high-capacity JupyterLab workspaces for backup and/or traceability/baselining.
9+
- Near-instaneously provision, clone, and snapshot scale-out data volumes.
510

611
## Getting Started
712

8-
The latest stable release of the NetApp DataOps Toolkit is version 2.3.0. It is recommended to always use the latest stable release. You can access the documentation for the latest stable release [here](https://github.com/NetApp/netapp-dataops-toolkit/tree/v2.3.0)
13+
The latest stable release of the NetApp DataOps Toolkit is version 2.4.0. It is recommended to always use the latest stable release. You can access the documentation for the latest stable release [here](https://github.com/NetApp/netapp-dataops-toolkit/tree/v2.4.0)
914

10-
The NetApp DataOps Toolkit comes in two different flavors - one for Kubernetes-based environments, and one for traditional VM-based or bare-metal environments. Choose the appropriate flavor to use based on your specific environment and use case.
15+
The NetApp DataOps Toolkit comes in two different flavors. For access to the most capabilities, we recommend using the [NetApp DataOps Toolkit for Kubernetes](netapp_dataops_k8s/). This flavor supports the full functionality of the toolkit, including JupyterLab workspace and NVIDIA Triton Inference Server management capabilities, but requires access to a Kubernetes cluster.
1116

12-
- [NetApp DataOps Toolkit for Kubernetes](netapp_dataops_k8s/)
13-
- [NetApp DataOps Toolkit for Traditional Environments](netapp_dataops_traditional/)
17+
If you do not have access to a Kubernetes cluster, then you can use the [NetApp DataOps Toolkit for Traditional Environments](netapp_dataops_traditional/). However, this flavor only supports data volume management capabilities. It does not support the JupyterLab workspace and NVIDIA Triton Inference Server management capabilities that are available with the NetApp DataOps Toolkit for Kubernetes.
1418

1519
## Support
1620

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.4.0beta1"
7+
__version__ = "2.4.0"
88

99
import base64
1010
from datetime import datetime

netapp_dataops_traditional/netapp_dataops/traditional.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.3.0"
37+
__version__ = "2.4.0"
3838

3939

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

0 commit comments

Comments
 (0)