# The name of the Git remote to check against for changed charts
REMOTE=system-library

# The name of the Git target branch
TARGET_BRANCH=master

# Chart directories separated by a space
CHART_DIRS=(
    charts
)

# Charts that should be skipped
EXCLUDED_CHARTS=(
)

# Additional chart repos to add (<name>=<url>), separated by a space
CHART_REPOS=(
)

# Timeout for chart installation in seconds
TIMEOUT=600

# Maintainer names in Chart.yaml are validated to be existing Github accounts, default to true
VALIDATE_MAINTAINERS=true
