Skip to main content
Version: 13.x (Current)

Marketplace

Mia-Platform Console is shipped with a Marketplace full of useful services that can be used by Developers within their Projects.

The Marketplace receives updates with every Mia-Platform Console upgrade but can be disabled or filtered with the following options (set inside the configurations object):

NameTypeDescriptionDefaultOptional
enableMarketplaceSyncbooleanEnable Marketplace Sync hook. If false, any other marketplace related value is ignored.true
marketplaceSyncFiltersstringA comma separated list of services types that needs to be updated (possible values are plugin,template,example,application).plugin
enableProvidersSyncbooleanEnable Providers Sync hook for runtime service providers updates.true
registrystringAllows for the definition of a custom registry host to be used for all marketplace-managed plugins
caution

If marketplaceSyncFilters is set to emtpy string ("") the script will be deployed but it will immediately exit; if you plan to avoid marketplace synchronization please consider using the enableMarketplaceSync set to false.

Examples

Disable the whole sync process

mia-console:
configurations:
...
enableMarketplaceSync: false

Only sync plugins

mia-console:
configurations:
...
marketplaceSyncFilters: "plugin"