-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Description
Is your feature request related to a problem? Please describe.
There are some features that have been documented as being deprecated.
However, there are no warnings issued after a Helm chart has been installed/upgraded
(as part of the conjur-oss/templates/NOTES.txt).
The conjur-oss/templates/NOTES.txt should be updated to provide deprecation
warnings for the following:
- Automatic Conjur account creation will become the default in next major release.
- A ClusterRoleBinding will not be created by default in next major release.
It may be possible to emit deprecation warnings ONLY when the deprecated
feature is actually in use, e.g.:
- When
account.createis set to false (either explicitly or by default) - When
rbac.createis set to false
Describe the solution you would like
- Deprecation warnings (see above) should appear after a chart has been installed/upgraded.
- Ideally, the deprecation warnings should show up conditionally based on whether the
deprecated feature is being used.
Describe alternatives you have considered
N/A