{"id":50862244,"url":"https://github.com/braghettos/krateo-authn-chart","last_synced_at":"2026-06-14T22:03:40.633Z","repository":{"id":362688551,"uuid":"1260370004","full_name":"braghettos/krateo-authn-chart","owner":"braghettos","description":"Krateo authn blueprint — values.schema.json + CompositionDefinition over krateoplatformops/authn-chart.","archived":false,"fork":false,"pushed_at":"2026-06-13T07:39:17.000Z","size":55,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-13T09:23:05.177Z","etag":null,"topics":["authentication","compositiondefinition","helm-chart","krateo","kubernetes","oci-artifact","platformops"],"latest_commit_sha":null,"homepage":null,"language":"Go Template","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/braghettos.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":"2026-06-05T12:24:59.000Z","updated_at":"2026-06-13T07:39:20.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/braghettos/krateo-authn-chart","commit_stats":null,"previous_names":["braghettos/authn-chart","braghettos/krateo-authn-chart"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/braghettos/krateo-authn-chart","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/braghettos%2Fkrateo-authn-chart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/braghettos%2Fkrateo-authn-chart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/braghettos%2Fkrateo-authn-chart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/braghettos%2Fkrateo-authn-chart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/braghettos","download_url":"https://codeload.github.com/braghettos/krateo-authn-chart/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/braghettos%2Fkrateo-authn-chart/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34339196,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-14T02:00:07.365Z","response_time":62,"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":["authentication","compositiondefinition","helm-chart","krateo","kubernetes","oci-artifact","platformops"],"created_at":"2026-06-14T22:03:39.737Z","updated_at":"2026-06-14T22:03:40.628Z","avatar_url":"https://github.com/braghettos.png","language":"Go Template","funding_links":[],"categories":[],"sub_categories":[],"readme":"# krateo-authn-chart\n\nKrateo PlatformOps **AuthN** blueprint — a fork of\n[`krateoplatformops/authn`](https://github.com/krateoplatformops/authn) packaged as a Krateo\nblueprint: the upstream Helm chart plus a `values.schema.json` (so `core-provider` can generate\na typed CRD) and a `CompositionDefinition`.\n\nPart of the [krateo-installer](https://github.com/braghettos/krateo-installer) ecosystem.\n\n## What it ships\n\n| Path | Chart | OCI artifact | Versioning |\n|------|-------|--------------|-----------|\n| `chart/` | `authn` (appVersion 0.22.2) | `oci://ghcr.io/braghettos/krateo/authn` | tracks the git tag |\n| `crd-chart/` | `authn-crd` | `oci://ghcr.io/braghettos/krateo/authn-crd` | pinned `0.22.2` (independent of the app tag) |\n\nThe authn CRDs (users/ldap/oauth/oidc) version independently of the authn app, so\n`crd-chart/Chart.yaml` carries a literal `version: 0.22.2` rather than the `CHART_VERSION`\nplaceholder — the release workflow leaves it untouched.\n\n## How the installer consumes it\n\nThe installer umbrella emits a `CompositionDefinition` that points `core-provider` at the OCI\nchart; `core-provider` generates `Authn.composition.krateo.io` and reconciles one Composition\nper instance:\n\n```yaml\napiVersion: core.krateo.io/v1alpha1\nkind: CompositionDefinition\nmetadata:\n  name: authn\n  namespace: krateo-system\nspec:\n  chart:\n    url: oci://ghcr.io/braghettos/krateo/authn\n    version: \"0.22.2\"\n```\n\n## Requirements\n\nA Secret named `jwt-sign-key` must exist in the namespace where `authn` is deployed, holding the\nJWT signing key:\n\n```yaml\napiVersion: v1\nkind: Secret\nmetadata:\n  name: jwt-sign-key\ntype: Opaque\nstringData:\n  JWT_SIGN_KEY: change-me\n```\n\n## Local validation\n\n```sh\nhelm lint chart\nhelm template smoke chart\n```\n\n## Release\n\nPush a semver tag (`X.Y.Z`) — CI packages `chart/` and `crd-chart/` and publishes both to\n`oci://ghcr.io/braghettos/krateo`.\n\n## Links\n\n- Installer umbrella: https://github.com/braghettos/krateo-installer\n- Upstream: https://github.com/krateoplatformops/authn\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbraghettos%2Fkrateo-authn-chart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbraghettos%2Fkrateo-authn-chart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbraghettos%2Fkrateo-authn-chart/lists"}