https://github.com/hops-ops/helm-knative-operator
Crossplane configuration for knative operator Helm chart
https://github.com/hops-ops/helm-knative-operator
crossplane crossplane-configuration crossplane-configurations crossplane-xrd helm knative-operator kubernetes xrd
Last synced: 4 months ago
JSON representation
Crossplane configuration for knative operator Helm chart
- Host: GitHub
- URL: https://github.com/hops-ops/helm-knative-operator
- Owner: hops-ops
- Created: 2026-01-13T07:44:28.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-01-20T21:14:09.000Z (5 months ago)
- Last Synced: 2026-01-21T05:34:25.151Z (5 months ago)
- Topics: crossplane, crossplane-configuration, crossplane-configurations, crossplane-xrd, helm, knative-operator, kubernetes, xrd
- Language: KCL
- Size: 23.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# helm-knative-operator
A Crossplane Configuration package that installs the Knative Operator Helm chart with a minimal, stable interface.
## Overview
`helm-knative-operator` renders a single Helm release for Knative Operator. It exposes only the inputs needed
for chart values, namespace, and release name, keeping the interface stable while allowing full Helm overrides.
## Features
- **Minimal Helm interface**: values and overrideAllValues with stable defaults
- **Predictable naming**: defaults to `-knative-operator` in the `knative-operator` namespace
- **GitOps friendly**: ships a `.gitops/` deploy chart
## Prerequisites
- Crossplane installed in the cluster
- Crossplane providers:
- `provider-helm` (>=v1.0.2)
- Crossplane function:
- `function-auto-ready` (>=v0.6.0)
## Quick Start
```yaml
apiVersion: pkg.crossplane.io/v1
kind: Configuration
metadata:
name: helm-knative-operator
spec:
package: ghcr.io/hops-ops/helm-knative-operator:latest
```
```yaml
apiVersion: helm.hops.ops.com.ai/v1alpha1
kind: KnativeOperator
metadata:
name: knative-operator
namespace: example-env
spec:
clusterName: example-cluster
values:
operator:
replicas: 1
```
## Development
```bash
make render
make validate
make test
```