@@ -13,32 +13,49 @@ source:
13
13
# Kind specify the chart repository kind. Valid values are HELM, CHARTMUSEUM, and HARBOR
14
14
kind : HELM
15
15
# url is the url of the chart repository
16
- url : https ://prometheus-community.github.io/helm-charts # local test source repo
16
+ url : http ://localhost:8080 # local test source repo
17
17
# auth is used if the source repository is protected with basic auth (Optional section)
18
- # auth:
19
- # # username is the username used to authenticate against the source chart repo
20
- # # `SOURCE_AUTH_USERNAME` env var can be used instead of this entry
21
- # username: "USERNAME"
22
- # # password is the password used to authenticate against the source chart repo
23
- # # `SOURCE_AUTH_PASSWORD` env var can be used instead of this entry
24
- # password: "PASSWORD"
18
+ auth :
19
+ # username is the username used to authenticate against the source chart repo
20
+ # `SOURCE_AUTH_USERNAME` env var can be used instead of this entry
21
+ username : " USERNAME"
22
+ # password is the password used to authenticate against the source chart repo
23
+ # `SOURCE_AUTH_PASSWORD` env var can be used instead of this entry
24
+ password : " PASSWORD"
25
25
# Options for repositories of kind=OCI
26
26
# disableChartsIndex: false
27
27
# chartsIndex: my-oci-registry.io/my-project/my-custom-index:prod
28
28
# target includes relevant information about the target chart repository
29
29
target :
30
30
# In case there is a need to mirror dependencies (from trustedSourceDeps list, see above) - this must be set to true
31
31
replaceDependencyRepo : true
32
+ # repoName is used to modify the README of the chart. Default value: `myrepo`
33
+ repoName : myrepo
34
+ # containerRegistry is used to update the image registry section of the values.yaml file
35
+ # NOTE: If containerRegistry is not set (or not present), the registry sections won't be updated
36
+ containerRegistry : demo.registry.io
37
+ # containerRepository is used to update the image repository section of the values.yaml file
38
+ # NOTE: If containerRepository is not set (or not present), the repository sections won't be updated
39
+ containerRepository : tpizarro/demo
32
40
repo :
33
41
# Kind specify the chart repository kind. Valid values are HELM, CHARTMUSEUM, and HARBOR
34
- kind : OCI
42
+ kind : CHARTMUSEUM
35
43
# url is the url of the chart repository
36
- url : https://europe-west1-docker.pkg.dev/mm-platform-sre-prod/chriss-charts-syncer-dev-and-testing
44
+ url : http://localhost:9090 # local test target repo
45
+ # auth is used if the target repository is protected with basic auth (Optional section)
46
+ auth :
47
+ # username is the username used to authenticate against the target chart repo
48
+ # `TARGET_AUTH_USERNAME` env var can be used instead of this entry
49
+ username : " USERNAME"
50
+ # password is the password used to authenticate against the target chart repo
51
+ # `TARGET_AUTH_PASSWORD` env var can be used instead of this entry
52
+ password : " PASSWORD"
37
53
# charts is an OPTIONAL list to specify a subset of charts to be synchronized
38
54
# It is mandatory if the source repo is OCI and not autodiscovery is supported in that repository
39
55
# More info here https://github.com/bitnami-labs/charts-syncer#charts-index-for-oci-based-repositories
40
56
charts :
41
- - kube-prometheus-stack
57
+ - redis
58
+ - etcd
42
59
# opt-out counterpart of "charts" property that explicit list the Helm charts to be skipped
43
60
# either "charts" or "skipCharts" can be used at once
44
61
# skipCharts:
0 commit comments