From 98dccd356dd1bbaf9ecd4288d2443aaa599ef57c Mon Sep 17 00:00:00 2001 From: bhearn7 Date: Mon, 23 Aug 2021 14:11:13 -0400 Subject: [PATCH] undo values modification --- CHANGELOG.md | 2 -- chart/values.yaml | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b64575..bbbc8f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [1.13.0-bb.7] ### Fixed - to resolve an issue where Anchore would redeploy after every update, `./chart/templates/engine_secret.yaml` and `./chart/templates/enterprise_feeds_secret.yaml` were modified to set `ANCHORE_SAML_SECRET` to a randomly generated value if not set and the previous secret does not exist -### Changed -- set `.Values.anchoreGlobal.saml.secret` to an empty string rather than `Null` (the default) so it would evaluate to **false** when not configured ## [1.13.0-bb.6] ### Changed diff --git a/chart/values.yaml b/chart/values.yaml index e3fb639..215dcb5 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -296,7 +296,7 @@ anchoreGlobal: saml: # Locations for keys used for signing and encryption. Only one of 'secret' or 'privateKeyName'/'publicKeyName' needs to be set. If all are set then the keys take precedence over the secret value # Secret is for a shared secret and if set, all components in anchore should have the exact same value in their configs. - secret: "" + secret: Null # If set to true, use the secret specified in anchoreGlobal.existingSecret to set the ANCHORE_SAML_SECRET env variable useExistingSecret: false privateKeyName: Null -- GitLab