- Implemented Pydantic models for Kubernetes cluster state representation in `cluster.py`. - Created a `Resource` class for converting JSON/dict to Python objects in `resource.py`. - Established user models and services for user management, including password hashing and JWT token generation. - Developed application orchestration services for managing Kubernetes applications, including installation and uninstallation. - Added cluster service for retrieving cluster status and health reports. - Introduced node service for fetching node resource details and health status. - Implemented user service for handling user authentication and management.
18 lines
103 B
Plaintext
18 lines
103 B
Plaintext
|
|
# python
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# data
|
|
*.csv
|
|
*.json
|
|
*.xlsx
|
|
*.yaml
|
|
*.yml
|
|
|
|
# env variable
|
|
.env
|
|
*.ini
|
|
|
|
|