mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 04:27:02 +02:00
* adds ember-flight-icons dependecy * adds inline-json-import babel plugin * adds flight icon styling * updates Icon component to support flight icons * updates Icon component usages to new api and updates name values to flight icon set when available * fixes tests * updates icon story with flight mappings and fixes issue with flight icons not rendering in storybook * adds changelog * fixes typo in sign action glyph name in transit-key model * adds comments to icon-map * updates Icon component to use only supported flight icon sizes * adds icon transform codemod * updates icon transform formatting to handle edge case * runs icon transform on templates * updates Icon usage in toolbar-filter md and story * updates tests
29 lines
1.2 KiB
Handlebars
29 lines
1.2 KiB
Handlebars
<WizardContent @headerText="Replication" @glyph="tour">
|
|
<WizardSection
|
|
@headerText="Setting up Replication"
|
|
@docText="Docs: Replication"
|
|
@docPath="/docs/internals/replication.html"
|
|
@instructions='Choose the one that is right for your needs and click "Enable Replication"'
|
|
>
|
|
<p>
|
|
Vault has two kinds of replication, each for a different purpose. Do you want to keep a backup of your data, or are you more interested in speed of access?
|
|
</p>
|
|
|
|
<LearnLink @path="/vault/operations/ops-replication">
|
|
<Icon @name="learn-link" />
|
|
Learn: Setting Up Performance Replication
|
|
</LearnLink>
|
|
|
|
<LearnLink @path="/vault/operations/ops-disaster-recovery">
|
|
<Icon @name="learn-link" />
|
|
Learn: Setting up Disaster Recovery
|
|
</LearnLink>
|
|
|
|
</WizardSection>
|
|
<WizardSection @headerText="Cluster mode" @class="wizard-details">
|
|
<p>
|
|
A cluster is set as either a primary or secondary. The primary cluster is authoritative, and is the only cluster allowed to perform actions that write to the underlying data storage, such as modifying policies or secrets. Secondary clusters can service all other operations and forward any writes to the primary cluster.
|
|
</p>
|
|
</WizardSection>
|
|
</WizardContent>
|