{"id":23197085,"url":"https://github.com/ytsaurus/ytsaurus-k8s-operator","last_synced_at":"2026-02-02T18:14:47.238Z","repository":{"id":143631453,"uuid":"616230792","full_name":"ytsaurus/ytsaurus-k8s-operator","owner":"ytsaurus","description":"Kubernetes operator for YTsaurus.","archived":false,"fork":false,"pushed_at":"2025-05-07T15:22:56.000Z","size":4665,"stargazers_count":37,"open_issues_count":62,"forks_count":29,"subscribers_count":33,"default_branch":"main","last_synced_at":"2025-05-07T16:33:39.240Z","etag":null,"topics":["big-data","distributed-systems","kubernetes"],"latest_commit_sha":null,"homepage":"https://ytsaurus.tech","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ytsaurus.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":"ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-03-20T00:48:20.000Z","updated_at":"2025-04-16T08:42:36.000Z","dependencies_parsed_at":"2023-12-15T17:24:01.095Z","dependency_job_id":"110acef8-52a4-4865-b2e6-94b51bdee73d","html_url":"https://github.com/ytsaurus/ytsaurus-k8s-operator","commit_stats":null,"previous_names":["ytsaurus/ytsaurus-k8s-operator","ytsaurus/yt-k8s-operator"],"tags_count":35,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ytsaurus%2Fytsaurus-k8s-operator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ytsaurus%2Fytsaurus-k8s-operator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ytsaurus%2Fytsaurus-k8s-operator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ytsaurus%2Fytsaurus-k8s-operator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ytsaurus","download_url":"https://codeload.github.com/ytsaurus/ytsaurus-k8s-operator/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253786073,"owners_count":21964088,"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":["big-data","distributed-systems","kubernetes"],"created_at":"2024-12-18T14:27:57.728Z","updated_at":"2026-02-02T18:14:47.232Z","avatar_url":"https://github.com/ytsaurus.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ytsaurus-k8s-operator\n\nYTsaurus is a distributed storage and processing platform for big data with support for MapReduce model, a distributed file system and a NoSQL key-value database.\n\nThis operator helps you to deploy YTsaurus using Kubernetes.\n\n## Description\nCurrently available in alpha-version and is capable to deploy a new YTsaurus cluster from scratch, primarily for testing purposes. Also can perform automated cluster upgrades with downtime.\n\n\n## Getting Started\nYou’ll need a Kubernetes cluster to run against. You can use [KIND](https://sigs.k8s.io/kind) to get a local cluster for testing, or run against a remote cluster.\n**Note:** Your controller will automatically use the current context in your kubeconfig file (i.e. whatever cluster `kubectl cluster-info` shows).\n\nYou can install pre-built versions of operator via [helm chart](https://hub.docker.com/r/ytsaurus/ytop-chart).\n\nNext you need to [prepare the Ytsaurus specification](https://ytsaurus.tech/docs/en/admin-guide/prepare-spec), see provided [samples](config/samples) and [API Reference](docs/api.md).\n\n### Running on the cluster\n1. Install Instances of Custom Resources:\n\n```sh\nkubectl apply -f config/samples/cluster_v1_demo.yaml\n```\n\n2. Build and push your image to the location specified by `IMG`:\n\n```sh\nmake docker-build docker-push IMG=\u003csome-registry\u003e/ytsaurus-k8s-operator:tag\n```\n\n3. Deploy the controller to the cluster with the image specified by `IMG`:\n\n```sh\nmake deploy IMG=\u003csome-registry\u003e/ytsaurus-k8s-operator:tag\n```\n\n### Uninstall CRDs\nTo delete the CRDs from the cluster:\n\n```sh\nmake uninstall\n```\n\n### Undeploy controller\nUnDeploy the controller to the cluster:\n\n```sh\nmake undeploy\n```\n\n## Contributing\nWe are glad to welcome new contributors!\n\n1. Please read the [contributor's guide](CONTRIBUTING.md).\n2. We can accept your work to YTsaurus after you have signed contributor's license agreement (aka CLA).\n3. Please don't forget to add a note to your pull request, that you agree to the terms of the CLA.\n\n### How it works\nThis project aims to follow the Kubernetes [Operator pattern](https://kubernetes.io/docs/concepts/extend-kubernetes/operator/)\n\nIt uses [Controllers](https://kubernetes.io/docs/concepts/architecture/controller/)\nwhich provides a reconcile function responsible for synchronizing resources until the desired state is reached on the cluster\n\n### Test It Out\n1. Install the CRDs into the cluster:\n\n```sh\nmake install\n```\n\n2. Run your controller (this will run in the foreground, so switch to a new terminal if you want to leave it running):\n\n```sh\nmake run\n```\n\n**NOTE:** You can also run this in one step by running: `make install run`\n\n### Modifying the API definitions\nIf you are editing the API definitions, generate the manifests such as CRs or CRDs using:\n\n```sh\nmake manifests\n```\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 2025.\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%2Fytsaurus%2Fytsaurus-k8s-operator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fytsaurus%2Fytsaurus-k8s-operator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fytsaurus%2Fytsaurus-k8s-operator/lists"}