Skip to content

Commit db765c7

Browse files
authored
Merge pull request #1775 from EnterpriseDB/release/2021-08-19
2 parents 897b1dc + 4c92ce1 commit db765c7

File tree

12 files changed

+23
-71
lines changed

12 files changed

+23
-71
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<img src="static/images/edb-docs-logo-disk-dark.svg" alt='EDB Docs' width="200">
1+
<img src="static/icons/edb-docs-logo-disc-dark.svg" alt='EDB Docs' width="200">
22

33
![Deploy Main to Netlify](https://github.com/EnterpriseDB/docs/workflows/Deploy%20Main%20to%20Netlify/badge.svg)
44
![Deploy Develop to Netlify](https://github.com/EnterpriseDB/docs/workflows/Deploy%20Develop%20to%20Netlify/badge.svg)

gatsby-node.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -426,6 +426,8 @@ exports.createSchemaCustomization = ({ actions }) => {
426426
legacyRedirects: [String]
427427
legacyRedirectsGenerated: [String]
428428
showInteractiveBadge: Boolean
429+
hideVersion: Boolean
430+
displayBanner: String
429431
}
430432
431433
enum TileModes {

product_docs/docs/edbcloud/beta/getting_started/01_check_resource_limits.mdx

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,24 @@
22
title: Raising Azure Resource Limits
33
---
44

5-
By default, Azure sets a very low limit on the number of Virtual Machines and Cores per region and on the number of Public IP Addresses per region that are available in a given subscription.
5+
By default, Azure sets a very low limit on the number of virtual machines and cores per region and on the number of Public IP Addresses per region that are available in a given subscription.
66

7-
The default number of total cores per subscription per region is 20. See [Virtual Machines limits - Azure Resource Manager](https://docs.microsoft.com/en-us/azure/azure-resource-manager/management/azure-subscription-service-limits#virtual-machines-limits---azure-resource-manager) for more information. You need to increase the total cores to account for the total number of cores you expect to use in each region and reserve these cores to be used by EDB. As an example, if you provision the largest virtual machine with high availability this would be 192 cores per region. EDB uses eight DSv2 virtual machine cores for managing your environment.
7+
The default number of total cores per subscription per region is 20. See [Virtual Machines limits - Azure Resource Manager](https://docs.microsoft.com/en-us/azure/azure-resource-manager/management/azure-subscription-service-limits#virtual-machines-limits---azure-resource-manager) for more information. You need to increase the total cores to account for the total number of cores you expect to use in each region and reserve these cores to be used by EDB. See the next section [Virtual Machine Quota Requirements](#virtual-machine-quota-requirements)for more information.
88

99
The default Public IP address limits for Public IP Addresses Basic and Public IP Addresses Standards is set to 10. See [Public IP address limits](https://docs.microsoft.com/en-us/azure/azure-resource-manager/management/azure-subscription-service-limits#publicip-address) for more information. You need to increase the limit of `Public IP Addresses - Basic` and `Public IP Addresses - Standard` for the regions where you plan to deploy your EDB clusters with the total number of EDB clusters you plan to use.
1010

11+
## Virtual Machine Quota Requirements
12+
In each region, EDB Cloud uses six ESv3 and six DSv2 virtual machine cores to manage your EDB Cloud infrastructure.
13+
Your Postgres clusters deployed in the region use separate ESv3 virtual machine cores.
14+
The number of cores depends on the Instance Type and High Availability options of the clusters you provision. You can calculate the number of ESv3 cores required for your cluster based on the following:
1115

12-
# Checking Current Utilization
16+
* Virtual machine instance of type E{N}Sv3 uses {N} cores. For example, an instance of type E64Sv3 uses 64 ESv3 cores.
17+
* Cluster running on an E{N}Sv3 instance with high availability not enabled uses exactly {N} ESv3 cores.
18+
* Cluster running on an E{N}Sv3 instance with high availability enabled uses 3 * {N} ESv3 cores.
19+
20+
As an example, if you provision the largest virtual machine E64Sv3 with high availability enabled, it requires (3 * 64)=192 ESv3 cores per region. EDB Cloud infrastructure requires an additional six ESv3 and six DSv2 virtual machine cores per region.
21+
22+
## Checking Current Utilization
1323

1424
To check if you have adequate Azure resources to provision new clusters:
1525

@@ -21,16 +31,16 @@ To check if you have adequate Azure resources to provision new clusters:
2131
6. Search for Public IP to view networks limits.
2232

2333

24-
# Increasing Network Quota
34+
## Increasing Network Quota
2535

26-
You can increase the number of public IP addresses for your account either by using Azure's portal if you have appropriate privileges or by submitting a support request. See:
36+
You can increase the number of public IP addresses for your account either by using Azure's portal if you have appropriate privileges or by submitting a support request. See:
2737

2838
- [Request Networking quota increase at subscription level using Help + support](https://docs.microsoft.com/en-us/azure/azure-portal/supportability/networking-quota-requests#request-networking-quota-increase-at-subscription-level-using-help--support)
2939

3040
- [Request networking quota increase at subscription level using Usages + quotas](https://docs.microsoft.com/en-us/azure/azure-portal/supportability/networking-quota-requests#request-networking-quota-increase-at-subscription-level-using-usages--quotas)
3141

3242

33-
# Increasing Virtual Machine Quota
43+
## Increasing Virtual Machine Quota
3444

3545
You can increase the number of ESv3 Series virtual machines per region for your account either by using Azure's portal if you have appropriate privileges or by submitting a support request. See:
3646

src/components/logo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from "react";
2-
import LogoSvg from "../../static/images/edb-docs-logo-disc-dark-beta.svg";
2+
import LogoSvg from "../../static/icons/edb-docs-logo-disc-dark.svg";
33

44
function Logo({ className, width, height }) {
55
return <LogoSvg className={className} height={height} width={width} />;

src/pages/404.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
connectSearchBox,
99
connectStateResults,
1010
} from "react-instantsearch-dom";
11-
import { Footer, Layout, Link, MainContent, TopBar } from "../components";
11+
import { Footer, Layout, Link, MainContent } from "../components";
1212
import Icon, { iconNames } from "../components/icon";
1313
import useSiteMetadata from "../hooks/use-sitemetadata";
1414
import usePathPrefix from "../hooks/use-path-prefix";
@@ -120,7 +120,6 @@ const NotFound = (data) => {
120120

121121
return (
122122
<Layout pageMeta={{ title: "Page Not Found" }}>
123-
<TopBar />
124123
<Container fluid className="p-0 d-flex bg-white">
125124
<MainContent searchNavLogo={true}>
126125
<div className="d-flex align-items-center flex-column">

src/pages/index.js

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,7 @@ import React from "react";
22
import { Container } from "react-bootstrap";
33
import Icon, { iconNames } from "../components/icon/";
44
import cliImg from "../images/screen-demo.gif";
5-
import {
6-
Footer,
7-
IndexSubNav,
8-
Layout,
9-
Link,
10-
MainContent,
11-
TopBar,
12-
} from "../components";
5+
import { Footer, IndexSubNav, Layout, Link, MainContent } from "../components";
136

147
const IndexCard = ({ iconName, headingText, children }) => (
158
<div className="card rounded shadow-sm mb-4">
@@ -46,7 +39,6 @@ const Page = () => (
4639
}}
4740
background="white"
4841
>
49-
<TopBar />
5042
<Container fluid className="p-0 d-flex bg-white">
5143
<MainContent searchNavLogo={true}>
5244
{/* Sign Post */}

src/pages/search.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { useState, useEffect } from "react";
22
import { Container, Navbar } from "react-bootstrap";
33
import algoliasearch from "algoliasearch/lite";
44
import { InstantSearch, Configure } from "react-instantsearch-dom";
5-
import { Footer, Layout, SideNavigation, TopBar } from "../components";
5+
import { Footer, Layout, SideNavigation } from "../components";
66
import {
77
AdvancedSearchFiltering,
88
AdvancedSearchResults,
@@ -31,7 +31,6 @@ const Search = (data) => {
3131

3232
return (
3333
<Layout background="white" pageMeta={{ title: "Advanced Search" }}>
34-
<TopBar />
3534
<Container fluid className="p-0 d-flex bg-white">
3635
<InstantSearch
3736
searchClient={searchClient}

src/templates/doc-stub.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import {
88
Layout,
99
MainContent,
1010
TableOfContents,
11-
TopBar,
1211
VersionDropdown,
1312
} from "../components";
1413

@@ -86,7 +85,6 @@ const DocTemplate = ({ data, pageContext }) => {
8685

8786
return (
8887
<Layout pageMeta={pageMeta} background="white">
89-
<TopBar />
9088
<Container fluid className="p-0 d-flex bg-white">
9189
<MainContent searchNavLogo={true}>
9290
<div className="d-flex justify-content-between align-items-center">

src/templates/doc.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import {
1313
PrevNext,
1414
SideNavigation,
1515
TableOfContents,
16-
TopBar,
1716
} from "../components";
1817
import { products } from "../constants/products";
1918
import Icon from "../components/icon";
@@ -255,7 +254,6 @@ const DocTemplate = ({ data, pageContext }) => {
255254

256255
return (
257256
<Layout pageMeta={pageMeta}>
258-
<TopBar />
259257
<Container fluid className="p-0 d-flex bg-white">
260258
<SideNavigation>
261259
<LeftNav

src/templates/learn-doc.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import {
1212
PrevNext,
1313
SideNavigation,
1414
TableOfContents,
15-
TopBar,
1615
} from "../components";
1716

1817
export const query = graphql`
@@ -138,7 +137,6 @@ const LearnDocTemplate = ({ data, pageContext }) => {
138137

139138
return (
140139
<Layout pageMeta={pageMeta} katacodaPanelData={katacodaPanel}>
141-
<TopBar />
142140
<Container fluid className="p-0 d-flex bg-white">
143141
<SideNavigation>
144142
<LeftNav

static/images/edb-docs-logo-disc-dark-beta.svg

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)