Skip to main content
Version: Develop

Allow Automatic Updates

Allow to Block Automatic Updates

It is possible to show the Update tab, from where a Platform Operator can allow/forbid the Application Developer to block automatic updates, by configuring the anynines_service_broker.service_broker.block_automatic_update_allowed property of the dashboard-api job, which is disabled by default.

anynines_service_broker:
service_broker:
block_automatic_update_allowed: true

Configure Disable Automatic Update Modal

When the Application Developer clicks on forbid automatic update, a warning modal pops up:

The Platform Operator can configure the content of the confirmation modal that is shown to the end-user. It is possible to override the default text via the dashboard-app.disable_automatic_update_modal property of the dashboard-api job.

The dashboard-app.disable_automatic_update_modal must be a hash with the following optional keys:

NameTypeDescription
titlestringTitle of the modal displayed to the end-user when forbidding automatic update of their Service Instance.
textstringText of the modal displayed to the end-user when forbidding automatic update of their Service Instance.
confirmation_buttonstringText displayed within the confirmation button of the modal that is shown to the end-user when forbidding the automatic update of a Service Instance.
cancel_buttonstringText displayed within the cancel button of the modal that is shown to the end-user when forbidding automatic update of a Service Instance.
link_textstringText displayed to the end-user for the link defined in link_url. If this property is not configured, the link_url will be displayed instead.
link_urlstringLink to an external resource in the modal.
caution

The URL specified via the link_url must start with http or https.

If a property is not specified, the default value is used:

Example Configuration

dashboard-app:
disable_automatic_update_modal:
title: <title>
text: <content of the confirmation panel>
confirmation_button: <content of the confirmation button>
cancel_button: <content of the cancelation button>
link_text: <optional-link-text>
link_url: <optional-url-starting-with-http-or-https>