https://github.com/hops-ops/helm-kube-prometheus-stack
https://github.com/hops-ops/helm-kube-prometheus-stack
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hops-ops/helm-kube-prometheus-stack
- Owner: hops-ops
- Created: 2026-01-13T07:44:34.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-01-13T16:49:03.000Z (5 months ago)
- Last Synced: 2026-01-13T18:35:15.649Z (5 months ago)
- Language: Makefile
- Size: 18.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# helm-kube-prometheus-stack
A Crossplane Configuration package that installs the kube-prometheus-stack Helm chart with a minimal, stable interface.
## Overview
`helm-kube-prometheus-stack` renders a single Helm release for kube-prometheus-stack. 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 passed directly to Helm
- **Predictable naming**: defaults to `-kube-prometheus-stack` in the `monitoring` 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-kube-prometheus-stack
spec:
package: ghcr.io/hops-ops/helm-kube-prometheus-stack:latest
```
```yaml
apiVersion: helm.hops.ops.com.ai/v1alpha1
kind: KubePrometheusStack
metadata:
name: kube-prometheus-stack
namespace: example-env
spec:
clusterName: example-cluster
values:
grafana:
adminPassword: admin
prometheus:
prometheusSpec:
retention: 7d
```
## Development
```bash
make render
make validate
make test
```