ibm-content-cortex-containers

Helm Charts Repository

This directory contains the Helm chart packages and repository index for IBM Content Cortex.

Repository Structure

docs/
├── charts/                    # Helm chart repository
│   ├── index.yaml            # Helm repository index
│   ├── *.tgz                 # Helm chart packages
│   └── README.md             # This file
├── assets/                    # Website assets (CSS, JS, images)
├── index.html                # Main documentation page
├── helm-charts.html          # Helm charts catalog page
└── releases.html             # Releases and patches page

Adding the Repository

helm repo add ibm-content-cortex https://ibm-ecm.github.io/ibm-content-cortex-containers/charts
helm repo update

Available Charts

Updating the Repository

When adding new chart versions:

  1. Place the .tgz file in this directory
  2. Update index.yaml using helm repo index
  3. Commit and push changes to GitHub
# Generate/update index.yaml
helm repo index docs/charts --url https://ibm-ecm.github.io/ibm-content-cortex-containers/charts

# Commit changes
git add docs/charts/
git commit -m "Add new chart version"
git push

GitHub Pages Configuration