v1.6.2

Add the manager config patch to config/default/kustomization.yaml

The scaffolded --config flag was not added to either ansible-/helm-operator binary when config file support was originally added, so it does not currently work. The --config flag supports configuration of both binaries by file, this method of configuration only applies to the underlying controller manager, not the operator as a whole. To optionally configure the operator’s Deployment with a config file, make the following update to config/default/kustomization.yaml:

  1. # If you want your controller-manager to expose the /metrics
  2. # endpoint w/o any authn/z, please comment the following line.
  3. \- manager_auth_proxy_patch.yaml
  4. +
  5. +# Mount the controller config file for loading manager configurations
  6. +# through a ComponentConfig type
  7. +- manager_config_patch.yaml

This feature is opt-in: flags can be used as-is or to override config file values.

See #4780 for more details.

Last modified April 22, 2021: Release v1.6.2 (#4822) (9bd44db4)