https://github.com/hops-ops/helm-jaeger
https://github.com/hops-ops/helm-jaeger
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hops-ops/helm-jaeger
- Owner: hops-ops
- Created: 2026-01-13T07:44:21.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-01-13T16:15:38.000Z (5 months ago)
- Last Synced: 2026-01-13T18:36:46.276Z (5 months ago)
- Language: Makefile
- Size: 14.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# helm-jaeger
A Crossplane Configuration package that installs the Jaeger Helm chart with a minimal, stable interface.
## Overview
`helm-jaeger` renders a single Helm release for Jaeger. 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 `-jaeger` in the `jaeger` 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-jaeger
spec:
package: ghcr.io/hops-ops/helm-jaeger:latest
```
```yaml
apiVersion: helm.hops.ops.com.ai/v1alpha1
kind: Jaeger
metadata:
name: jaeger
namespace: example-env
spec:
clusterName: example-cluster
values:
allInOne:
enabled: true
storage:
type: memory
```
## Development
```bash
make render
make validate
make test
```