Skip to content

DAAily/helm-charts

Repository files navigation

helm-charts

The DAAily and AD's Helm Charts repository.

Directory Structure:

  • archdaily: contains Ruby on Rails current apps. From ArchDaily.

  • daaily: contains FastAPI current apps. From Daaily.

To use them using Helm:

For Daaily/Archdaily:

helm repo add your_repository_name https://daaily.github.io/helm-charts/

Usage (Quick Helm Commands):

To update Chart Repo:

This command needs to be executed after you add a Helm Repo.

helm repo update

List Installed Repos:

helm repo list

To List the apps hosted on the Chart:

helm search repo your_repository_name

To Install a release from the Chart (with custom values):

helm upgrade release_name ad-stable/chart-ad \
    --install \
    --wait \
    --timeout=300s \
    -f path/to/default_values.yaml \
    -f path/to/overrides_values.yaml \
    --set foo.bar=value

Custom Values

You can use custom values files as you want using --values or -f flag as you already see in the previous example.

Made with ❤️ by OPS Team at Archdaily.