Skip to main content
Version: 1.0.x

Hauler Content - Charts

Hauler Command Line for Charts​

hauler store add chart <chart name> --repo <chart repository> --version <chart version>

Example Commands for Charts​

# fetch helm chart
hauler store add chart rancher --repo https://releases.rancher.com/server-charts/stable

# fetch helm chart with specific version
hauler store add chart rancher --repo https://releases.rancher.com/server-charts/stable --version 2.8.2

Hauler Manifest for Charts​

hauler-chart-manifest.yaml
apiVersion: content.hauler.cattle.io/v1alpha1
kind: Charts
metadata:
name: hauler-content-charts-example
spec:
charts:
# fetch helm chart
- name: <chart name>
repoURL: <chart repository>
version: <chart version>

Example Manifest for Charts​

hauler-chart-manifest.yaml
apiVersion: content.hauler.cattle.io/v1alpha1
kind: Charts
metadata:
name: hauler-content-charts-example
spec:
charts:
# fetch helm chart
- name: rancher
repoURL: https://releases.rancher.com/server-charts/stable
# fetch helm chart with specific version
- name: rancher
repoURL: https://releases.rancher.com/server-charts/stable
version: 2.8.2