mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-20 22:21:09 +02:00
* delete learn link, update links * update documentation * update test * Update ui/app/templates/components/wizard/replication-setup.hbs
32 lines
1.3 KiB
Handlebars
32 lines
1.3 KiB
Handlebars
{{! template-lint-disable quotes }}
|
|
<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>
|
|
|
|
<DocLink @path="/vault/tutorials/enterprise/performance-replication">
|
|
<Icon @name="learn-link" />
|
|
Learn: Setting Up Performance Replication
|
|
</DocLink>
|
|
|
|
<DocLink @path="/vault/tutorials/enterprise/disaster-recovery">
|
|
<Icon @name="learn-link" />
|
|
Learn: Setting up Disaster Recovery
|
|
</DocLink>
|
|
|
|
</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> |