{"id":20246625,"url":"https://github.com/coding-hui/cloud-judge","last_synced_at":"2026-05-11T15:36:53.556Z","repository":{"id":244490401,"uuid":"815394394","full_name":"coding-hui/cloud-judge","owner":"coding-hui","description":"Cloud-Judge 是一个基于 Kubernetes (k8s) 的云原生在线判题平台，专为编程竞赛和算法挑战设计。它利用云计算的强大能力，为用户提供了一个可伸缩、高可用的在线编程环境。Cloud-Judge 支持多种编程语言，包括但不限于 Java 和 Go，允许开发者在云上提交代码，即时获得反馈和评分。","archived":false,"fork":false,"pushed_at":"2024-06-24T07:27:36.000Z","size":47,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-03T15:47:37.126Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/coding-hui.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-15T03:29:55.000Z","updated_at":"2024-06-24T07:27:39.000Z","dependencies_parsed_at":"2024-06-24T08:47:26.411Z","dependency_job_id":null,"html_url":"https://github.com/coding-hui/cloud-judge","commit_stats":null,"previous_names":["coding-hui/cloud-judge"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/coding-hui/cloud-judge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coding-hui%2Fcloud-judge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coding-hui%2Fcloud-judge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coding-hui%2Fcloud-judge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coding-hui%2Fcloud-judge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coding-hui","download_url":"https://codeload.github.com/coding-hui/cloud-judge/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coding-hui%2Fcloud-judge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32902118,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-10T13:40:02.631Z","status":"online","status_checked_at":"2026-05-11T02:00:05.975Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-14T09:31:30.251Z","updated_at":"2026-05-11T15:36:53.526Z","avatar_url":"https://github.com/coding-hui.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cloud-Judge\n\n## Overview\n\nCloud-Judge is a cloud-native online judging platform built on Kubernetes (k8s), designed for programming contests and algorithm challenges. It leverages the power of cloud computing to provide users with a scalable and highly available online coding environment. Cloud-Judge supports multiple programming languages, including but not limited to Java and Go, allowing developers to submit code in the cloud and receive immediate feedback and scoring.\n\n## Key Features\n\n- **Multi-Language Support**: Supports a variety of programming languages, including Java and Go.\n- **Cloud-Native Architecture**: Built on Kubernetes for high availability and elastic scaling.\n- **Real-Time Feedback**: Provides immediate code evaluation results to help developers quickly identify issues.\n- **Security**: Adheres to cloud security best practices to protect user data and code.\n- **Easy Integration**: Offers a rich set of APIs for easy integration with other systems.\n\n## Description\n\nCloud-Judge is designed for coding enthusiasts and professional developers. It not only provides a stage to showcase programming skills but also serves as a powerful tool for educational and corporate training. Utilizing the capabilities of Kubernetes, Cloud-Judge can handle high-concurrency code submissions and evaluations while maintaining system stability and response speed.\n\n### Technical Highlights\n\n- **Containerized Deployment**: All services run in Docker containers, managed by Kubernetes, ensuring consistent environments and rapid deployment.\n- **Auto-Scaling**: Automatically adjusts resources based on load, optimizing cost and performance.\n- **Continuous Integration/Continuous Deployment (CI/CD)**: Integrated CI/CD processes support automated code building and deployment.\n- **Microservices Architecture**: Designed with a microservices architecture for maintainability and scalability.\n\n## Getting Started\n\n### Prerequisites\n- go version v1.22.0+\n- docker version 17.03+.\n- kubectl version v1.11.3+.\n- Access to a Kubernetes v1.11.3+ cluster.\n\n### To Deploy on the cluster\n**Build and push your image to the location specified by `IMG`:**\n\n```sh\nmake docker-build docker-push IMG=\u003csome-registry\u003e/cloud-judge:tag\n```\n\n**NOTE:** This image ought to be published in the personal registry you specified.\nAnd it is required to have access to pull the image from the working environment.\nMake sure you have the proper permission to the registry if the above commands don’t work.\n\n**Install the CRDs into the cluster:**\n\n```sh\nmake install\n```\n\n**Deploy the Manager to the cluster with the image specified by `IMG`:**\n\n```sh\nmake deploy IMG=\u003csome-registry\u003e/cloud-judge:tag\n```\n\n\u003e **NOTE**: If you encounter RBAC errors, you may need to grant yourself cluster-admin\nprivileges or be logged in as admin.\n\n**Create instances of your solution**\nYou can apply the samples (examples) from the config/sample:\n\n```sh\nkubectl apply -k config/samples/\n```\n\n\u003e**NOTE**: Ensure that the samples has default values to test it out.\n\n### To Uninstall\n**Delete the instances (CRs) from the cluster:**\n\n```sh\nkubectl delete -k config/samples/\n```\n\n**Delete the APIs(CRDs) from the cluster:**\n\n```sh\nmake uninstall\n```\n\n**UnDeploy the controller from the cluster:**\n\n```sh\nmake undeploy\n```\n\n## Project Distribution\n\nFollowing are the steps to build the installer and distribute this project to users.\n\n1. Build the installer for the image built and published in the registry:\n\n```sh\nmake build-installer IMG=\u003csome-registry\u003e/cloud-judge:tag\n```\n\nNOTE: The makefile target mentioned above generates an 'install.yaml'\nfile in the dist directory. This file contains all the resources built\nwith Kustomize, which are necessary to install this project without\nits dependencies.\n\n2. Using the installer\n\nUsers can just run kubectl apply -f \u003cURL for YAML BUNDLE\u003e to install the project, i.e.:\n\n```sh\nkubectl apply -f https://raw.githubusercontent.com/\u003corg\u003e/cloud-judge/\u003ctag or branch\u003e/dist/install.yaml\n```\n\n## Contributing\n// TODO(user): Add detailed information on how you would like others to contribute to this project\n\n**NOTE:** Run `make help` for more information on all potential `make` targets\n\nMore information can be found via the [Kubebuilder Documentation](https://book.kubebuilder.io/introduction.html)\n\n## License\n\nCopyright 2024 coding-hui.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoding-hui%2Fcloud-judge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoding-hui%2Fcloud-judge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoding-hui%2Fcloud-judge/lists"}