From 282593afb4fe6efaf386a9ae767fb235f79d3cf0 Mon Sep 17 00:00:00 2001 From: Tim Hardeck Date: Wed, 24 Aug 2022 10:55:20 +0200 Subject: [PATCH] Add OCI registry based Helm example the `version` part is used to determine which chart release should be downloaded from the OCI based registry. --- single-cluster/helm-oci/fleet.yaml | 32 ++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 single-cluster/helm-oci/fleet.yaml diff --git a/single-cluster/helm-oci/fleet.yaml b/single-cluster/helm-oci/fleet.yaml new file mode 100644 index 0000000..b558c0a --- /dev/null +++ b/single-cluster/helm-oci/fleet.yaml @@ -0,0 +1,32 @@ +# This file and all contents in it are OPTIONAL. + +# The namespace this chart will be installed and restricted to, +# if not specified the chart will be installed to "default" +namespace: fleet-helm-oci-example + +# Custom helm options +helm: + # The release name to use. If empty a generated release name will be used + releaseName: guestbook + + # The directory of the chart in the repo. Also any valid go-getter supported + # URL can be used there is specify where to download the chart from. + # If repo below is set this value if the chart name in the repo + chart: "oci://ghcr.io/fleetrepoci/guestbook" + + # An https to a valid Helm repository to download the chart from + repo: "" + + # Used if repo is set to look up the version of the chart + version: "0.0.0" + + # Force recreate resource that can not be updated + force: false + + # How long for helm to wait for the release to be active. If the value + # is less that or equal to zero, we will not wait in Helm + timeoutSeconds: 0 + + # Custom values that will be passed as values.yaml to the installation + values: + replicas: 2