{"id":28306944,"url":"https://github.com/antonum/upjet-rediscloud","last_synced_at":"2026-05-05T11:31:56.279Z","repository":{"id":62805520,"uuid":"561838415","full_name":"antonum/upjet-rediscloud","owner":"antonum","description":"Experimental Crossplane provider for RedisCloud","archived":false,"fork":false,"pushed_at":"2022-12-20T22:10:50.000Z","size":197,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-27T12:27:45.899Z","etag":null,"topics":["crossplane","k8s","redis","rediscloud","upjet"],"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/antonum.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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":"2022-11-04T15:51:58.000Z","updated_at":"2023-01-06T18:18:19.000Z","dependencies_parsed_at":"2023-01-30T02:01:10.402Z","dependency_job_id":null,"html_url":"https://github.com/antonum/upjet-rediscloud","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"crossplane/upjet-provider-template","purl":"pkg:github/antonum/upjet-rediscloud","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonum%2Fupjet-rediscloud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonum%2Fupjet-rediscloud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonum%2Fupjet-rediscloud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonum%2Fupjet-rediscloud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/antonum","download_url":"https://codeload.github.com/antonum/upjet-rediscloud/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonum%2Fupjet-rediscloud/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270912603,"owners_count":24666751,"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","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["crossplane","k8s","redis","rediscloud","upjet"],"created_at":"2025-05-24T04:12:58.648Z","updated_at":"2026-05-05T11:31:56.231Z","avatar_url":"https://github.com/antonum.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Provider RedisCloud\n\n`provider-rediscloud` is a [Crossplane](https://crossplane.io/) provider that\nis built using [Upjet](https://github.com/upbound/upjet) code\ngeneration tools and exposes XRM-conformant managed resources for the\nRedisCloud API.\n\n## QuickStart (user mode)\n\nInstall [UP CLI](https://docs.upbound.io/cli/) \n```\nbrew install upbound/tap/up\n```\nor see link above for instructions on other platforms.\n\nInstall latest Crossplane to your current kubernetes cluster:\n```\nup uxp install\n```\nThat would create `upbound-system` namespace and install core crossplane components.\n\nInstall Rediscloud provider:\n```\nkubectl apply -n upbound-system -f examples/install-open.yaml \n```\nNote: in pre-released stage `install-open.yaml` uses public, but potentially outdataed version of provider image. To access the latest you need to use examples/install.yaml that requires credentials to the private repo. \n\nCreate `secret.yaml` from `examples/providerconfig/secret.yaml.tmpl` using your Redis Cloud key/secret. Install  secret and provider config.\n```\nkubectl apply -f examples/providerconfig/secret.yaml                    \nkubectl apply -n upbound-system -f examples/providerconfig/providerconfig.yaml \n```\n\nUse `examples/database.yaml` as example to create the database. It must use pre-existing subscription id.\n\n```\nkubectl apply -f - \u003c\u003c EOF  \napiVersion: database.rediscloud.upbound.io/v1alpha1\nkind: Database\nmetadata:\n  name: my-first-database\nspec:\n  forProvider:\n    subscriptionId: 1922316\n    name: \"my-first-database\"\n    protocol: \"redis\"\n    memoryLimitInGb: 1\n    dataPersistence: \"none\"\n    throughputMeasurementBy: \"operations-per-second\"\n    throughputMeasurementValue: 1000\n  providerConfigRef:\n    name: default\nEOF\n```\n\n\n\n## Getting Started (Development out-of-cluster mode)\n\nBuild the provider:\n```\nmake generate\n```\n\nApply CRDs\n```\nkubectl apply -f package/crds\n```\n\n\n\nCreate secret.yaml from examples/providerconfig/secret.yaml.tmpl using your Redis Cloud key/secred and apply it, along with the provider config.\n```\nkubectl apply -f examples/providerconfig/secret.yaml\nkubectl apply -f examples/providerconfig/providerconfig.yaml\n```\n\nRun provider:\n```\nmake run\n```\n\nUse `examples/database.yaml` as example to create the database. It must use pre-existing subscription id.\n\n```\nkubectl apply -f - \u003c\u003c EOF  \napiVersion: database.rediscloud.upbound.io/v1alpha1\nkind: Database\nmetadata:\n  name: my-first-database\nspec:\n  forProvider:\n    subscriptionId: 1889645\n    name: \"my-first-database\"\n    protocol: \"redis\"\n    memoryLimitInGb: 1\n    dataPersistence: \"none\"\n    throughputMeasurementBy: \"operations-per-second\"\n    throughputMeasurementValue: 1000\n  providerConfigRef:\n    name: default\nEOF\n```\n\nVerify that database successfully created in RedisCloud console and by running:\n```\nkubectl describe database my-first-database\n```\n\nNotice that in this example Provider resource is referencing ControllerConfig with debug enabled.\n\nYou can see the API reference [here](https://doc.crds.dev/github.com/antonum/upjet-rediscloud).\n\n## Developing\n\nRun code-generation pipeline:\n```console\ngo run cmd/generator/main.go \"$PWD\"\n```\n\nRun against a Kubernetes cluster:\n\n```console\nmake run\n```\n\nBuild, push, and install:\n\n```console\nmake all\n```\n\nBuild binary:\n\n```console\nmake build\n```\n\n## Report a Bug\n\nFor filing bugs, suggesting improvements, or requesting new features, please\nopen an [issue](https://github.com/antonum/upjet-rediscloud/issues).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantonum%2Fupjet-rediscloud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fantonum%2Fupjet-rediscloud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantonum%2Fupjet-rediscloud/lists"}