mirror of https://github.com/renovatebot/renovate
39 lines
920 B
YAML
39 lines
920 B
YAML
apiVersion: vendir.k14s.io/v1alpha1
|
|
kind: Config
|
|
directories:
|
|
- path: vendor
|
|
contents:
|
|
# Normal Helm Chart
|
|
- path: custom-repo-custom-version
|
|
helmChart:
|
|
name: contour
|
|
version: "7.10.1"
|
|
repository:
|
|
url: https://charts.bitnami.com/bitnami
|
|
# Normal Helm Chart 2 for handling lists
|
|
- path: thing
|
|
helmChart:
|
|
name: test
|
|
version: "7.10.1"
|
|
repository:
|
|
url: https://charts.bitnami.com/bitnami
|
|
# Normal Git Repo
|
|
- path: custom-repo-custom-version
|
|
git:
|
|
url: https://github.com/test/test
|
|
ref: "7.10.1"
|
|
# OCI Helm Chart
|
|
- path: custom-repo-custom-version
|
|
helmChart:
|
|
name: contour
|
|
version: "7.10.1"
|
|
repository:
|
|
url: oci://charts.bitnami.com/bitnami
|
|
# Aliased OCI Helm Chart
|
|
- path: custom-repo-custom-version
|
|
helmChart:
|
|
name: oci
|
|
version: "7.10.1"
|
|
repository:
|
|
url: oci://test
|