Skip to main content
Version: Develop

Allow Automatic Updates

Allow to Block Automatic Updates

It is possible to show the Update tab, from where you can allow (or not) 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.

anynines_service_broker:
service_broker:
block_automatic_update_allowed: true
hint

By default, it is disabled.

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 his service instance.
textstringText of the modal displayed to the end-user when forbidding automatic update of his 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_textstringThe platform operator can set up a link to an external resource in the modal displayed to the end-user. This property configures a text that has the link specified in link_url.

If this property is not configured, the link_url will be displayed instead.
link_urlstringThe platform operator can set up a link 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>