Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Individual Instance Inspection #693

Closed
wants to merge 2 commits into from
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
2 changes: 2 additions & 0 deletions detail_pages_rds.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
"230": "SQL Server Enterprise (Outpost On-Prem)",
"231": "SQL Server (Outpost On-Prem)",
"232": "SQL Server Web (Outpost On-Prem)",
"405": "SQL Server Standard BYOM",
"406": "SQL Server Enterprise BYOM",
}


Expand Down
2 changes: 2 additions & 0 deletions in/instance-type-rds.html.mako
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@
<option value="SQL Server Enterprise (Outpost On-Prem)">SQL Server Enterprise (Outpost On-Prem)</option>
<option value="SQL Server (Outpost On-Prem)">SQL Server (Outpost On-Prem)</option>
<option value="SQL Server Web (Outpost On-Prem)">SQL Server Web (Outpost On-Prem)</option>
<option value="SQL Server Standard BYOM">SQL Server Standard BYOM</option>
<option value="SQL Server Enterprise BYOM">SQL Server Enterprise BYOM</option>
</select>
</div>
<div class="col-6 pe-2">
Expand Down
16 changes: 8 additions & 8 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def build(c):
scrape_rds(c)
scrape_cache(c)
scrape_redshift(c)
# scrape_opensearch(c)
scrape_opensearch(c)
render_html(c)


Expand Down Expand Up @@ -147,13 +147,13 @@ def render_html(c):
"www/redshift/index.html",
)
)
# sitemap.extend(
# render(
# "www/opensearch/instances.json",
# "in/opensearch.html.mako",
# "www/opensearch/index.html",
# )
# )
sitemap.extend(
render(
"www/opensearch/instances.json",
"in/opensearch.html.mako",
"www/opensearch/index.html",
)
)
sitemap.append(about_page())
build_sitemap(sitemap)

Expand Down