v0.5.30 Armory Agent Service (2021-10-13)

Feature

Sending operation results back to Clouddriver is now more resilient. A retry mechanism (enabled by default) can be configured in case errors occur:

clouddriver:
  responseRetries:
    enabled: true     # (Optional, boolean, default: true). Enables or disable retries.
    maxRetries: 1200  # (Optional, integer, default: 1200): How many times to retry sending the response to Clouddriver.
    backOffMs: 3000   # (Optional, integer, default: 3000): How much time to wait between retries in milliseconds.

Note that the kubesvc.cache.operationWaitMs config for the Armory Agent Plugin should be set so that it does not time out before the retries are complete.

Known Issues

Kubernetes account permissions format

kubernetes:
  accounts:
    - name: my-k8s-account
      permissions:
        - READ: ['role1', 'role2']
        - WRITE: ['role3', 'role4']

Make sure that there are no whitespaces in the role configurations under the READ and WRITE tags. The permissions are not applied if there are whitespaces in the configuration. This means that all users will have access to the defined account.

Affected versions: all versions


Last modified March 3, 2023: (2d069084)