diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b64575c6cfc5886dca7af3773447982401ec5ef..bbbc8f30cdba6133d66006aa046ec24126f64669 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 e3fb639c6a0cab8c30710f38225505849a9d35af..215dcb5902fa9334c6722c783489e3253802d886 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