{"id":28211669,"url":"https://github.com/chideat/valkey-operator","last_synced_at":"2026-05-02T02:33:04.789Z","repository":{"id":275903052,"uuid":"902677541","full_name":"chideat/valkey-operator","owner":"chideat","description":"ValKeyOperator is a Kubernetes operator designed to simplify the deployment and management of Valkey sentinel, Valkey cluster, and Valkey standalone instance.","archived":false,"fork":false,"pushed_at":"2025-06-03T09:59:44.000Z","size":1072,"stargazers_count":1,"open_issues_count":6,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-03T20:04:13.124Z","etag":null,"topics":["cache","operator","redis","valkey"],"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/chideat.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":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-12-13T03:38:00.000Z","updated_at":"2025-04-03T01:42:38.000Z","dependencies_parsed_at":"2025-04-02T10:23:34.893Z","dependency_job_id":"8f2f453f-f13f-4f97-9d83-840689bfed62","html_url":"https://github.com/chideat/valkey-operator","commit_stats":null,"previous_names":["chideat/valkey-operator"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chideat%2Fvalkey-operator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chideat%2Fvalkey-operator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chideat%2Fvalkey-operator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chideat%2Fvalkey-operator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chideat","download_url":"https://codeload.github.com/chideat/valkey-operator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chideat%2Fvalkey-operator/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259055936,"owners_count":22798836,"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":["cache","operator","redis","valkey"],"created_at":"2025-05-17T18:09:50.005Z","updated_at":"2026-05-02T02:33:04.773Z","avatar_url":"https://github.com/chideat.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ValkeyOperator\n\n[![Coverage Status](https://coveralls.io/repos/github/chideat/valkey-operator/badge.svg?branch=main)](https://coveralls.io/github/chideat/valkey-operator?branch=main)\n[![Go Report Card](https://goreportcard.com/badge/github.com/chideat/valkey-operator)](https://goreportcard.com/report/github.com/chideat/valkey-operator)\n\n**ValkeyOperator** is a production-ready kubernetes operator to deploy and manage high available [Valkey Sentinel](https://valkey.io/topics/sentinel/) and [Valkey Cluster](https://valkey.io/topics/cluster-spec/) instances. This repository contains multi [Custom Resource Definition (CRD)](https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/#customresourcedefinitions) designed for the lifecycle of Valkey standalone, sentinel or cluster instance.\n\n## Features\n\n* Standalone/Sentinel/Cluster valkey arch supported.\n* Valkey ACL supported.\n* Nodeport/LB access supported; nodeport assignement also supported.\n* IPv4/IPv6 supported.\n* Online scale up/down.\n* Graceful version upgrade.\n* Nodeselector, toleration and affinity supported.\n* High available in production environment.\n\n## Quickstart\n\n### Using Helm (Recommended)\n\nIf you have a Kubernetes cluster and `kubectl` configured to access it, the easiest way to install ValkeyOperator is via Helm:\n\n```bash\n# Install the ValkeyOperator (cert-manager integration is enabled by default)\n# Requires cert-manager to be installed: https://cert-manager.io/docs/installation/\nhelm install valkey-operator charts/valkey-operator \\\n  --namespace valkey-system --create-namespace\n\n# Deploy a Valkey cluster\nkubectl apply -f https://raw.githubusercontent.com/chideat/valkey-operator/main/docs/examples/basic/cluster.yaml\n\n# Check the cluster status\nkubectl get valkey valkey-cluster -w\n```\n\n\u003e **Note:** The Helm chart uses [cert-manager](https://cert-manager.io/docs/installation/) to manage webhook TLS by default. Ensure cert-manager is installed before running `helm install`. Alternatively, disable webhooks with `--set webhook.enabled=false` if you don't need them.\n\n### Using Kustomize\n\n```bash\n# Install the ValkeyOperator\nkubectl apply -k https://github.com/chideat/valkey-operator/config/default\n```\n\nFor detailed installation and configuration instructions, see the [User Guide](./docs/guides/user-guide.md).\n\n## Supported Versions\n\n| Version | K8s Versions | Supported |\n|---------|:-------------|-----------|\n| 7.2.x   | 1.31         | Yes       |\n|         | 1.32         | Yes       |\n| 8.0.x   | 1.31         | Yes       |\n|         | 1.32         | Yes       |\n| 8.1.x   | 1.31         | Yes       |\n|         | 1.32         | Yes       |\n\n## Documentation\n\nValkeyOperator is covered by comprehensive documentation:\n\n* **[Operator Overview](./docs/guides/operator-overview.md)** - Architecture and core concepts\n* **[User Guide](./docs/guides/user-guide.md)** - Complete installation and usage guide\n* **[API Reference](./docs/api/index.md)** - Detailed API documentation\n* **[Examples](./docs/examples/)** - Ready-to-use configuration examples\n\nFor a complete list of features and configuration options, see the [documentation directory](./docs/).\n\nIn addition, practical [examples](./docs/examples) and [configuration samples](./config/samples) can be found in this repository.\n\n## Contributing\n\nThis project follows the typical GitHub pull request model. Before starting any work, please either comment on an [existing issue](https://github.com/chideat/valkey-operator/issues), or file a new one. For more details, please refer to the [CONTRIBUTING.md](./CONTRIBUTING.md) file.\n\n## Releasing\n\nTo release a new version of the ValkeyOperator, create a versioned tag (e.g. `v0.1.0`) of the repo, and the release pipeline will generate a new draft release, along side release artefacts.\n\n## License\n\n[Licensed under Apache 2.0](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchideat%2Fvalkey-operator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchideat%2Fvalkey-operator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchideat%2Fvalkey-operator/lists"}