-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
264 lines (241 loc) · 9.17 KB
/
Copy pathindex.js
File metadata and controls
264 lines (241 loc) · 9.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
import React from "react";
import { Container } from "react-bootstrap";
import Icon, { iconNames } from "../components/icon/";
import cliImg from "../images/screen-demo.gif";
import { Footer, IndexSubNav, Layout, Link, MainContent } from "../components";
const IndexCard = ({ iconName, headingText, children }) => (
<div className="card rounded shadow-sm mb-4">
<div className="card-body">
<div className="d-flex align-items-center mb-3">
<div className="d-inline-block mr-3">
<Icon
iconName={iconName}
className="fill-orange"
width="24"
height="24"
/>
</div>
<h4 className="d-inline-block card-title m-0">{headingText}</h4>
</div>
<ul className="list-unstyled mb-0">{children}</ul>
</div>
</div>
);
const IndexCardLink = ({ to, className, children }) => (
<li>
<Link to={to} className={`d-block py-2 pl-1 ${className}`}>
{children}
</Link>
</li>
);
const Page = () => (
<Layout
pageMeta={{
description:
"EDB supercharges Postgres with products, services, and support to help you control database risk, manage costs, and scale efficiently.",
}}
background="white"
>
<Container fluid className="p-0 d-flex bg-white">
<MainContent searchNavLogo={true}>
{/* Sign Post */}
<div className="new-thing-header" aria-roledescription="badge">
<span className="badge-text font-weight-bold">Interactive Demo</span>
</div>
<div className="full-width mt-3 mb-5">
<div className="pt-0">
<div className="d-flex pb-0 align-items-center">
<div className="mr-3">
<Link to="/kubernetes/cloud_native_postgresql/interactive_demo/">
<img
src={cliImg}
alt="Illustration of a Kubernetes Terminal Command"
className="img-fluid shadow rounded card"
/>
</Link>
</div>
<div className="flex-fill pl-3">
<h2 className="card-title mb-2 font-weight-bold">
<span className="text-muted font-weight-normal">
Cloud Native Postgres
</span>
<br />
Install, Configure and Deploy PostgreSQL with Kubernetes
</h2>
<p className="pt-2 pb-1 balance-text">
Test drive Cloud Native Postgres in the browser.
</p>
<div className="d-flex align-items-center">
<p>
<Link
className="btn btn-info"
to="/kubernetes/cloud_native_postgresql/interactive_demo/"
>
Try the Interactive Demo →
</Link>
</p>
<p className="ml-3">
<Link
to="/kubernetes/cloud_native_postgresql/"
className="border-bottom"
>
Learn More
</Link>
</p>
</div>
</div>
</div>
</div>
</div>
{/* Sign Post */}
<div className="card-columns mb-4">
<IndexCard iconName={iconNames.BIG_DATA} headingText="Databases">
<IndexCardLink to="/epas/latest">
EDB Postgres Advanced Server
</IndexCardLink>
<IndexCardLink to="/supported-open-source/postgresql/">
PostgreSQL
</IndexCardLink>
</IndexCard>
<IndexCard iconName={iconNames.KUBERNETES} headingText="Kubernetes">
<IndexCardLink to="/kubernetes/cloud_native_postgresql/">
Cloud Native PostgreSQL Operator
</IndexCardLink>
<IndexCardLink
to="/kubernetes/cloud_native_postgresql/interactive_demo/"
className="nested-link"
>
Install, Configure, Deploy
<span
className="new-thing"
title="Walk through an interactive demo in Katacoda"
>
Demo
</span>
</IndexCardLink>
</IndexCard>
<IndexCard
iconName={iconNames.CONTROL}
headingText="Monitoring & Admin Tools"
>
<IndexCardLink to="/pem/latest">
Postgres Enterprise Manager
</IndexCardLink>
<IndexCardLink to="/supported-open-source/pgadmin/">
pgAdmin
</IndexCardLink>
</IndexCard>
<IndexCard iconName={iconNames.CONVERT} headingText="Migration Tools">
<IndexCardLink to="/migration_portal/latest">
Migration Portal
</IndexCardLink>
<IndexCardLink to="/migration_toolkit/latest">
Migration Toolkit
</IndexCardLink>
</IndexCard>
<IndexCard
iconName={iconNames.HIGH_AVAILABILITY}
headingText="High Availability Tools"
>
<span className="font-weight-bold text-muted text-uppercase small">
Replication
</span>
<IndexCardLink to="/bdr/latest">
BDR (Bi-Directional Replication)
</IndexCardLink>
<IndexCardLink to="/eprs/latest">Replication Server</IndexCardLink>
<IndexCardLink to="/slony/latest">Slony</IndexCardLink>
<span className="font-weight-bold mt-4 text-muted text-uppercase small d-block">
Cluster Management
</span>
<IndexCardLink to="/harp/latest">
High Availability Routing for Postgres (HARP)
</IndexCardLink>
<IndexCardLink to="/efm/latest">Failover Manager</IndexCardLink>
<IndexCardLink to="/repmgr/latest">
repmgr (Replication Manager)
</IndexCardLink>
<span className="font-weight-bold mt-4 text-muted text-uppercase small d-block">
Connection Poolers
</span>
<IndexCardLink to="/pgbouncer/latest">pgBouncer</IndexCardLink>
<IndexCardLink to="/pgpool/latest">pgPool-II</IndexCardLink>
</IndexCard>
<IndexCard
iconName={iconNames.DRIVES}
headingText="Backup & Recovery Tools"
>
<IndexCardLink to="/supported-open-source/barman/">
Barman
</IndexCardLink>
<IndexCardLink
to="/supported-open-source/barman/single-server-streaming/"
className="nested-link"
>
Single Server Streaming
<span
className="new-thing"
title="Walk through an interactive demo in Katacoda"
>
Demo
</span>
</IndexCardLink>
<IndexCardLink to="/supported-open-source/pgbackrest/">
pgBackRest
</IndexCardLink>
<IndexCardLink to="/bart/latest">
Backup & Recovery Tool
</IndexCardLink>
</IndexCard>
<IndexCard
iconName={iconNames.CODE_WRITING}
headingText="Integration"
>
<span className="font-weight-bold text-muted text-uppercase small">
Foreign Data Wrappers
</span>
<IndexCardLink to="/hadoop_data_adapter/latest">
Hadoop
</IndexCardLink>
<IndexCardLink to="/mongo_data_adapter/latest">Mongo</IndexCardLink>
<IndexCardLink to="/mysql_data_adapter/latest">MySQL</IndexCardLink>
<span className="font-weight-bold text-muted text-uppercase small mt-4 d-block">
Connectors
</span>
<IndexCardLink to="/jdbc_connector/latest">JDBC</IndexCardLink>
<IndexCardLink to="/net_connector/latest">.NET</IndexCardLink>
<IndexCardLink to="/ocl_connector/latest">OCL</IndexCardLink>
<IndexCardLink to="/odbc_connector/latest">ODBC</IndexCardLink>
</IndexCard>
<IndexCard iconName={iconNames.MODULE} headingText="Extensions">
<IndexCardLink to="/postgis/latest">PostGIS</IndexCardLink>
</IndexCard>
<IndexCard
iconName={iconNames.HANDSHAKE}
headingText="Third Party Integrations"
>
<IndexCardLink to="/partner_docs/FlywayGuide">
Flyway
</IndexCardLink>
<IndexCardLink to="/partner_docs/LiquibaseGuide">
Liquibase Pro
</IndexCardLink>
<IndexCardLink to="/partner_docs/FoglightGuide">
Quest Foglight
</IndexCardLink>
<IndexCardLink to="/partner_docs/NutanixGuide">
Nutanix AHV
</IndexCardLink>
<IndexCardLink to="/partner_docs/ThalesGuide">
Thales CipherTrust Transparent Encryption
</IndexCardLink>
</IndexCard>
</div>
<hr />
<IndexSubNav />
<Footer />
</MainContent>
</Container>
</Layout>
);
export default Page;