Name | cast-ai-se-cli JSON |
Version |
0.0.34
JSON |
| download |
home_page | None |
Summary | Provides a CLI to run all sorts of sequences like demo prep. |
upload_time | 2024-10-11 00:16:55 |
maintainer | None |
docs_url | None |
author | Dan Amzulescu |
requires_python | >=3.11 |
license | None |
keywords |
cast
command-line
cli
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# CAST AI SE CLI (cast-ai-se-cli package | se-cli tool)
[![PyPI version](https://img.shields.io/pypi/v/my-awesome-package.svg)](https://pypi.org/project/cast-ai-se-cli/)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Code Style](https://img.shields.io/badge/code%20style-flake8-000000.svg)](https://flake8.pycqa.org/)
[![GitHub Issues](https://img.shields.io/github/issues/castai/solutions-engineering-lab)](https://github.com/castai/solutions-engineering-lab/issues)
[![GitHub release](https://img.shields.io/github/release/castai/solutions-engineering-lab)](https://github.com/castai/solutions-engineering-lab/releases)
## Introduction / Overview
This project aims to serve as swiss knife intended to serve CAST AI SEs.
Assisting with demo environment prep, providing snapshot analysis and many others in the future.
The CLI tool is based on a modular architecture and leverages API orchestration tools package -> cast-ai-se-tools
## Table of Contents
- [Installation](#installation)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)
## Installation
To install, run:\
`pip install cast-ai-se-cli`\
or forced:\
`pip install cast-ai-se-cli --force-reinstall`
To upgrade, run:\
`pip install --upgrade cast-ai-se-cli` \
or forced:\
`pip install --upgrade --force-reinstall cast-ai-se-cli`
## Usage
For some of the functions(commands) the tool offers a configuration file is required (config.json).\
First time running the tool if file is not found, the tool would create an empty template file.\
The user is required to fill fields required to automate sequences related to the chosen command. \
The template comes with additional default parameters that can found [here](config_constants.py)
### High-Level:
### CLI commands:
se-cli demo <prep|off> <eks|aks|gcp> [--cluster_id <cluster_id>] [-h|--help] [-d|--debug]
se-cli snapshot <analyze> <brief|detailed> [--cluster_id <cluster_id>] [-h|--help] [-d|--debug]
se-cli audit <analyze> [--cluster_id <cluster_id>] [-h|--help] [-d|--debug]
#### CLI commmands explained:
se-cli demo <prep|off> <eks|aks|gcp>
- demo command is used to either **prep** a demo environment:\
Use the config.json data to get the cluster into a specific node count (default=7) \
with specific replicated demo replicas (default=2) and then delete previous nodes
Turning **off** a cluster would be invoking the hibernation cronjob.
- The subcommand **<eks|aks|gcp>** is to determine which cluster will be prep`ed or turned off.\
se-cli snapshot <analyze> <brief|detailed>
- snapshot command is used to either generate a **brief** or **detailed** report of workloads that have some effect on
scheduling:
- nodeSelector
- topologySpreadConstraints
- affinity
- runtimeClassName
- pdb`s
Workloads analyzed:
- deployments
- replicaSets
- daemonSets
- statefulSets
- jobs
The detailed report includes the namespaces and names of workloads
### Options:
-h, --help Show this help message and exit.
-d, --debug Enable debug logging.
-c, --cluster_id <cluster_id> (Optional) Specify the cluster ID for the demo environment.
## Command->Outcome:
`se-cli demo prep` :
![Alt Text](images/demo_prep.png)
`se-cli demo off` :
![Alt Text](images/demo_off.png)
Hitting a timeout:
![Alt Text](images/demo_refresh-timeout.png)
`se-cli audit analyze` :
## Contributing
Contributions are welcome! To contribute, follow these steps:
git clone project as first step
create features/fixes by applying a simple <TYPE(fix/feature...)>/<INITIATING_USER>-<FEATURE/FIX-NAME> branch
do not forget to update version and open a PR
Please make sure CI process that enforces light flake8 lint passes (flak8 and other helper script can be found in helper_script folder)
## License
This project is licensed under the [APACHE License](LICENSE).
## Roadmap
- Version 0.1.0: First semi-major release end of 2023 Q4 - tested and vetted demo functionality
- Version 0.2.0: Second semi-major release to support snapshots analysis
- Version 0.3.0: Third semi-major to integrate with solution-engineering tool
- Version 1.0.0: First Major release tested and vetter all other previous releases (end of 2024 Q1)
Raw data
{
"_id": null,
"home_page": null,
"name": "cast-ai-se-cli",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.11",
"maintainer_email": null,
"keywords": "cast command-line cli",
"author": "Dan Amzulescu",
"author_email": "dan@cast.ai",
"download_url": "https://files.pythonhosted.org/packages/a1/66/ccb78d42074febb9b64b960b5da9be34a768ad87caf8bbe1f91cdd03b1d5/cast_ai_se_cli-0.0.34.tar.gz",
"platform": null,
"description": "# CAST AI SE CLI (cast-ai-se-cli package | se-cli tool)\n\n[![PyPI version](https://img.shields.io/pypi/v/my-awesome-package.svg)](https://pypi.org/project/cast-ai-se-cli/)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n[![Code Style](https://img.shields.io/badge/code%20style-flake8-000000.svg)](https://flake8.pycqa.org/)\n\n[![GitHub Issues](https://img.shields.io/github/issues/castai/solutions-engineering-lab)](https://github.com/castai/solutions-engineering-lab/issues)\n[![GitHub release](https://img.shields.io/github/release/castai/solutions-engineering-lab)](https://github.com/castai/solutions-engineering-lab/releases)\n\n## Introduction / Overview\n\nThis project aims to serve as swiss knife intended to serve CAST AI SEs.\nAssisting with demo environment prep, providing snapshot analysis and many others in the future.\nThe CLI tool is based on a modular architecture and leverages API orchestration tools package -> cast-ai-se-tools\n\n## Table of Contents\n\n- [Installation](#installation)\n- [Usage](#usage)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Installation\n\nTo install, run:\\\n `pip install cast-ai-se-cli`\\\nor forced:\\\n `pip install cast-ai-se-cli --force-reinstall`\n\nTo upgrade, run:\\\n `pip install --upgrade cast-ai-se-cli` \\\nor forced:\\\n `pip install --upgrade --force-reinstall cast-ai-se-cli`\n\n## Usage\n\nFor some of the functions(commands) the tool offers a configuration file is required (config.json).\\\nFirst time running the tool if file is not found, the tool would create an empty template file.\\\nThe user is required to fill fields required to automate sequences related to the chosen command. \\\nThe template comes with additional default parameters that can found [here](config_constants.py)\n\n\n### High-Level:\n### CLI commands:\n se-cli demo <prep|off> <eks|aks|gcp> [--cluster_id <cluster_id>] [-h|--help] [-d|--debug]\n se-cli snapshot <analyze> <brief|detailed> [--cluster_id <cluster_id>] [-h|--help] [-d|--debug]\n se-cli audit <analyze> [--cluster_id <cluster_id>] [-h|--help] [-d|--debug]\n#### CLI commmands explained:\n se-cli demo <prep|off> <eks|aks|gcp>\n- demo command is used to either **prep** a demo environment:\\\nUse the config.json data to get the cluster into a specific node count (default=7) \\\nwith specific replicated demo replicas (default=2) and then delete previous nodes\nTurning **off** a cluster would be invoking the hibernation cronjob.\n\n- The subcommand **<eks|aks|gcp>** is to determine which cluster will be prep`ed or turned off.\\\n\n \n se-cli snapshot <analyze> <brief|detailed>\n\n- snapshot command is used to either generate a **brief** or **detailed** report of workloads that have some effect on \nscheduling:\n- nodeSelector\n- topologySpreadConstraints\n- affinity\n- runtimeClassName\n- pdb`s \n\nWorkloads analyzed:\n- deployments\n- replicaSets\n- daemonSets\n- statefulSets\n- jobs\n\nThe detailed report includes the namespaces and names of workloads\n \n\n### Options:\n -h, --help Show this help message and exit.\n -d, --debug Enable debug logging.\n -c, --cluster_id <cluster_id> (Optional) Specify the cluster ID for the demo environment.\n\n## Command->Outcome:\n\n`se-cli demo prep` :\n\n![Alt Text](images/demo_prep.png)\n\n`se-cli demo off` :\n\n![Alt Text](images/demo_off.png)\n\nHitting a timeout:\n\n![Alt Text](images/demo_refresh-timeout.png)\n\n`se-cli audit analyze` :\n\n## Contributing\n\nContributions are welcome! To contribute, follow these steps:\n\ngit clone project as first step\ncreate features/fixes by applying a simple <TYPE(fix/feature...)>/<INITIATING_USER>-<FEATURE/FIX-NAME> branch\ndo not forget to update version and open a PR\nPlease make sure CI process that enforces light flake8 lint passes (flak8 and other helper script can be found in helper_script folder)\n\n## License\n\nThis project is licensed under the [APACHE License](LICENSE).\n\n\n## Roadmap\n\n- Version 0.1.0: First semi-major release end of 2023 Q4 - tested and vetted demo functionality\n- Version 0.2.0: Second semi-major release to support snapshots analysis\n- Version 0.3.0: Third semi-major to integrate with solution-engineering tool\n- Version 1.0.0: First Major release tested and vetter all other previous releases (end of 2024 Q1)\n",
"bugtrack_url": null,
"license": null,
"summary": "Provides a CLI to run all sorts of sequences like demo prep.",
"version": "0.0.34",
"project_urls": null,
"split_keywords": [
"cast",
"command-line",
"cli"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "a166ccb78d42074febb9b64b960b5da9be34a768ad87caf8bbe1f91cdd03b1d5",
"md5": "636e585033ba0db06bbab0a1da06d1a9",
"sha256": "71295022d84617b93ebd2a714811cf6d794f58eb6a92d095c462f01d3312138e"
},
"downloads": -1,
"filename": "cast_ai_se_cli-0.0.34.tar.gz",
"has_sig": false,
"md5_digest": "636e585033ba0db06bbab0a1da06d1a9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.11",
"size": 16333,
"upload_time": "2024-10-11T00:16:55",
"upload_time_iso_8601": "2024-10-11T00:16:55.136462Z",
"url": "https://files.pythonhosted.org/packages/a1/66/ccb78d42074febb9b64b960b5da9be34a768ad87caf8bbe1f91cdd03b1d5/cast_ai_se_cli-0.0.34.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-11 00:16:55",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "cast-ai-se-cli"
}