{"id":50886043,"url":"https://github.com/hops-ops/crossplane-functions-stack","last_synced_at":"2026-06-15T17:02:21.074Z","repository":{"id":361288638,"uuid":"1253100298","full_name":"hops-ops/crossplane-functions-stack","owner":"hops-ops","description":"Crossplane configuration package: installs Function packages + their DeploymentRuntimeConfigs on a target Crossplane control plane.","archived":false,"fork":false,"pushed_at":"2026-05-29T23:26:19.000Z","size":16,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-30T01:13:08.975Z","etag":null,"topics":[],"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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hops-ops.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-05-29T06:41:38.000Z","updated_at":"2026-05-29T23:25:10.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hops-ops/crossplane-functions-stack","commit_stats":null,"previous_names":["hops-ops/crossplane-functions-stack"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/hops-ops/crossplane-functions-stack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Fcrossplane-functions-stack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Fcrossplane-functions-stack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Fcrossplane-functions-stack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Fcrossplane-functions-stack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hops-ops","download_url":"https://codeload.github.com/hops-ops/crossplane-functions-stack/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Fcrossplane-functions-stack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34372130,"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-15T02:00:07.085Z","response_time":63,"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":[],"created_at":"2026-06-15T17:02:20.268Z","updated_at":"2026-06-15T17:02:21.067Z","avatar_url":"https://github.com/hops-ops.png","language":"Go Template","funding_links":[],"categories":[],"sub_categories":[],"readme":"# crossplane-functions-stack\n\nInstalls Crossplane **Function** packages — plus a `DeploymentRuntimeConfig` for each — onto a target Crossplane control plane, via `provider-kubernetes`. Split out of the monolithic `CrossplaneStack` so function installation is owned independently of the Crossplane core install, mirroring the per-provider stacks.\n\nEach entry in `spec.functions` renders:\n- a `pkg.crossplane.io/v1` `Function` (with `runtimeConfigRef` → its DRC), and\n- a `pkg.crossplane.io/v1beta1` `DeploymentRuntimeConfig` carrying resource requests/limits and optional NodePool scheduling.\n\nThe `Function` and `DeploymentRuntimeConfig` names are derived from the package path (`\u003corg\u003e-\u003cname\u003e`, e.g. `crossplane-contrib-function-auto-ready`) so compositions can reference them by their canonical name.\n\n## Getting Started\n\nInstall the default function set (`function-auto-ready`) onto a cluster:\n\n```yaml\napiVersion: crossplane.ops.com.ai/v1alpha1\nkind: FunctionsStack\nmetadata:\n  name: functions\n  namespace: default\nspec:\n  clusterName: my-cluster\n  kubernetesProviderConfigRef:\n    name: my-cluster\n```\n\nOmitting `spec.functions` installs `function-auto-ready:v0.6.0` with default requests (15m CPU / 100Mi memory) — the behavior previously baked into `CrossplaneStack`, now with a DRC.\n\n## Growing\n\nInstall several functions, each sized independently, and schedule their runtimes onto the Crossplane NodePool:\n\n```yaml\nspec:\n  clusterName: my-cluster\n  kubernetesProviderConfigRef:\n    name: my-cluster\n  nodePool:\n    enabled: true\n  functions:\n    autoReady:\n      package: xpkg.crossplane.io/crossplane-contrib/function-auto-ready\n      version: v0.6.0\n    patchAndTransform:\n      package: xpkg.crossplane.io/crossplane-contrib/function-patch-and-transform\n      version: v0.9.0\n      runtimeConfig:\n        requestsCpu: 50m\n        requestsMemory: 256Mi\n        cpu: \"1\"\n        memory: 512Mi\n```\n\nSet `enabled: false` on a function entry to stop installing it without removing the declaration.\n\n## Enterprise Scale\n\n- `nodePool.enabled` pins every function runtime to the dedicated `hops-crossplane` Karpenter NodePool (provisioned by `CrossplaneStack`); `scheduling.{nodeSelector,tolerations}` overrides the defaults.\n- Per-function `runtimeConfig` sets requests (defaulted to 15m / 100Mi) and optional limits so functions bin-pack predictably.\n\n## Relationship to other stacks\n\n- `CrossplaneStack` installs Crossplane core only (no functions, no providers).\n- `crossplane-\u003cx\u003e-provider` stacks install provider packages + ProviderConfigs.\n- `crossplane-functions-stack` installs Function packages + their DRCs.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhops-ops%2Fcrossplane-functions-stack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhops-ops%2Fcrossplane-functions-stack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhops-ops%2Fcrossplane-functions-stack/lists"}