├── CODE_OF_CONDUCT.md ├── CONTRIBUTIONS.md ├── LICENSE ├── README.md ├── aks.md ├── arch.png ├── bhive.png ├── demo.gif ├── dist └── krs-0.1.0-py3.10.egg ├── dokc ├── dokc.md ├── eks.md ├── gke.md ├── kind.md ├── krs.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── entry_points.txt ├── requires.txt └── top_level.txt ├── krs ├── __init__.py ├── krs.py ├── main.py ├── requirements.txt └── utils │ ├── __init__.py │ ├── cluster_scanner.py │ ├── constants.py │ ├── fetch_tools_krs.py │ ├── functional.py │ └── llm_client.py ├── mkc.md ├── samples ├── install-tools.sh └── uninstall-tools.sh └── setup.py /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/CONTRIBUTIONS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/README.md -------------------------------------------------------------------------------- /aks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/aks.md -------------------------------------------------------------------------------- /arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/arch.png -------------------------------------------------------------------------------- /bhive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/bhive.png -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/demo.gif -------------------------------------------------------------------------------- /dist/krs-0.1.0-py3.10.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/dist/krs-0.1.0-py3.10.egg -------------------------------------------------------------------------------- /dokc: -------------------------------------------------------------------------------- 1 | ## Prerequisites 2 | -------------------------------------------------------------------------------- /dokc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/dokc.md -------------------------------------------------------------------------------- /eks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/eks.md -------------------------------------------------------------------------------- /gke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/gke.md -------------------------------------------------------------------------------- /kind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/kind.md -------------------------------------------------------------------------------- /krs.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/krs.egg-info/PKG-INFO -------------------------------------------------------------------------------- /krs.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/krs.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /krs.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /krs.egg-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/krs.egg-info/entry_points.txt -------------------------------------------------------------------------------- /krs.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/krs.egg-info/requires.txt -------------------------------------------------------------------------------- /krs.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | krs 2 | -------------------------------------------------------------------------------- /krs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /krs/krs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/krs/krs.py -------------------------------------------------------------------------------- /krs/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/krs/main.py -------------------------------------------------------------------------------- /krs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/krs/requirements.txt -------------------------------------------------------------------------------- /krs/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /krs/utils/cluster_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/krs/utils/cluster_scanner.py -------------------------------------------------------------------------------- /krs/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/krs/utils/constants.py -------------------------------------------------------------------------------- /krs/utils/fetch_tools_krs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/krs/utils/fetch_tools_krs.py -------------------------------------------------------------------------------- /krs/utils/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/krs/utils/functional.py -------------------------------------------------------------------------------- /krs/utils/llm_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/krs/utils/llm_client.py -------------------------------------------------------------------------------- /mkc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/mkc.md -------------------------------------------------------------------------------- /samples/install-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/samples/install-tools.sh -------------------------------------------------------------------------------- /samples/uninstall-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/samples/uninstall-tools.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubetoolsca/krs/HEAD/setup.py --------------------------------------------------------------------------------