├── .air.toml ├── .cursor └── rules │ └── base.mdc ├── .githooks ├── README.md └── pre-commit ├── .github └── workflows │ ├── go.yml │ └── release.yml ├── .gitignore ├── .gitlab-ci.yml ├── .idea ├── .gitignore ├── CloudOps.iml ├── modules.xml └── vcs.xml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.en.md ├── README.md ├── cmd └── webhook │ └── webhook.go ├── config ├── config.development.yaml ├── config.production.yaml └── webhook.yaml ├── deploy ├── kubernetes │ ├── config │ └── config.example ├── mysql │ └── init.sql ├── nginx │ └── nginx.conf └── prometheus │ └── prometheus.yml ├── docker-compose.yaml ├── env.example ├── generate.go ├── go.mod ├── go.sum ├── image ├── ai_analysis.png ├── alert_management.png ├── api_management.png ├── dashboard.png ├── form_designer.png ├── k8s_auto_healing_1.png ├── k8s_auto_healing_2.png ├── k8s_cluster.png ├── k8s_deployment.png ├── log_analysis.png ├── login.png ├── monitoring.png ├── root_cause_analysis.png ├── service_tree.png ├── system_overview.png ├── user_management.png ├── workflow_management.png └── workorder_system.png ├── internal ├── constants │ ├── base.go │ ├── k8s.go │ ├── tree.go │ └── user.go ├── cron │ ├── api │ │ └── cron_api.go │ ├── builtin.go │ ├── dao │ │ └── cron_job_dao.go │ ├── executor │ │ └── ssh_executor.go │ ├── handler │ │ ├── cron_handlers.go │ │ └── executors.go │ ├── manager.go │ ├── scheduler │ │ └── cron_scheduler.go │ └── service │ │ └── cron_service.go ├── k8s │ ├── api │ │ ├── cluster.go │ │ ├── clusterrole.go │ │ ├── clusterrolebinding.go │ │ ├── configmap.go │ │ ├── daemonset.go │ │ ├── deployment.go │ │ ├── event.go │ │ ├── ingress.go │ │ ├── namespace.go │ │ ├── node.go │ │ ├── pod.go │ │ ├── pv.go │ │ ├── pvc.go │ │ ├── rbac.go │ │ ├── resource.go │ │ ├── role.go │ │ ├── rolebinding.go │ │ ├── secret.go │ │ ├── serviceaccount.go │ │ ├── statefulset.go │ │ ├── svc.go │ │ ├── yaml_task.go │ │ └── yaml_template.go │ ├── client │ │ └── client.go │ ├── dao │ │ ├── cluster_dao.go │ │ ├── yaml_task_dao.go │ │ └── yaml_template_dao.go │ ├── manager │ │ ├── cluster_manager.go │ │ ├── clusterrole_manager.go │ │ ├── clusterrolebinding_manager.go │ │ ├── configmap_manager.go │ │ ├── daemonset_manager.go │ │ ├── deployment_manager.go │ │ ├── event_manager.go │ │ ├── ingress_manager.go │ │ ├── namespace_manager.go │ │ ├── node_manager.go │ │ ├── pod_manager.go │ │ ├── pv_manager.go │ │ ├── pvc_manager.go │ │ ├── resource_manager.go │ │ ├── role_manager.go │ │ ├── rolebinding_manager.go │ │ ├── secret_manager.go │ │ ├── serviceaccount_manager.go │ │ ├── statefulset_manager.go │ │ ├── svc_manager.go │ │ ├── taint_manager.go │ │ └── yaml_manager.go │ ├── service │ │ ├── cluster_service.go │ │ ├── clusterrole_service.go │ │ ├── clusterrolebinding_service.go │ │ ├── configmap_service.go │ │ ├── daemonset_service.go │ │ ├── deployment_service.go │ │ ├── event_service.go │ │ ├── ingress_service.go │ │ ├── namespace_service.go │ │ ├── node_service.go │ │ ├── pod_service.go │ │ ├── pv_service.go │ │ ├── pvc_service.go │ │ ├── rbac_service.go │ │ ├── resource_service.go │ │ ├── role_service.go │ │ ├── rolebinding_service.go │ │ ├── secret_service.go │ │ ├── serviceaccount_service.go │ │ ├── statefulset_service.go │ │ ├── svc_service.go │ │ ├── taint_service.go │ │ ├── yaml_task_service.go │ │ └── yaml_template_service.go │ └── utils │ │ ├── apply │ │ ├── applier.go │ │ ├── client.go │ │ └── patch.go │ │ ├── cluster.go │ │ ├── clusterrole.go │ │ ├── clusterrolebinding.go │ │ ├── common.go │ │ ├── configmap.go │ │ ├── daemonset.go │ │ ├── deployment.go │ │ ├── errors.go │ │ ├── event.go │ │ ├── ingress.go │ │ ├── namespace.go │ │ ├── node.go │ │ ├── pipe.go │ │ ├── pod.go │ │ ├── pv.go │ │ ├── pvc.go │ │ ├── query │ │ ├── fields.go │ │ └── types.go │ │ ├── resource.go │ │ ├── role.go │ │ ├── role_test.go │ │ ├── rolebinding.go │ │ ├── secret.go │ │ ├── serviceaccount.go │ │ ├── statefulset.go │ │ ├── svc.go │ │ ├── taint.go │ │ ├── validation.go │ │ └── yaml.go ├── middleware │ ├── audit.go │ ├── auth.go │ ├── log.go │ └── login.go ├── model │ ├── cron_job.go │ ├── general.go │ ├── k8s_cluster.go │ ├── k8s_clusterrole.go │ ├── k8s_clusterrolebinding.go │ ├── k8s_common.go │ ├── k8s_configmap.go │ ├── k8s_daemonset.go │ ├── k8s_deployment.go │ ├── k8s_event.go │ ├── k8s_ingress.go │ ├── k8s_namespace.go │ ├── k8s_node.go │ ├── k8s_pod.go │ ├── k8s_pv.go │ ├── k8s_pvc.go │ ├── k8s_rbac.go │ ├── k8s_role.go │ ├── k8s_rolebinding.go │ ├── k8s_secret.go │ ├── k8s_service.go │ ├── k8s_serviceaccount.go │ ├── k8s_statefulset.go │ ├── k8s_yaml.go │ ├── prometheus_alert_event.go │ ├── prometheus_alert_pool.go │ ├── prometheus_alert_rule.go │ ├── prometheus_config.go │ ├── prometheus_onduty_group.go │ ├── prometheus_record_rule.go │ ├── prometheus_scrape_job.go │ ├── prometheus_scrape_pool.go │ ├── prometheus_send_group.go │ ├── system_api.go │ ├── system_audit.go │ ├── system_info.go │ ├── system_role.go │ ├── system_user.go │ ├── tree_cloud.go │ ├── tree_cloud_account.go │ ├── tree_local.go │ ├── tree_node.go │ ├── workorder_category.go │ ├── workorder_form_design.go │ ├── workorder_instance.go │ ├── workorder_instance_comment.go │ ├── workorder_instance_flow.go │ ├── workorder_instance_time_line.go │ ├── workorder_notification.go │ ├── workorder_process.go │ └── workorder_template.go ├── not_auth │ ├── api │ │ └── handler.go │ └── service │ │ └── not_auth_service.go ├── prometheus │ ├── api │ │ ├── alert_event.go │ │ ├── alert_pool.go │ │ ├── alert_rule.go │ │ ├── config.go │ │ ├── onduty_group.go │ │ ├── record_rule.go │ │ ├── scrape_job.go │ │ ├── scrape_pool.go │ │ └── send_group.go │ ├── cache │ │ ├── alert_cache.go │ │ ├── batch_manager.go │ │ ├── cache.go │ │ ├── common.go │ │ ├── prom_cache.go │ │ ├── record_cache.go │ │ └── rule_cache.go │ ├── dao │ │ ├── alert │ │ │ ├── event_dao.go │ │ │ ├── onduty_dao.go │ │ │ ├── pool_dao.go │ │ │ ├── record_dao.go │ │ │ ├── rule_dao.go │ │ │ └── send_dao.go │ │ ├── config │ │ │ └── config_dao.go │ │ └── scrape │ │ │ ├── job_dao.go │ │ │ └── pool_dao.go │ ├── service │ │ ├── alert │ │ │ ├── event_service.go │ │ │ ├── onduty_service.go │ │ │ ├── pool_service.go │ │ │ ├── record_service.go │ │ │ ├── rule_service.go │ │ │ └── send_service.go │ │ ├── config │ │ │ └── config_service.go │ │ ├── scrape │ │ │ ├── job_service.go │ │ │ └── pool_service.go │ │ └── yaml │ │ │ └── yaml_service.go │ ├── utils │ │ ├── config.go │ │ ├── hash.go │ │ ├── http.go │ │ ├── labels.go │ │ ├── map_utils.go │ │ ├── promql.go │ │ └── validation.go │ └── webhook │ │ ├── api │ │ └── handler.go │ │ ├── cache │ │ └── cache.go │ │ ├── constant │ │ └── constant.go │ │ ├── consumer │ │ └── consumer.go │ │ ├── content │ │ └── content.go │ │ ├── dao │ │ └── webhook_dao.go │ │ ├── di │ │ ├── alert_chan.go │ │ ├── cmd.go │ │ ├── cron.go │ │ ├── gorm.go │ │ ├── logger.go │ │ ├── middleware.go │ │ ├── web.go │ │ ├── wire.go │ │ └── wire_gen.go │ │ ├── request │ │ ├── alert_req.go │ │ └── robot_req.go │ │ └── robot │ │ └── robot.go ├── startup │ └── bootstrap.go ├── system │ ├── api │ │ ├── api_handler.go │ │ ├── audit_handler.go │ │ ├── role_handler.go │ │ ├── system_handler.go │ │ └── user_handler.go │ ├── dao │ │ ├── api_dao.go │ │ ├── audit_dao.go │ │ ├── role_dao.go │ │ └── user_dao.go │ ├── service │ │ ├── api_service.go │ │ ├── audit_service.go │ │ ├── role_service.go │ │ ├── system_service.go │ │ └── user_service.go │ └── utils │ │ ├── context.go │ │ ├── mapper.go │ │ ├── password.go │ │ ├── system_utils.go │ │ └── validation.go ├── tree │ ├── api │ │ ├── cloud_account_handler.go │ │ ├── cloud_account_region_handler.go │ │ ├── tree_cloud_handler.go │ │ ├── tree_local_handler.go │ │ └── tree_node_handler.go │ ├── dao │ │ ├── cloud_account_dao.go │ │ ├── cloud_account_region_dao.go │ │ ├── tree_cloud_dao.go │ │ ├── tree_local_dao.go │ │ └── tree_node_dao.go │ ├── service │ │ ├── cloud_account_region_service.go │ │ ├── cloud_account_service.go │ │ ├── tree_cloud_service.go │ │ ├── tree_local_service.go │ │ └── tree_node_service.go │ ├── ssh │ │ └── ssh.go │ └── utils │ │ ├── aliyun_util.go │ │ ├── cloud_account_util.go │ │ ├── common_util.go │ │ ├── tree_cloud_util.go │ │ └── tree_node_util.go └── workorder │ ├── api │ ├── category_group.go │ ├── form_design.go │ ├── instance.go │ ├── instance_comment.go │ ├── instance_flow.go │ ├── instance_time_line.go │ ├── notification.go │ ├── process.go │ └── template.go │ ├── dao │ ├── category_dao.go │ ├── form_design_dao.go │ ├── instance_comment_dao.go │ ├── instance_dao.go │ ├── instance_flow_dao.go │ ├── instance_time_line_dao.go │ ├── notification_dao.go │ ├── process_dao.go │ ├── template_dao.go │ └── utils.go │ ├── notification │ ├── channel.go │ ├── email.go │ ├── feishu.go │ ├── manager.go │ ├── processor.go │ └── utils.go │ ├── service │ ├── category_group_service.go │ ├── form_design_service.go │ ├── instance_comment_service.go │ ├── instance_flow_service.go │ ├── instance_service.go │ ├── instance_time_line_service.go │ ├── notification_service.go │ ├── process_service.go │ └── template_service.go │ └── utils │ └── workorder_utils.go ├── main.go ├── mock ├── api_mock.go ├── k8s_mock.go ├── role_mock.go └── user_mock.go ├── pkg ├── base │ ├── apiresponse.go │ ├── base64.go │ ├── context.go │ ├── crypto.go │ └── general.go ├── di │ ├── asynq.go │ ├── config.go │ ├── gorm.go │ ├── init.go │ ├── logger.go │ ├── middleware.go │ ├── notification.go │ ├── redis.go │ ├── validator.go │ ├── viper.go │ ├── web.go │ ├── wire.go │ └── wire_gen.go ├── jwt │ └── jwt.go ├── net │ ├── dialer_others.go │ ├── dialer_windows.go │ └── net.go ├── retry │ ├── retry.go │ └── retry_test.go ├── sse │ └── stream.go ├── ssh │ ├── client.go │ ├── ssh.go │ └── terminal.go ├── stream │ └── sse.go ├── terminal │ └── terminal.go └── websocket │ └── connection.go └── scripts └── setup-git-hooks.sh /.air.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/.air.toml -------------------------------------------------------------------------------- /.cursor/rules/base.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/.cursor/rules/base.mdc -------------------------------------------------------------------------------- /.githooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/.githooks/README.md -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/CloudOps.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/.idea/CloudOps.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/Makefile -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/README.md -------------------------------------------------------------------------------- /cmd/webhook/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/cmd/webhook/webhook.go -------------------------------------------------------------------------------- /config/config.development.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/config/config.development.yaml -------------------------------------------------------------------------------- /config/config.production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/config/config.production.yaml -------------------------------------------------------------------------------- /config/webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/config/webhook.yaml -------------------------------------------------------------------------------- /deploy/kubernetes/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/deploy/kubernetes/config -------------------------------------------------------------------------------- /deploy/kubernetes/config.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/deploy/kubernetes/config.example -------------------------------------------------------------------------------- /deploy/mysql/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/deploy/mysql/init.sql -------------------------------------------------------------------------------- /deploy/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/deploy/nginx/nginx.conf -------------------------------------------------------------------------------- /deploy/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/deploy/prometheus/prometheus.yml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/env.example -------------------------------------------------------------------------------- /generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/generate.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/go.sum -------------------------------------------------------------------------------- /image/ai_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/image/ai_analysis.png -------------------------------------------------------------------------------- /image/alert_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/image/alert_management.png -------------------------------------------------------------------------------- /image/api_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/image/api_management.png -------------------------------------------------------------------------------- /image/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/image/dashboard.png -------------------------------------------------------------------------------- /image/form_designer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/image/form_designer.png -------------------------------------------------------------------------------- /image/k8s_auto_healing_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/image/k8s_auto_healing_1.png -------------------------------------------------------------------------------- /image/k8s_auto_healing_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/image/k8s_auto_healing_2.png -------------------------------------------------------------------------------- /image/k8s_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/image/k8s_cluster.png -------------------------------------------------------------------------------- /image/k8s_deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/image/k8s_deployment.png -------------------------------------------------------------------------------- /image/log_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/image/log_analysis.png -------------------------------------------------------------------------------- /image/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/image/login.png -------------------------------------------------------------------------------- /image/monitoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/image/monitoring.png -------------------------------------------------------------------------------- /image/root_cause_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/image/root_cause_analysis.png -------------------------------------------------------------------------------- /image/service_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/image/service_tree.png -------------------------------------------------------------------------------- /image/system_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/image/system_overview.png -------------------------------------------------------------------------------- /image/user_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/image/user_management.png -------------------------------------------------------------------------------- /image/workflow_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/image/workflow_management.png -------------------------------------------------------------------------------- /image/workorder_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/image/workorder_system.png -------------------------------------------------------------------------------- /internal/constants/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/constants/base.go -------------------------------------------------------------------------------- /internal/constants/k8s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/constants/k8s.go -------------------------------------------------------------------------------- /internal/constants/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/constants/tree.go -------------------------------------------------------------------------------- /internal/constants/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/constants/user.go -------------------------------------------------------------------------------- /internal/cron/api/cron_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/cron/api/cron_api.go -------------------------------------------------------------------------------- /internal/cron/builtin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/cron/builtin.go -------------------------------------------------------------------------------- /internal/cron/dao/cron_job_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/cron/dao/cron_job_dao.go -------------------------------------------------------------------------------- /internal/cron/executor/ssh_executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/cron/executor/ssh_executor.go -------------------------------------------------------------------------------- /internal/cron/handler/cron_handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/cron/handler/cron_handlers.go -------------------------------------------------------------------------------- /internal/cron/handler/executors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/cron/handler/executors.go -------------------------------------------------------------------------------- /internal/cron/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/cron/manager.go -------------------------------------------------------------------------------- /internal/cron/scheduler/cron_scheduler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/cron/scheduler/cron_scheduler.go -------------------------------------------------------------------------------- /internal/cron/service/cron_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/cron/service/cron_service.go -------------------------------------------------------------------------------- /internal/k8s/api/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/cluster.go -------------------------------------------------------------------------------- /internal/k8s/api/clusterrole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/clusterrole.go -------------------------------------------------------------------------------- /internal/k8s/api/clusterrolebinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/clusterrolebinding.go -------------------------------------------------------------------------------- /internal/k8s/api/configmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/configmap.go -------------------------------------------------------------------------------- /internal/k8s/api/daemonset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/daemonset.go -------------------------------------------------------------------------------- /internal/k8s/api/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/deployment.go -------------------------------------------------------------------------------- /internal/k8s/api/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/event.go -------------------------------------------------------------------------------- /internal/k8s/api/ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/ingress.go -------------------------------------------------------------------------------- /internal/k8s/api/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/namespace.go -------------------------------------------------------------------------------- /internal/k8s/api/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/node.go -------------------------------------------------------------------------------- /internal/k8s/api/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/pod.go -------------------------------------------------------------------------------- /internal/k8s/api/pv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/pv.go -------------------------------------------------------------------------------- /internal/k8s/api/pvc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/pvc.go -------------------------------------------------------------------------------- /internal/k8s/api/rbac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/rbac.go -------------------------------------------------------------------------------- /internal/k8s/api/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/resource.go -------------------------------------------------------------------------------- /internal/k8s/api/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/role.go -------------------------------------------------------------------------------- /internal/k8s/api/rolebinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/rolebinding.go -------------------------------------------------------------------------------- /internal/k8s/api/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/secret.go -------------------------------------------------------------------------------- /internal/k8s/api/serviceaccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/serviceaccount.go -------------------------------------------------------------------------------- /internal/k8s/api/statefulset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/statefulset.go -------------------------------------------------------------------------------- /internal/k8s/api/svc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/svc.go -------------------------------------------------------------------------------- /internal/k8s/api/yaml_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/yaml_task.go -------------------------------------------------------------------------------- /internal/k8s/api/yaml_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/api/yaml_template.go -------------------------------------------------------------------------------- /internal/k8s/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/client/client.go -------------------------------------------------------------------------------- /internal/k8s/dao/cluster_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/dao/cluster_dao.go -------------------------------------------------------------------------------- /internal/k8s/dao/yaml_task_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/dao/yaml_task_dao.go -------------------------------------------------------------------------------- /internal/k8s/dao/yaml_template_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/dao/yaml_template_dao.go -------------------------------------------------------------------------------- /internal/k8s/manager/cluster_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/cluster_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/clusterrole_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/clusterrole_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/clusterrolebinding_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/clusterrolebinding_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/configmap_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/configmap_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/daemonset_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/daemonset_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/deployment_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/deployment_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/event_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/event_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/ingress_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/ingress_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/namespace_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/namespace_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/node_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/node_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/pod_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/pod_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/pv_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/pv_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/pvc_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/pvc_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/resource_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/resource_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/role_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/role_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/rolebinding_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/rolebinding_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/secret_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/secret_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/serviceaccount_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/serviceaccount_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/statefulset_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/statefulset_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/svc_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/svc_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/taint_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/taint_manager.go -------------------------------------------------------------------------------- /internal/k8s/manager/yaml_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/manager/yaml_manager.go -------------------------------------------------------------------------------- /internal/k8s/service/cluster_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/cluster_service.go -------------------------------------------------------------------------------- /internal/k8s/service/clusterrole_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/clusterrole_service.go -------------------------------------------------------------------------------- /internal/k8s/service/clusterrolebinding_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/clusterrolebinding_service.go -------------------------------------------------------------------------------- /internal/k8s/service/configmap_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/configmap_service.go -------------------------------------------------------------------------------- /internal/k8s/service/daemonset_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/daemonset_service.go -------------------------------------------------------------------------------- /internal/k8s/service/deployment_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/deployment_service.go -------------------------------------------------------------------------------- /internal/k8s/service/event_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/event_service.go -------------------------------------------------------------------------------- /internal/k8s/service/ingress_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/ingress_service.go -------------------------------------------------------------------------------- /internal/k8s/service/namespace_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/namespace_service.go -------------------------------------------------------------------------------- /internal/k8s/service/node_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/node_service.go -------------------------------------------------------------------------------- /internal/k8s/service/pod_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/pod_service.go -------------------------------------------------------------------------------- /internal/k8s/service/pv_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/pv_service.go -------------------------------------------------------------------------------- /internal/k8s/service/pvc_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/pvc_service.go -------------------------------------------------------------------------------- /internal/k8s/service/rbac_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/rbac_service.go -------------------------------------------------------------------------------- /internal/k8s/service/resource_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/resource_service.go -------------------------------------------------------------------------------- /internal/k8s/service/role_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/role_service.go -------------------------------------------------------------------------------- /internal/k8s/service/rolebinding_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/rolebinding_service.go -------------------------------------------------------------------------------- /internal/k8s/service/secret_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/secret_service.go -------------------------------------------------------------------------------- /internal/k8s/service/serviceaccount_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/serviceaccount_service.go -------------------------------------------------------------------------------- /internal/k8s/service/statefulset_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/statefulset_service.go -------------------------------------------------------------------------------- /internal/k8s/service/svc_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/svc_service.go -------------------------------------------------------------------------------- /internal/k8s/service/taint_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/taint_service.go -------------------------------------------------------------------------------- /internal/k8s/service/yaml_task_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/yaml_task_service.go -------------------------------------------------------------------------------- /internal/k8s/service/yaml_template_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/service/yaml_template_service.go -------------------------------------------------------------------------------- /internal/k8s/utils/apply/applier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/apply/applier.go -------------------------------------------------------------------------------- /internal/k8s/utils/apply/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/apply/client.go -------------------------------------------------------------------------------- /internal/k8s/utils/apply/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/apply/patch.go -------------------------------------------------------------------------------- /internal/k8s/utils/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/cluster.go -------------------------------------------------------------------------------- /internal/k8s/utils/clusterrole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/clusterrole.go -------------------------------------------------------------------------------- /internal/k8s/utils/clusterrolebinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/clusterrolebinding.go -------------------------------------------------------------------------------- /internal/k8s/utils/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/common.go -------------------------------------------------------------------------------- /internal/k8s/utils/configmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/configmap.go -------------------------------------------------------------------------------- /internal/k8s/utils/daemonset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/daemonset.go -------------------------------------------------------------------------------- /internal/k8s/utils/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/deployment.go -------------------------------------------------------------------------------- /internal/k8s/utils/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/errors.go -------------------------------------------------------------------------------- /internal/k8s/utils/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/event.go -------------------------------------------------------------------------------- /internal/k8s/utils/ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/ingress.go -------------------------------------------------------------------------------- /internal/k8s/utils/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/namespace.go -------------------------------------------------------------------------------- /internal/k8s/utils/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/node.go -------------------------------------------------------------------------------- /internal/k8s/utils/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/pipe.go -------------------------------------------------------------------------------- /internal/k8s/utils/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/pod.go -------------------------------------------------------------------------------- /internal/k8s/utils/pv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/pv.go -------------------------------------------------------------------------------- /internal/k8s/utils/pvc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/pvc.go -------------------------------------------------------------------------------- /internal/k8s/utils/query/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/query/fields.go -------------------------------------------------------------------------------- /internal/k8s/utils/query/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/query/types.go -------------------------------------------------------------------------------- /internal/k8s/utils/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/resource.go -------------------------------------------------------------------------------- /internal/k8s/utils/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/role.go -------------------------------------------------------------------------------- /internal/k8s/utils/role_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/role_test.go -------------------------------------------------------------------------------- /internal/k8s/utils/rolebinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/rolebinding.go -------------------------------------------------------------------------------- /internal/k8s/utils/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/secret.go -------------------------------------------------------------------------------- /internal/k8s/utils/serviceaccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/serviceaccount.go -------------------------------------------------------------------------------- /internal/k8s/utils/statefulset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/statefulset.go -------------------------------------------------------------------------------- /internal/k8s/utils/svc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/svc.go -------------------------------------------------------------------------------- /internal/k8s/utils/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/taint.go -------------------------------------------------------------------------------- /internal/k8s/utils/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/validation.go -------------------------------------------------------------------------------- /internal/k8s/utils/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/k8s/utils/yaml.go -------------------------------------------------------------------------------- /internal/middleware/audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/middleware/audit.go -------------------------------------------------------------------------------- /internal/middleware/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/middleware/auth.go -------------------------------------------------------------------------------- /internal/middleware/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/middleware/log.go -------------------------------------------------------------------------------- /internal/middleware/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/middleware/login.go -------------------------------------------------------------------------------- /internal/model/cron_job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/cron_job.go -------------------------------------------------------------------------------- /internal/model/general.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/general.go -------------------------------------------------------------------------------- /internal/model/k8s_cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_cluster.go -------------------------------------------------------------------------------- /internal/model/k8s_clusterrole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_clusterrole.go -------------------------------------------------------------------------------- /internal/model/k8s_clusterrolebinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_clusterrolebinding.go -------------------------------------------------------------------------------- /internal/model/k8s_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_common.go -------------------------------------------------------------------------------- /internal/model/k8s_configmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_configmap.go -------------------------------------------------------------------------------- /internal/model/k8s_daemonset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_daemonset.go -------------------------------------------------------------------------------- /internal/model/k8s_deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_deployment.go -------------------------------------------------------------------------------- /internal/model/k8s_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_event.go -------------------------------------------------------------------------------- /internal/model/k8s_ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_ingress.go -------------------------------------------------------------------------------- /internal/model/k8s_namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_namespace.go -------------------------------------------------------------------------------- /internal/model/k8s_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_node.go -------------------------------------------------------------------------------- /internal/model/k8s_pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_pod.go -------------------------------------------------------------------------------- /internal/model/k8s_pv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_pv.go -------------------------------------------------------------------------------- /internal/model/k8s_pvc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_pvc.go -------------------------------------------------------------------------------- /internal/model/k8s_rbac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_rbac.go -------------------------------------------------------------------------------- /internal/model/k8s_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_role.go -------------------------------------------------------------------------------- /internal/model/k8s_rolebinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_rolebinding.go -------------------------------------------------------------------------------- /internal/model/k8s_secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_secret.go -------------------------------------------------------------------------------- /internal/model/k8s_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_service.go -------------------------------------------------------------------------------- /internal/model/k8s_serviceaccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_serviceaccount.go -------------------------------------------------------------------------------- /internal/model/k8s_statefulset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_statefulset.go -------------------------------------------------------------------------------- /internal/model/k8s_yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/k8s_yaml.go -------------------------------------------------------------------------------- /internal/model/prometheus_alert_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/prometheus_alert_event.go -------------------------------------------------------------------------------- /internal/model/prometheus_alert_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/prometheus_alert_pool.go -------------------------------------------------------------------------------- /internal/model/prometheus_alert_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/prometheus_alert_rule.go -------------------------------------------------------------------------------- /internal/model/prometheus_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/prometheus_config.go -------------------------------------------------------------------------------- /internal/model/prometheus_onduty_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/prometheus_onduty_group.go -------------------------------------------------------------------------------- /internal/model/prometheus_record_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/prometheus_record_rule.go -------------------------------------------------------------------------------- /internal/model/prometheus_scrape_job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/prometheus_scrape_job.go -------------------------------------------------------------------------------- /internal/model/prometheus_scrape_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/prometheus_scrape_pool.go -------------------------------------------------------------------------------- /internal/model/prometheus_send_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/prometheus_send_group.go -------------------------------------------------------------------------------- /internal/model/system_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/system_api.go -------------------------------------------------------------------------------- /internal/model/system_audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/system_audit.go -------------------------------------------------------------------------------- /internal/model/system_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/system_info.go -------------------------------------------------------------------------------- /internal/model/system_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/system_role.go -------------------------------------------------------------------------------- /internal/model/system_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/system_user.go -------------------------------------------------------------------------------- /internal/model/tree_cloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/tree_cloud.go -------------------------------------------------------------------------------- /internal/model/tree_cloud_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/tree_cloud_account.go -------------------------------------------------------------------------------- /internal/model/tree_local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/tree_local.go -------------------------------------------------------------------------------- /internal/model/tree_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/tree_node.go -------------------------------------------------------------------------------- /internal/model/workorder_category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/workorder_category.go -------------------------------------------------------------------------------- /internal/model/workorder_form_design.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/workorder_form_design.go -------------------------------------------------------------------------------- /internal/model/workorder_instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/workorder_instance.go -------------------------------------------------------------------------------- /internal/model/workorder_instance_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/workorder_instance_comment.go -------------------------------------------------------------------------------- /internal/model/workorder_instance_flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/workorder_instance_flow.go -------------------------------------------------------------------------------- /internal/model/workorder_instance_time_line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/workorder_instance_time_line.go -------------------------------------------------------------------------------- /internal/model/workorder_notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/workorder_notification.go -------------------------------------------------------------------------------- /internal/model/workorder_process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/workorder_process.go -------------------------------------------------------------------------------- /internal/model/workorder_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/model/workorder_template.go -------------------------------------------------------------------------------- /internal/not_auth/api/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/not_auth/api/handler.go -------------------------------------------------------------------------------- /internal/not_auth/service/not_auth_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/not_auth/service/not_auth_service.go -------------------------------------------------------------------------------- /internal/prometheus/api/alert_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/api/alert_event.go -------------------------------------------------------------------------------- /internal/prometheus/api/alert_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/api/alert_pool.go -------------------------------------------------------------------------------- /internal/prometheus/api/alert_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/api/alert_rule.go -------------------------------------------------------------------------------- /internal/prometheus/api/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/api/config.go -------------------------------------------------------------------------------- /internal/prometheus/api/onduty_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/api/onduty_group.go -------------------------------------------------------------------------------- /internal/prometheus/api/record_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/api/record_rule.go -------------------------------------------------------------------------------- /internal/prometheus/api/scrape_job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/api/scrape_job.go -------------------------------------------------------------------------------- /internal/prometheus/api/scrape_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/api/scrape_pool.go -------------------------------------------------------------------------------- /internal/prometheus/api/send_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/api/send_group.go -------------------------------------------------------------------------------- /internal/prometheus/cache/alert_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/cache/alert_cache.go -------------------------------------------------------------------------------- /internal/prometheus/cache/batch_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/cache/batch_manager.go -------------------------------------------------------------------------------- /internal/prometheus/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/cache/cache.go -------------------------------------------------------------------------------- /internal/prometheus/cache/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/cache/common.go -------------------------------------------------------------------------------- /internal/prometheus/cache/prom_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/cache/prom_cache.go -------------------------------------------------------------------------------- /internal/prometheus/cache/record_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/cache/record_cache.go -------------------------------------------------------------------------------- /internal/prometheus/cache/rule_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/cache/rule_cache.go -------------------------------------------------------------------------------- /internal/prometheus/dao/alert/event_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/dao/alert/event_dao.go -------------------------------------------------------------------------------- /internal/prometheus/dao/alert/onduty_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/dao/alert/onduty_dao.go -------------------------------------------------------------------------------- /internal/prometheus/dao/alert/pool_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/dao/alert/pool_dao.go -------------------------------------------------------------------------------- /internal/prometheus/dao/alert/record_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/dao/alert/record_dao.go -------------------------------------------------------------------------------- /internal/prometheus/dao/alert/rule_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/dao/alert/rule_dao.go -------------------------------------------------------------------------------- /internal/prometheus/dao/alert/send_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/dao/alert/send_dao.go -------------------------------------------------------------------------------- /internal/prometheus/dao/config/config_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/dao/config/config_dao.go -------------------------------------------------------------------------------- /internal/prometheus/dao/scrape/job_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/dao/scrape/job_dao.go -------------------------------------------------------------------------------- /internal/prometheus/dao/scrape/pool_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/dao/scrape/pool_dao.go -------------------------------------------------------------------------------- /internal/prometheus/service/alert/event_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/service/alert/event_service.go -------------------------------------------------------------------------------- /internal/prometheus/service/alert/onduty_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/service/alert/onduty_service.go -------------------------------------------------------------------------------- /internal/prometheus/service/alert/pool_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/service/alert/pool_service.go -------------------------------------------------------------------------------- /internal/prometheus/service/alert/record_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/service/alert/record_service.go -------------------------------------------------------------------------------- /internal/prometheus/service/alert/rule_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/service/alert/rule_service.go -------------------------------------------------------------------------------- /internal/prometheus/service/alert/send_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/service/alert/send_service.go -------------------------------------------------------------------------------- /internal/prometheus/service/config/config_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/service/config/config_service.go -------------------------------------------------------------------------------- /internal/prometheus/service/scrape/job_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/service/scrape/job_service.go -------------------------------------------------------------------------------- /internal/prometheus/service/scrape/pool_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/service/scrape/pool_service.go -------------------------------------------------------------------------------- /internal/prometheus/service/yaml/yaml_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/service/yaml/yaml_service.go -------------------------------------------------------------------------------- /internal/prometheus/utils/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/utils/config.go -------------------------------------------------------------------------------- /internal/prometheus/utils/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/utils/hash.go -------------------------------------------------------------------------------- /internal/prometheus/utils/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/utils/http.go -------------------------------------------------------------------------------- /internal/prometheus/utils/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/utils/labels.go -------------------------------------------------------------------------------- /internal/prometheus/utils/map_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/utils/map_utils.go -------------------------------------------------------------------------------- /internal/prometheus/utils/promql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/utils/promql.go -------------------------------------------------------------------------------- /internal/prometheus/utils/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/utils/validation.go -------------------------------------------------------------------------------- /internal/prometheus/webhook/api/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/webhook/api/handler.go -------------------------------------------------------------------------------- /internal/prometheus/webhook/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/webhook/cache/cache.go -------------------------------------------------------------------------------- /internal/prometheus/webhook/constant/constant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/webhook/constant/constant.go -------------------------------------------------------------------------------- /internal/prometheus/webhook/consumer/consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/webhook/consumer/consumer.go -------------------------------------------------------------------------------- /internal/prometheus/webhook/content/content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/webhook/content/content.go -------------------------------------------------------------------------------- /internal/prometheus/webhook/dao/webhook_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/webhook/dao/webhook_dao.go -------------------------------------------------------------------------------- /internal/prometheus/webhook/di/alert_chan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/webhook/di/alert_chan.go -------------------------------------------------------------------------------- /internal/prometheus/webhook/di/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/webhook/di/cmd.go -------------------------------------------------------------------------------- /internal/prometheus/webhook/di/cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/webhook/di/cron.go -------------------------------------------------------------------------------- /internal/prometheus/webhook/di/gorm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/webhook/di/gorm.go -------------------------------------------------------------------------------- /internal/prometheus/webhook/di/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/webhook/di/logger.go -------------------------------------------------------------------------------- /internal/prometheus/webhook/di/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/webhook/di/middleware.go -------------------------------------------------------------------------------- /internal/prometheus/webhook/di/web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/webhook/di/web.go -------------------------------------------------------------------------------- /internal/prometheus/webhook/di/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/webhook/di/wire.go -------------------------------------------------------------------------------- /internal/prometheus/webhook/di/wire_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/webhook/di/wire_gen.go -------------------------------------------------------------------------------- /internal/prometheus/webhook/request/alert_req.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/webhook/request/alert_req.go -------------------------------------------------------------------------------- /internal/prometheus/webhook/request/robot_req.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/webhook/request/robot_req.go -------------------------------------------------------------------------------- /internal/prometheus/webhook/robot/robot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/prometheus/webhook/robot/robot.go -------------------------------------------------------------------------------- /internal/startup/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/startup/bootstrap.go -------------------------------------------------------------------------------- /internal/system/api/api_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/api/api_handler.go -------------------------------------------------------------------------------- /internal/system/api/audit_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/api/audit_handler.go -------------------------------------------------------------------------------- /internal/system/api/role_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/api/role_handler.go -------------------------------------------------------------------------------- /internal/system/api/system_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/api/system_handler.go -------------------------------------------------------------------------------- /internal/system/api/user_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/api/user_handler.go -------------------------------------------------------------------------------- /internal/system/dao/api_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/dao/api_dao.go -------------------------------------------------------------------------------- /internal/system/dao/audit_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/dao/audit_dao.go -------------------------------------------------------------------------------- /internal/system/dao/role_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/dao/role_dao.go -------------------------------------------------------------------------------- /internal/system/dao/user_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/dao/user_dao.go -------------------------------------------------------------------------------- /internal/system/service/api_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/service/api_service.go -------------------------------------------------------------------------------- /internal/system/service/audit_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/service/audit_service.go -------------------------------------------------------------------------------- /internal/system/service/role_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/service/role_service.go -------------------------------------------------------------------------------- /internal/system/service/system_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/service/system_service.go -------------------------------------------------------------------------------- /internal/system/service/user_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/service/user_service.go -------------------------------------------------------------------------------- /internal/system/utils/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/utils/context.go -------------------------------------------------------------------------------- /internal/system/utils/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/utils/mapper.go -------------------------------------------------------------------------------- /internal/system/utils/password.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/utils/password.go -------------------------------------------------------------------------------- /internal/system/utils/system_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/utils/system_utils.go -------------------------------------------------------------------------------- /internal/system/utils/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/system/utils/validation.go -------------------------------------------------------------------------------- /internal/tree/api/cloud_account_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/api/cloud_account_handler.go -------------------------------------------------------------------------------- /internal/tree/api/cloud_account_region_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/api/cloud_account_region_handler.go -------------------------------------------------------------------------------- /internal/tree/api/tree_cloud_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/api/tree_cloud_handler.go -------------------------------------------------------------------------------- /internal/tree/api/tree_local_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/api/tree_local_handler.go -------------------------------------------------------------------------------- /internal/tree/api/tree_node_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/api/tree_node_handler.go -------------------------------------------------------------------------------- /internal/tree/dao/cloud_account_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/dao/cloud_account_dao.go -------------------------------------------------------------------------------- /internal/tree/dao/cloud_account_region_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/dao/cloud_account_region_dao.go -------------------------------------------------------------------------------- /internal/tree/dao/tree_cloud_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/dao/tree_cloud_dao.go -------------------------------------------------------------------------------- /internal/tree/dao/tree_local_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/dao/tree_local_dao.go -------------------------------------------------------------------------------- /internal/tree/dao/tree_node_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/dao/tree_node_dao.go -------------------------------------------------------------------------------- /internal/tree/service/cloud_account_region_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/service/cloud_account_region_service.go -------------------------------------------------------------------------------- /internal/tree/service/cloud_account_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/service/cloud_account_service.go -------------------------------------------------------------------------------- /internal/tree/service/tree_cloud_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/service/tree_cloud_service.go -------------------------------------------------------------------------------- /internal/tree/service/tree_local_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/service/tree_local_service.go -------------------------------------------------------------------------------- /internal/tree/service/tree_node_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/service/tree_node_service.go -------------------------------------------------------------------------------- /internal/tree/ssh/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/ssh/ssh.go -------------------------------------------------------------------------------- /internal/tree/utils/aliyun_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/utils/aliyun_util.go -------------------------------------------------------------------------------- /internal/tree/utils/cloud_account_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/utils/cloud_account_util.go -------------------------------------------------------------------------------- /internal/tree/utils/common_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/utils/common_util.go -------------------------------------------------------------------------------- /internal/tree/utils/tree_cloud_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/utils/tree_cloud_util.go -------------------------------------------------------------------------------- /internal/tree/utils/tree_node_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/tree/utils/tree_node_util.go -------------------------------------------------------------------------------- /internal/workorder/api/category_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/api/category_group.go -------------------------------------------------------------------------------- /internal/workorder/api/form_design.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/api/form_design.go -------------------------------------------------------------------------------- /internal/workorder/api/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/api/instance.go -------------------------------------------------------------------------------- /internal/workorder/api/instance_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/api/instance_comment.go -------------------------------------------------------------------------------- /internal/workorder/api/instance_flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/api/instance_flow.go -------------------------------------------------------------------------------- /internal/workorder/api/instance_time_line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/api/instance_time_line.go -------------------------------------------------------------------------------- /internal/workorder/api/notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/api/notification.go -------------------------------------------------------------------------------- /internal/workorder/api/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/api/process.go -------------------------------------------------------------------------------- /internal/workorder/api/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/api/template.go -------------------------------------------------------------------------------- /internal/workorder/dao/category_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/dao/category_dao.go -------------------------------------------------------------------------------- /internal/workorder/dao/form_design_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/dao/form_design_dao.go -------------------------------------------------------------------------------- /internal/workorder/dao/instance_comment_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/dao/instance_comment_dao.go -------------------------------------------------------------------------------- /internal/workorder/dao/instance_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/dao/instance_dao.go -------------------------------------------------------------------------------- /internal/workorder/dao/instance_flow_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/dao/instance_flow_dao.go -------------------------------------------------------------------------------- /internal/workorder/dao/instance_time_line_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/dao/instance_time_line_dao.go -------------------------------------------------------------------------------- /internal/workorder/dao/notification_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/dao/notification_dao.go -------------------------------------------------------------------------------- /internal/workorder/dao/process_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/dao/process_dao.go -------------------------------------------------------------------------------- /internal/workorder/dao/template_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/dao/template_dao.go -------------------------------------------------------------------------------- /internal/workorder/dao/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/dao/utils.go -------------------------------------------------------------------------------- /internal/workorder/notification/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/notification/channel.go -------------------------------------------------------------------------------- /internal/workorder/notification/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/notification/email.go -------------------------------------------------------------------------------- /internal/workorder/notification/feishu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/notification/feishu.go -------------------------------------------------------------------------------- /internal/workorder/notification/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/notification/manager.go -------------------------------------------------------------------------------- /internal/workorder/notification/processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/notification/processor.go -------------------------------------------------------------------------------- /internal/workorder/notification/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/notification/utils.go -------------------------------------------------------------------------------- /internal/workorder/service/category_group_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/service/category_group_service.go -------------------------------------------------------------------------------- /internal/workorder/service/form_design_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/service/form_design_service.go -------------------------------------------------------------------------------- /internal/workorder/service/instance_comment_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/service/instance_comment_service.go -------------------------------------------------------------------------------- /internal/workorder/service/instance_flow_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/service/instance_flow_service.go -------------------------------------------------------------------------------- /internal/workorder/service/instance_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/service/instance_service.go -------------------------------------------------------------------------------- /internal/workorder/service/instance_time_line_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/service/instance_time_line_service.go -------------------------------------------------------------------------------- /internal/workorder/service/notification_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/service/notification_service.go -------------------------------------------------------------------------------- /internal/workorder/service/process_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/service/process_service.go -------------------------------------------------------------------------------- /internal/workorder/service/template_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/service/template_service.go -------------------------------------------------------------------------------- /internal/workorder/utils/workorder_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/internal/workorder/utils/workorder_utils.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/main.go -------------------------------------------------------------------------------- /mock/api_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/mock/api_mock.go -------------------------------------------------------------------------------- /mock/k8s_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/mock/k8s_mock.go -------------------------------------------------------------------------------- /mock/role_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/mock/role_mock.go -------------------------------------------------------------------------------- /mock/user_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/mock/user_mock.go -------------------------------------------------------------------------------- /pkg/base/apiresponse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/base/apiresponse.go -------------------------------------------------------------------------------- /pkg/base/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/base/base64.go -------------------------------------------------------------------------------- /pkg/base/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/base/context.go -------------------------------------------------------------------------------- /pkg/base/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/base/crypto.go -------------------------------------------------------------------------------- /pkg/base/general.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/base/general.go -------------------------------------------------------------------------------- /pkg/di/asynq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/di/asynq.go -------------------------------------------------------------------------------- /pkg/di/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/di/config.go -------------------------------------------------------------------------------- /pkg/di/gorm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/di/gorm.go -------------------------------------------------------------------------------- /pkg/di/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/di/init.go -------------------------------------------------------------------------------- /pkg/di/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/di/logger.go -------------------------------------------------------------------------------- /pkg/di/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/di/middleware.go -------------------------------------------------------------------------------- /pkg/di/notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/di/notification.go -------------------------------------------------------------------------------- /pkg/di/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/di/redis.go -------------------------------------------------------------------------------- /pkg/di/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/di/validator.go -------------------------------------------------------------------------------- /pkg/di/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/di/viper.go -------------------------------------------------------------------------------- /pkg/di/web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/di/web.go -------------------------------------------------------------------------------- /pkg/di/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/di/wire.go -------------------------------------------------------------------------------- /pkg/di/wire_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/di/wire_gen.go -------------------------------------------------------------------------------- /pkg/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/jwt/jwt.go -------------------------------------------------------------------------------- /pkg/net/dialer_others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/net/dialer_others.go -------------------------------------------------------------------------------- /pkg/net/dialer_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/net/dialer_windows.go -------------------------------------------------------------------------------- /pkg/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/net/net.go -------------------------------------------------------------------------------- /pkg/retry/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/retry/retry.go -------------------------------------------------------------------------------- /pkg/retry/retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/retry/retry_test.go -------------------------------------------------------------------------------- /pkg/sse/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/sse/stream.go -------------------------------------------------------------------------------- /pkg/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/ssh/client.go -------------------------------------------------------------------------------- /pkg/ssh/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/ssh/ssh.go -------------------------------------------------------------------------------- /pkg/ssh/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/ssh/terminal.go -------------------------------------------------------------------------------- /pkg/stream/sse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/stream/sse.go -------------------------------------------------------------------------------- /pkg/terminal/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/terminal/terminal.go -------------------------------------------------------------------------------- /pkg/websocket/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/pkg/websocket/connection.go -------------------------------------------------------------------------------- /scripts/setup-git-hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSimplicity/AI-CloudOps/HEAD/scripts/setup-git-hooks.sh --------------------------------------------------------------------------------