diff --git a/CHANGELOG.md b/CHANGELOG.md index e718808df6d9bb3ca9e00676ad7e04a5523e02a8..932c5f724ff61c172d51171e10b77169de96f645 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). --- +## [4.4.16-bb.3] - 2022-06-28 +### Updated +- Updated bb base image to 2.0.0 +- Disabled tenant job by default (no longer needed) + ## [4.4.16-bb.2] - 2022-06-17 ### Updated - Updated tests/images.txt to have the correct console image version diff --git a/README.md b/README.md index d0df2fb4bc78a0e50d62c448a23b96f72a3b35ed..bbb1bfbb2334c7eac097301a99d982394eefcf04 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # minio-operator -   +   A Helm chart for MinIO Operator @@ -97,9 +97,9 @@ helm install minio-operator chart/ | serviceAccount.name | string | `""` | | | imagePullSecrets | list | `[]` | | | annotations | object | `{}` | | -| tenantPatchJob.enabled | bool | `true` | | +| tenantPatchJob.enabled | bool | `false` | | | tenantPatchJob.image.repository | string | `"registry1.dso.mil/ironbank/big-bang/base"` | | -| tenantPatchJob.image.tag | string | `"1.17.0"` | | +| tenantPatchJob.image.tag | string | `"2.0.0"` | | | tenantPatchJob.image.pullSecrets[0] | string | `"private-registry"` | | | installCRDs | bool | `true` | | diff --git a/chart/Chart.yaml b/chart/Chart.yaml index aa53863916bd30653db00e0d02fa0a2302908dc8..c527636ba2c90f4c2f8356a055d8379f1d5b812f 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 description: A Helm chart for MinIO Operator name: minio-operator -version: 4.4.16-bb.2 +version: 4.4.16-bb.3 appVersion: v4.4.16 keywords: - storage diff --git a/chart/values.yaml b/chart/values.yaml index 282c3ff6437d1722f648004309c15c1e404b01c0..1250e259fe3b3995306b5b41d918014233216630 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -102,10 +102,10 @@ annotations: {} # Used in templates/bigbang/tenant-patch-job.yaml # Needed for operator upgrade.go logic to cleanly upgrade from bb v4.2.3 to v4.4.3 tenantPatchJob: - enabled: true + enabled: false image: repository: registry1.dso.mil/ironbank/big-bang/base - tag: 1.17.0 + tag: 2.0.0 pullSecrets: - private-registry installCRDs: true