{"id":15130019,"url":"https://github.com/axonops/axonops-developer-operator","last_synced_at":"2026-02-18T01:05:53.283Z","repository":{"id":251001611,"uuid":"834118918","full_name":"axonops/axonops-developer-operator","owner":"axonops","description":"K8s operator to create an Apache Cassandra® and AxonOps™ development environment","archived":false,"fork":false,"pushed_at":"2026-02-10T14:01:35.000Z","size":159,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-02-10T18:49:32.780Z","etag":null,"topics":["apache-cassandra","apache-cassandra-tools","axonops","cassandra","cassandra-database","golang","k8s","kubernetes","nosql","operator"],"latest_commit_sha":null,"homepage":"https://axonops.com","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/axonops.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-07-26T13:08:06.000Z","updated_at":"2026-02-10T14:02:11.000Z","dependencies_parsed_at":"2024-12-23T14:27:22.779Z","dependency_job_id":"e22a8720-6197-43a4-acb3-f2ee90bc243b","html_url":"https://github.com/axonops/axonops-developer-operator","commit_stats":null,"previous_names":["axonops/axonops-developer-operator"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/axonops/axonops-developer-operator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axonops%2Faxonops-developer-operator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axonops%2Faxonops-developer-operator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axonops%2Faxonops-developer-operator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axonops%2Faxonops-developer-operator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/axonops","download_url":"https://codeload.github.com/axonops/axonops-developer-operator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axonops%2Faxonops-developer-operator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29565018,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T00:47:08.760Z","status":"ssl_error","status_checked_at":"2026-02-18T00:45:26.718Z","response_time":100,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["apache-cassandra","apache-cassandra-tools","axonops","cassandra","cassandra-database","golang","k8s","kubernetes","nosql","operator"],"created_at":"2024-09-26T02:27:01.939Z","updated_at":"2026-02-18T01:05:53.266Z","avatar_url":"https://github.com/axonops.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AxonOps™ Developer Operator\n\nThis Kubernetes operator can create a full Apache Cassandra® environment for development that includes\n[AxonOps](https://axonops.com)\n\nApache Cassandra, Cassandra and Apache are either registered trademarks or trademarks of the Apache Software Foundation (http://www.apache.org/) in the United States and/or other countries and are used with permission. The Apache Software Foundation has no affiliation with and does not endorse or review AxonOps Developer Operator.\n\n\n\nhttps://github.com/user-attachments/assets/1dad7b84-07da-4f36-9e6a-bbb6ff1134ad\n\n\n\n## Installation\n\nThe easiest way to install it is by using the helm chart.\n\n```sh\nhelm upgrade --install axonops-developer-operator --create-namespace -n axonops charts/axonops-developer-operator\n```\n\n## Usage\n\nThe simplest configuration would be the following to deploy a single Cassandra node with the AxonOps components:\n\n```yaml\napiVersion: axonops.com/v1beta1\nkind: AxonOpsCassandra\nmetadata:\n  name: axonopscassandra-sample\n  namespace: axonops-dev\nspec:\n```\n\nBy default it does not use persistent storage but this is configurable.\n\n```yaml\napiVersion: axonops.com/v1beta1\nkind: AxonOpsCassandra\nmetadata:\n  name: axonopscassandra-sample\n  namespace: axonops-dev\nspec:\n  cassandra:\n    replicas: 3\n    clusterName: \"my-dev-env\"\n    image:\n      tag: \"5.0\"\n    persistentVolume:\n      size: 2Gi\n      storageClass: local-path\n  axonops:\n    elasticsearch:\n      persistentVolume:\n        size: 2Gi\n        storageClass: local-path\n```\n\nWe only support three Apache Cassandra major releases: 4.0, 4.1 and 5.0 (see `image.tag` above).\n\n## Accessing the AxonOps Dashboard\n\n### Port Forwarding\n\nThis operator is meant for developer that would like to test and use an Apache Cassandra cluster locally or in a shared\nKubernetes environment. If you're running locally most likely you cannot use a Load Balancer and therefore you're only\noption to access the AxonOps Dashboard is via `kube-proxy`.\n\n```sh\nkubectl -n axonops-dev port-forward svc/ds-axonopscassandra-sample 3000:300\n```\n\nor\n\n```sh\nkubectl port-forward -n axonops-dev $(kubectl get svc -n axonops-dev -l component=dashboard -oname) 3000:3000\n```\n\n\n### Ingress\n\nIf you do have an ingress, you can enable it:\n\n```yaml\napiVersion: axonops.com/v1beta1\nkind: AxonOpsCassandra\nmetadata:\n  name: axonopscassandra-sample\n  namespace: axonops-dev\nspec:\n  axonops:\n    dashboard:\n      ingress:\n        enabled: true\n        ingressClassName: nginx\n        labels:\n          hello: world\n        annotations: {}\n        hosts:\n          - axonops-dev.mydomain.com\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faxonops%2Faxonops-developer-operator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faxonops%2Faxonops-developer-operator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faxonops%2Faxonops-developer-operator/lists"}