{"id":13467229,"url":"https://github.com/sylabs/singularity-cri","last_synced_at":"2025-03-26T01:30:41.480Z","repository":{"id":39579231,"uuid":"146425910","full_name":"sylabs/singularity-cri","owner":"sylabs","description":"The Singularity implementation of the Kubernetes Container Runtime Interface","archived":true,"fork":false,"pushed_at":"2020-12-29T20:43:09.000Z","size":7102,"stargazers_count":114,"open_issues_count":36,"forks_count":29,"subscribers_count":11,"default_branch":"master","last_synced_at":"2024-10-29T20:36:19.696Z","etag":null,"topics":["containers","cri","hpc","kubernetes","singularity","singularity-cri"],"latest_commit_sha":null,"homepage":"","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/sylabs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-08-28T09:45:55.000Z","updated_at":"2024-03-01T16:00:36.000Z","dependencies_parsed_at":"2022-09-04T07:50:49.230Z","dependency_job_id":null,"html_url":"https://github.com/sylabs/singularity-cri","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sylabs%2Fsingularity-cri","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sylabs%2Fsingularity-cri/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sylabs%2Fsingularity-cri/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sylabs%2Fsingularity-cri/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sylabs","download_url":"https://codeload.github.com/sylabs/singularity-cri/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245571698,"owners_count":20637376,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["containers","cri","hpc","kubernetes","singularity","singularity-cri"],"created_at":"2024-07-31T15:00:54.272Z","updated_at":"2025-03-26T01:30:38.841Z","avatar_url":"https://github.com/sylabs.png","language":"Go","readme":"# Singularity-CRI\n\nThe singularity-cri and wlm-operator projects were created by Sylabs to explore interaction between the Kubernetes and HPC worlds. In 2020, rather than dilute our efforts over a large number of projects, we have focused on Singularity itself and our supporting services. We're also looking forward to introducing new features and technologies in 2021.\n\nAt this point we have archived the repositories to indicate that they aren't under active development or maintenance. We recognize there is still interest in singularity-cri and wlm-operator, and we'd like these projects to find a home within a community that can further develop and maintain them. The code is open-source under the Apache License 2.0, to be compatible with other projects in the k8s ecosystem.\n\nPlease reach out to us via community@sylabs.io if you are interested in establishing a new home for the projects.\n\n----\n\n[![CircleCI](https://circleci.com/gh/sylabs/singularity-cri.svg?style=svg\u0026circle-token=276de7aa1d82749ecf8ed6513c72399041885dec)](https://circleci.com/gh/sylabs/singularity-cri)\n[![Code Coverage](https://codecov.io/gh/sylabs/singularity-cri/branch/master/graph/badge.svg)](https://codecov.io/gh/sylabs/singularity-cri)\n[![Go Report Card](https://goreportcard.com/badge/github.com/sylabs/singularity-cri)](https://goreportcard.com/report/github.com/sylabs/singularity-cri)\n\nThis repository contains Singularity implementation of\n[Kubernetes CRI](https://github.com/kubernetes/community/blob/master/contributors/devel/sig-node/container-runtime-interface.md).\nSingularity-CRI consists of two separate services: runtime and image, each of which implements \nK8s RuntimeService and ImageService respectively.\n\nThe Singularity-CRI is currently under development and passes 71/74\n[validation tests](https://github.com/kubernetes-sigs/cri-tools/blob/master/docs/validation.md).\nNote that used test suite is taken from `v1.13.0` tag. Detailed report can be found\n[here](https://docs.google.com/spreadsheets/d/1Ym3K4LddqKNc4LCh8jr5flN7YDxfnM_hrLxpeDJRO1k/edit?usp=sharing).\n\n## Quick start\n\nComplete documentation can be found [here](https://sylabs.io/guides/cri/1.0/user-guide). \nFurther a quick steps provided to set up Singularity-CRI from source.\n\nIn order to use Singularity-CRI install the following:\n\n- [git](https://git-scm.com/downloads)\n- [go 1.11+](https://golang.org/doc/install)\n- [Singularity 3.1+ with OCI support](https://github.com/sylabs/singularity/blob/master/INSTALL.md)\n- [inotify](http://man7.org/linux/man-pages/man7/inotify.7.html) for device plugin\n- socat package to perform port forwarding\n\nSince Singularity-CRI is now built with [go modules](https://github.com/golang/go/wiki/Modules)\nthere is no need to create standard [go workspace](https://golang.org/doc/code.html). If you still\nprefer keeping source code under GOPATH make sure GO111MODULE is set. \n\nThe following assumes you are installing Singularity-CRI from source outside GOPATH:\n```bash\ngit clone https://github.com/sylabs/singularity-cri.git \u0026\u0026 \\\ncd singularity-cri \u0026\u0026 \\\ngit checkout tags/v1.0.0-beta.5 -b v1.0.0-beta.5 \u0026\u0026 \\\nmake \u0026\u0026 \\\nsudo make install\n```\n\nThis will build the _sycri_ binary with CRI implementation. After installation you will find it in `/usr/local/bin`.\n\nSingularity-CRI works with Singularity runtime directly so you need to have\n`/usr/local/libexec/singularity/bin` your PATH environment variable.\n\nTo start Singularity-CRI simply run _sycri_ binary. By default it listens for requests on\n`unix:///var/run/singularity.sock` and stores image files at `/var/lib/singularity`. \nThis behaviour may be configured with config file, run `sycri -h` for more details.\n\n## Contributing\n\nCommunity contributions are always greatly appreciated. To start developing Singularity-CRI,\ncheck out the [guidelines for contributing](CONTRIBUTING.md).\n\nWe also welcome contributions to our [user docs](https://github.com/sylabs/singularity-cri-userdocs).\n\n## Support\n\nTo get help with Singularity-CRI, check out the [community Portal](https://sylabs.io/resources/community).\nAlso feel free to raise issues here or contact [maintainers](CONTRIBUTORS.md).\n\nFor additional support, [contact us](https://sylabs.io/contact-us) to receive more information.\n\n## License\n\n_Unless otherwise noted, this project is licensed under a Apache 2 license found in the [license file](LICENSE)._\n","funding_links":[],"categories":["Go"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsylabs%2Fsingularity-cri","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsylabs%2Fsingularity-cri","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsylabs%2Fsingularity-cri/lists"}