Hiding Stages
Stages can be hidden from end users using a property called
hiddenStages
in a custom profile for Deck.If you’re using Spinnaker 1.20 or later, stages that are not
provider-specific will be available by default. To hide specific stages
from end-users, set the hiddenStages
property in Deck’s
custom
profile
to a list of the
keys of stages you wish to hide. For example, to hide the Gremlin and Travis
stages, include the following in settings-local.js
:
window.spinnakerSettings.hiddenStages = ['gremlin', 'travis'];
Last modified May 4, 2021: rest of migration (700781a)