From 1ba9efcfa214f86269fd3c2370a62d64cc68f690 Mon Sep 17 00:00:00 2001 From: Ryan Daily <rdaily@bridgephase.com> Date: Mon, 23 Dec 2024 12:25:55 -0500 Subject: [PATCH] Updated wrapper version to latest 0.4.11 --- chart/values.yaml | 4 ++-- docs/understanding-bigbang/configuration/base-config.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/chart/values.yaml b/chart/values.yaml index 5464744b48..73d0de01db 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -2123,14 +2123,14 @@ wrapper: # -- Name of the OCI chart in `repo` chartName: wrapper # -- Tag of the OCI chart in `repo` - tag: "0.4.10" + tag: "0.4.11" git: # -- Git repo holding the wrapper helm chart, example: https://repo1.dso.mil/big-bang/product/packages/wrapper repo: "https://repo1.dso.mil/big-bang/product/packages/wrapper.git" # -- Path inside of the git repo to find the helm chart, example: chart path: "chart" # -- Git tag to check out. Takes precedence over branch. [More info](https://fluxcd.io/flux/components/source/gitrepositories/#reference), example: 0.0.2 - tag: "0.4.10" + tag: "0.4.11" # -- Packages to deploy with Big Bang # @default - '{}' diff --git a/docs/understanding-bigbang/configuration/base-config.md b/docs/understanding-bigbang/configuration/base-config.md index e7a1a2117d..6dd14b0c53 100644 --- a/docs/understanding-bigbang/configuration/base-config.md +++ b/docs/understanding-bigbang/configuration/base-config.md @@ -719,14 +719,14 @@ Kubernetes: `>=1.29.0-0` | addons.alloy.values | object | `{}` | | | addons.alloy.postRenderers | list | `[]` | | | addons.alloy.flux | object | `{}` | Flux reconciliation overrides specifically for the alloy package | -| wrapper | object | `{"git":{"path":"chart","repo":"https://repo1.dso.mil/big-bang/product/packages/wrapper.git","tag":"0.4.10"},"helmRepo":{"chartName":"wrapper","repoName":"registry1","tag":"0.4.10"},"sourceType":"git"}` | Wrapper chart for integrating Big Bang components alongside a package | +| wrapper | object | `{"git":{"path":"chart","repo":"https://repo1.dso.mil/big-bang/product/packages/wrapper.git","tag":"0.4.11"},"helmRepo":{"chartName":"wrapper","repoName":"registry1","tag":"0.4.11"},"sourceType":"git"}` | Wrapper chart for integrating Big Bang components alongside a package | | wrapper.sourceType | string | `"git"` | Choose source type of "git" or "helmRepo" | | wrapper.helmRepo.repoName | string | `"registry1"` | Repository holding OCI chart, corresponding to `helmRepositories` name | | wrapper.helmRepo.chartName | string | `"wrapper"` | Name of the OCI chart in `repo` | -| wrapper.helmRepo.tag | string | `"0.4.10"` | Tag of the OCI chart in `repo` | +| wrapper.helmRepo.tag | string | `"0.4.11"` | Tag of the OCI chart in `repo` | | wrapper.git.repo | string | `"https://repo1.dso.mil/big-bang/product/packages/wrapper.git"` | Git repo holding the wrapper helm chart, example: https://repo1.dso.mil/big-bang/product/packages/wrapper | | wrapper.git.path | string | `"chart"` | Path inside of the git repo to find the helm chart, example: chart | -| wrapper.git.tag | string | `"0.4.10"` | Git tag to check out. Takes precedence over branch. [More info](https://fluxcd.io/flux/components/source/gitrepositories/#reference), example: 0.0.2 | +| wrapper.git.tag | string | `"0.4.11"` | Git tag to check out. Takes precedence over branch. [More info](https://fluxcd.io/flux/components/source/gitrepositories/#reference), example: 0.0.2 | | packages | object | `{"sample":{"configMaps":{},"dependsOn":[],"enabled":false,"flux":{},"git":{"branch":null,"commit":null,"credentials":{"caFile":"","knownHosts":"","password":"","privateKey":"","publicKey":"","username":""},"existingSecret":"","path":null,"repo":null,"semver":null,"tag":null},"helmRepo":{"chartName":null,"repoName":null,"tag":null},"istio":{},"kustomize":false,"monitor":{},"network":{},"postRenderers":[],"secrets":{},"sourceType":"git","values":{},"wrapper":{"enabled":false,"postRenderers":[]}}}` | Packages to deploy with Big Bang @default - '{}' | | packages.sample | object | Uses `defaults/<package name>.yaml` for defaults. See `package` Helm chart for additional values that can be set. | Package name. Each package will be independently wrapped for Big Bang integration. | | packages.sample.enabled | bool | true | Toggle deployment of this package | -- GitLab