open-vault/ui/app/templates/vault/cluster/unseal.hbs

27 lines
817 B
Handlebars
Raw Normal View History

<SplashPage as |Page|>
<Page.header>
<h1 class="title is-3">
2018-04-03 14:16:57 +00:00
Unseal Vault
</h1>
</Page.header>
<Page.content>
2018-10-31 22:08:25 +00:00
<AlertBanner
@type="warning"
@title="{{capitalize model.name}} is {{if model.unsealed 'unsealed' 'sealed'}}"
@message="You can unseal the vault by entering a portion of the master key. Once all portions are entered, the vault will be unsealed."
@class="unseal-warning"
data-test-cluster-status
/>
<ShamirFlow
@action="unseal"
2018-08-28 05:03:55 +00:00
@onUpdate={{action 'setUnsealState'}}
@onShamirSuccess={{action 'transitionToCluster'}}
@buttonText="Unseal"
@thresholdPath="t"
@isComplete={{action 'isUnsealed'}}
@threshold={{model.sealThreshold}}
@progress={{model.sealProgress}}
2018-10-31 22:08:25 +00:00
/>
</Page.content>
</SplashPage>