-
Notifications
You must be signed in to change notification settings - Fork 32
/
charts-syncer.yaml
47 lines (46 loc) · 2.11 KB
/
charts-syncer.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# Example config file
#
# source includes relevant information about the source chart repository
source:
repo:
# Kind specify the chart repository kind. Valid values are HELM, CHARTMUSEUM, and HARBOR
kind: HELM
# url is the url of the chart repository
url: http://localhost:8080 # local test source repo
# auth is used if the source repository is protected with basic auth (Optional section)
auth:
# username is the username used to authenticate against the source chart repo
# `SOURCE_AUTH_USERNAME` env var can be used instead of this entry
username: "USERNAME"
# password is the password used to authenticate against the source chart repo
# `SOURCE_AUTH_PASSWORD` env var can be used instead of this entry
password: "PASSWORD"
# Options for repositories of kind=OCI
# disableChartsIndex: false
# chartsIndex: my-oci-registry.io/my-project/my-custom-index:prod
# target includes relevant information about the target chart repository
target:
repo:
# Kind specify the chart repository kind. Valid values are LOCAL and OCI
kind: OCI
# url is the url of the chart repository
url: http://localhost:9090 # local test target repo
# auth is used if the target repository is protected with basic auth (Optional section)
auth:
# username is the username used to authenticate against the target chart repo
# `TARGET_AUTH_USERNAME` env var can be used instead of this entry
username: "USERNAME"
# password is the password used to authenticate against the target chart repo
# `TARGET_AUTH_PASSWORD` env var can be used instead of this entry
password: "PASSWORD"
# charts is an OPTIONAL list to specify a subset of charts to be synchronized
# It is mandatory if the source repo is OCI and not autodiscovery is supported in that repository
# More info here https://github.com/bitnami/charts-syncer#charts-index-for-oci-based-repositories
charts:
- redis
- etcd
# opt-out counterpart of "charts" property that explicit list the Helm charts to be skipped
# either "charts" or "skipCharts" can be used at once
# skipCharts:
# - mariadb