{"id":46059456,"url":"https://github.com/nestoca/joy-generator","last_synced_at":"2026-05-07T23:23:20.085Z","repository":{"id":186796455,"uuid":"673484651","full_name":"nestoca/joy-generator","owner":"nestoca","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-19T01:35:31.000Z","size":275,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-02-19T07:27:18.472Z","etag":null,"topics":["owner-team-platform","stream-platform"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nestoca.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"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":"2023-08-01T18:22:19.000Z","updated_at":"2026-02-04T16:49:48.000Z","dependencies_parsed_at":"2023-11-22T20:25:28.012Z","dependency_job_id":"e1fee3b7-0054-44cb-bcf7-19bffeed3416","html_url":"https://github.com/nestoca/joy-generator","commit_stats":null,"previous_names":["nestoca/joy-generator"],"tags_count":67,"template":false,"template_full_name":null,"purl":"pkg:github/nestoca/joy-generator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nestoca%2Fjoy-generator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nestoca%2Fjoy-generator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nestoca%2Fjoy-generator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nestoca%2Fjoy-generator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nestoca","download_url":"https://codeload.github.com/nestoca/joy-generator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nestoca%2Fjoy-generator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29967932,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T10:55:55.490Z","status":"ssl_error","status_checked_at":"2026-03-01T10:55:55.175Z","response_time":124,"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":["owner-team-platform","stream-platform"],"created_at":"2026-03-01T11:03:44.300Z","updated_at":"2026-03-01T11:03:44.870Z","avatar_url":"https://github.com/nestoca.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# joy-generator\n\nArgoCD plugin for expanding joy releases for the ArgoCD ApplicationSet Controller.\n\n## Dev Setup\n\n```bash\ngo install github.com/matryer/moq@latest\n```\n\n## How-to roll-out and test updates\n\n1. Update this repo and merge to master (triggering a build \u0026 /release)\n    1. Note the new release version# from https://github.com/nestoca/joy-generator/releases\n    2. Ensure the same version is present [here](https://nestoca.github.io/joy-generator/index.yaml)\n2. Apply the newly released version in `infra`'s component `ArgoCD.configureJoyGenerator()`'s `devVersion` [here](https://github.com/nestoca/infra/blob/c25905374ec678ec21ce468cb00628b572f70838/pulumi/platform/components/ArgoCD.ts#L478)\n    1. do `pu main preview-markdown` on `infra/pulumi/platform` as part of your PR/roll-out \u0026 merge, as normal\n4. Test the new version\n    1. ℹ️ `devVersion` will be deployed to environments that contain `dev` in their name, `version` to all other envs\n    2. Update the catalog (e.g. an [env-var in canary](https://github.com/nestoca/catalog/blob/bd549614d8ae932d92e43576031d288a8bba474d/environments/dev/releases/platform/canary.yaml#L80-L82)) \u0026 merge to master\n    3. Verify that the env-var is present in ArgoCD's `Live Manifest` under [dev-canary \u003e `rollout` \u003e _latest_ `rs`(ReplicaSet) \u003e `pod`](https://argocd.platform.nesto.ca/applications/dev-canary)\n5. Apply the newly released version in `infra`'s component `ArgoCD.configureJoyGenerator()`'s `version` [here](https://github.com/nestoca/infra/blob/c25905374ec678ec21ce468cb00628b572f70838/pulumi/platform/components/ArgoCD.ts#L477)\n    1. do `pu main preview-markdown` on `infra/pulumi/platform` as part of your PR/roll-out \u0026 merge, as normal\n6. VICTORY! 💪\n\n\n## Data Flow\n\nArgo CD's ApplicationSet controller will query `joy-generator` on Webhooks or schedule. The latter returns a full list of parameters for each application in the catalog. The ApplicationSet controller will then create or update the Application resources in the cluster. See [Argo CD - Generators\nPlugin](https://argo-cd.readthedocs.io/en/latest/operator-manual/applicationset/Generators-Plugin/) for more information.\n\n```mermaid\nsequenceDiagram\n    participant user as User\n    participant gh as GitHub\n    participant a as ArgoCD\n    participant jg as Joy Generator\n    participant k8s as Kubernetes\n\n    user-\u003e\u003egh: Merge a PR\n    gh-\u003e\u003ea: Webhook\n    a-\u003e\u003ejg: Get list parameter values to use as a template\n    jg-\u003e\u003egh: Pull latest commit of master\n    jg-\u003e\u003ea: Generate list of parameters for each applications in the catalog\n    a-\u003e\u003ek8s: Create or update ApplicationSet\n    a-\u003e\u003ek8s: Create or update Application\n    k8s-\u003e\u003ea: ApplicationSet created or updated\n    a-\u003e\u003ek8s: Sync Applications (if needed)\n    k8s-\u003e\u003ea: Applications synced\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnestoca%2Fjoy-generator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnestoca%2Fjoy-generator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnestoca%2Fjoy-generator/lists"}