https://github.com/hops-ops/helm-harbor
https://github.com/hops-ops/helm-harbor
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hops-ops/helm-harbor
- Owner: hops-ops
- Created: 2026-01-13T07:44:15.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-01-14T01:15:55.000Z (5 months ago)
- Last Synced: 2026-01-14T05:03:13.801Z (5 months ago)
- Language: Makefile
- Size: 18.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# helm-harbor
A Crossplane Configuration package that installs the Harbor Helm chart with a minimal, stable interface.
## Overview
`helm-harbor` renders a single Helm release for Harbor. 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 `-harbor` in the `harbor` 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-harbor
spec:
package: ghcr.io/hops-ops/helm-harbor:latest
```
```yaml
apiVersion: helm.hops.ops.com.ai/v1alpha1
kind: Harbor
metadata:
name: harbor
namespace: example-env
spec:
clusterName: example-cluster
values:
expose:
type: ingress
ingress:
hosts:
core: harbor.example.com
externalURL: https://harbor.example.com
```
## Development
```bash
make render
make validate
make test
```