yt-k8s-operator
YTsaurus 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.
This operator helps you to deploy YTsaurus using Kubernetes.
Description
Currently 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.
Getting Started
You’ll need a Kubernetes cluster to run against. You can use KIND to get a local cluster for testing, or run against a remote cluster. Note: Your controller will automatically use the current context in your kubeconfig file (i.e. whatever cluster kubectl cluster-info
shows).
You can install pre-built versions of operator via helm chart.
Running on the cluster
- Install Instances of Custom Resources:
kubectl apply -f config/samples/
- Build and push your image to the location specified by
IMG
:
make docker-build docker-push IMG=<some-registry>/yt-k8s-operator:tag
- Deploy the controller to the cluster with the image specified by
IMG
:
make deploy IMG=<some-registry>/yt-k8s-operator:tag
Uninstall CRDs
To delete the CRDs from the cluster:
make uninstall
Undeploy controller
UnDeploy the controller to the cluster:
make undeploy
Contributing
We are glad to welcome new contributors!
- Please read the contributor's guide.
- We can accept your work to YTsaurus after you have signed contributor's license agreement (aka CLA).
- Please don't forget to add a note to your pull request, that you agree to the terms of the CLA.
How it works
This project aims to follow the Kubernetes Operator pattern
It uses Controllers which provides a reconcile function responsible for synchronizing resources until the desired state is reached on the cluster
Test It Out
- Install the CRDs into the cluster:
make install
- Run your controller (this will run in the foreground, so switch to a new terminal if you want to leave it running):
make run
NOTE: You can also run this in one step by running: make install run
Modifying the API definitions
If you are editing the API definitions, generate the manifests such as CRs or CRDs using:
make manifests
NOTE: Run make --help
for more information on all potential make
targets
More information can be found via the Kubebuilder Documentation
License
Copyright 2023.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
fix: nil map assignment
I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=en
Remove probably wrong build stage
Without this patch, I'm getting this build error
Error message makes sense since there is no
ytsaurus.tech
in the repositoryP.S. I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=ru
Added enableAntiAffinity in instance spec
Add enableAntiAffinity flag for instanceSpec, so it's possible to enable anti affinity for any node (not only for master nodes). Also, might be useful to add whole corev1.Affinity in InstanceSpec.
Link to the Helm chart is broken
Hi, Just found that the link to the operator Helm chart: https://github.com/ytsaurus/yt-k8s-operator/blob/ed7a11096472dc7c92c5430bad9114e5175fd394/README.md?plain=1#L15 forwards to the Dockerhub and require authorization, so it is probably not a helm chart nor something which is available at all.
Feature: Extra Env Variables and Cluster Metadata Options
Implemented two major enhancements:
Add Support for Different Media Types to ytsaurus Kubernetes Operator
This pull request introduces the ability to handle different media types in the ytsaurus Kubernetes operator.
I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=en
[Feature] Add ability to update Ytsaurus spec
I would like to propose an enhancement to the Ytsaurus CRD by adding advanced configuration options. These options will enable more granular control over Ytsaurus specifications and cater to varying use cases. The features I am proposing to add are:
data node
andmasters
specifications to prevent data loss or inconsistencyImplement Functionality for Updating Cluster Specifications
Currently, Ytsaurus clusters lack the option to update specifications such as volumes, locations, resources, etc. Implementing this feature would provide much-needed flexibility.