https://github.com/performancecopilot/helm-charts
Helm charts for Performance Co-Pilot
https://github.com/performancecopilot/helm-charts
helm helm-charts kubernetes openshift
Last synced: 5 months ago
JSON representation
Helm charts for Performance Co-Pilot
- Host: GitHub
- URL: https://github.com/performancecopilot/helm-charts
- Owner: performancecopilot
- License: other
- Created: 2025-09-11T06:59:45.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-10-02T06:23:33.000Z (5 months ago)
- Last Synced: 2025-10-02T07:19:50.194Z (5 months ago)
- Topics: helm, helm-charts, kubernetes, openshift
- Language: Smarty
- Homepage: https://pcp.io
- Size: 45.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Performance Co-Pilot Helm Charts
Official Helm charts for deploying [Performance Co-Pilot (PCP)](https://pcp.io) on Kubernetes.
## Available Charts
| Chart | Description | Version |
|-------|-------------|---------|
| [pcp](./pcp/) | Performance Co-Pilot system monitoring |  |
| [archive-analysis](./archive-analysis/) | PCP Archive Analysis with Grafana |  |
## Installation Methods
### 1. From OCI Registry (Recommended)
#### GitHub Container Registry
```bash
helm install pcp oci://ghcr.io/performancecopilot/helm-charts/pcp
helm install archive-analysis oci://ghcr.io/performancecopilot/helm-charts/archive-analysis
```
#### Quay.io
```bash
helm install pcp oci://quay.io/performancecopilot-helm-charts/pcp
helm install archive-analysis oci://quay.io/performancecopilot-helm-charts/archive-analysis
```
### 2. From Source
```bash
git clone https://github.com/performancecopilot/helm-charts.git
cd helm-charts
helm install pcp ./pcp
helm install archive-analysis ./archive-analysis
```
## Chart Documentation
- **[PCP Chart](./pcp/README.md)** - System performance monitoring with metrics collection, logging, and optional host monitoring
- **[Archive Analysis Chart](./archive-analysis/README.md)** - Grafana-based analysis of historical PCP data with pre-configured dashboards
## Requirements
- Kubernetes 1.19+
- Helm 3.0+
## Development
### Testing Charts Locally
```bash
# Lint charts
helm lint ./pcp
helm lint ./archive-analysis
# Test template generation
helm template pcp ./pcp
helm template archive-analysis ./archive-analysis
# Install in development
helm install --dry-run --debug pcp ./pcp
```