From 5cc70718f10a0caa207619ac1228d0b87d2909a1 Mon Sep 17 00:00:00 2001 From: Micah Nagel <micah.nagel@parsons.com> Date: Tue, 28 Jun 2022 12:27:38 -0600 Subject: [PATCH] Update BB Base to 2.0.0 --- CHANGELOG.md | 5 +++++ README.md | 6 +++--- chart/Chart.yaml | 2 +- chart/values.yaml | 4 ++-- 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e718808..932c5f7 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 d0df2fb..bbb1bfb 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 aa53863..c527636 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 282c3ff..1250e25 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 -- GitLab