Incompatible types for comparison error when doing Helm Upgrade with Lenses 5.3

Doing upgrade from 5.2 to 5.3:

Error: UPGRADE FAILED: template: lenses/templates/provision-secrets.yaml:1:45 executing "lenses/templates/provision-secrets.yaml" at <eq .Values.lenses.provision.version "1">: error calling eq: incompatible types for comparison

When you upgrade to the new version of Lenses using the Helm chart, you need to provide the version of the provision as a string, not as an integer value.

Change from 'version: 1'
to 'version: "1"'