Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,6 @@ opensearch_collection:
install-and-configure:
name: Install and upgrade
nav_fold: true
upgrade-to:
name: Migrate to OpenSearch
# nav_exclude: true
nav_fold: true
# search_exclude: true
im-plugin:
name: Managing Indexes
nav_fold: true
Expand Down Expand Up @@ -222,6 +217,12 @@ data_prepper_collection:
name: Data Prepper
nav_fold: true

migrations_collection:
collections:
upgrade-to:
name: Migrate to OpenSearch
nav_fold: true

# Defaults

defaults:
Expand Down Expand Up @@ -249,6 +250,12 @@ defaults:
values:
section: "benchmark"
section-name: "Benchmark"
-
scope:
path: "_upgrade-to"
values:
section: "migrations"
section-name: "Migrate to OpenSearch"

# Enable or disable the site search
# By default, just-the-docs enables its JSON file-based search. We also have an OpenSearch-driven search functionality.
Expand Down
2 changes: 2 additions & 0 deletions _data/top_nav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ items:
url: /docs/latest/clients/
- label: Benchmark
url: /docs/latest/benchmark/
- label: Migrations
url: /docs/latest/upgrade-to/
- label: Platform
url: /platform/index.html
children:
Expand Down
7 changes: 7 additions & 0 deletions _includes/cards.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@
<p class="description">Measure performance metrics for your OpenSearch cluster</p>
<p class="last-link">Documentation &#x2192;</p>
</div>

<div class="card">
<a href="{{site.url}}/docs/latest/upgrade-to/" class='card-link'></a>
<p class="heading">Migrations</p>
<p class="description">Migrate to OpenSearch from other platforms</p>
<p class="last-link">Documentation &#x2192;</p>
</div>
</div>

</div>
Expand Down
2 changes: 2 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@
{% assign section = site.clients_collection.collections %}
{% elsif page.section == "benchmark" %}
{% assign section = site.benchmark_collection.collections %}
{% elsif page.section == "migrations" %}
{% assign section = site.migrations_collection.collections %}
{% endif %}

{% if section %}
Expand Down
4 changes: 3 additions & 1 deletion _upgrade-to/index.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
---
layout: default
title: About the migration process
title: Migrate to OpenSearch
nav_order: 1
has_children: false
nav_exclude: true
has_toc: false
permalink: /upgrade-to/
redirect_from:
- /upgrade-to/index/
Expand Down
Loading