open-nomad/website/pages/use-cases/automated-service-networking-with-consul.jsx
Kendall Strautman fe85162128
[Assembly]: Website Branding Refresh (#10188)
* style: update gray brand colors

* style: update brand colors

* chore: upgrade react-components deps

* chore: update text split cta link color

* style(home): update icons

* refactor(home): use learn-callout component

* style(downloads): temporary color override

* style(community): fix link color

* Update website/pages/community/style.css

Co-authored-by: Zachary Shilton <4624598+zchsh@users.noreply.github.com>

* update package-lock

* update deps

* add new downloads page

* remove extra husky script

* chore: upgrades nextjs-scripts dep

* chore: upgrades community page vertical text block list

* chore: test component pre-releases

* chore: upgrade deps

chore: upgrades nextjs-scripts

* chore: update home icon colors

* chore: update home logo grid

* chore(website): upgrade deps

* style: adjust features icons border radius

* style: home hero bg to secondary

* chore: upgrade deps for body copy colors

* chore: upgrades alert banner

* feat: updates favicon

* chore: updates deps

* content(home): updates assets

* content(use-cases:simple container orch): updates content

* content(use-cases:non-containerized-app) updates assets

* content(use-cases:auto networking with consul): updates assets

* style(home): remove use cases icons override

* style(home-hero): remove bg pattern on mobile

* content(use-cases): updates asset

* chore: update assets

* chore: updates product download page to alpha

* chore: updates product download page to stable

Co-authored-by: Zachary Shilton <4624598+zchsh@users.noreply.github.com>
Co-authored-by: Jeff Escalante <jescalan@users.noreply.github.com>
2021-05-03 11:06:55 -07:00

121 lines
3.8 KiB
JavaScript

import UseCasesLayout from 'components/use-case-page'
import TextSplitWithImage from '@hashicorp/react-text-split-with-image'
import FeaturedSlider from '@hashicorp/react-featured-slider'
export default function AutomatedServiceNetworkingWithConsulPage() {
return (
<UseCasesLayout
title="Automated Service Networking with Consul"
description="Nomad natively integrates with Consul to provide automated clustering, built-in service discovery, and service mesh for secure service-to-service communications."
>
<TextSplitWithImage
textSplit={{
heading: 'Automatic Clustering',
content:
'Automatically bootstrap Nomad clusters using existing Consul agents on the same hosts.',
textSide: 'right',
links: [
{
text: 'Read More',
url:
'https://learn.hashicorp.com/tutorials/nomad/clustering#use-consul-to-automatically-cluster-nodes',
type: 'outbound',
},
],
}}
image={{
url: require('./img/automatic-clustering.png'),
alt: '',
}}
/>
<TextSplitWithImage
textSplit={{
heading: 'Automated Service Discovery',
content:
'Built-in service discovery, registration, and health check monitoring for all applications deployed under Nomad.',
textSide: 'left',
links: [
{
text: 'Read More',
url: '/docs/integrations/consul-integration#service-discovery',
type: 'inbound',
},
],
}}
image={{
url: require('./img/consul-interface.png'),
alt: '',
}}
/>
<TextSplitWithImage
textSplit={{
heading: 'Secure Service-to-Service Communication',
content:
'Enable seamless deployments of sidecar proxies and segmented microservices through Consul Connect.',
textSide: 'right',
links: [
{
text: 'Learn More',
url: '/docs/integrations/consul-connect',
type: 'inbound',
},
],
}}
image={{
url: require('./img/service-to-service.png'),
alt: '',
}}
/>
<FeaturedSlider
heading="Case Studies"
theme="dark"
features={[
{
logo: {
url:
'https://www.datocms-assets.com/2885/1582161366-deluxe-logo.svg',
alt: 'Deluxe',
},
image: {
url: require('./img/deluxe.png'),
alt: 'Deluxe Case Study',
},
heading: 'Deluxe',
content:
'Disrupt the traditional media supply chain with a digital platform powered by Nomad, Consul and Vault.',
link: {
text: 'Learn More',
url:
'https://www.hashicorp.com/resources/deluxe-hashistack-video-production',
type: 'outbound',
},
},
{
logo: {
url:
'https://www.datocms-assets.com/2885/1582161581-seatgeek.svg',
alt: 'SeatGeek',
},
image: {
url: require('./img/seatgeek.png'),
alt: 'Seat Geek Case Study',
},
heading: 'SeatGeek',
content:
'A team of 5 engineers built a infrastructure platform with Nomad, Consul, and Vault to provide tickets to millions of customers.',
link: {
text: 'Learn More',
url:
'https://www.hashicorp.com/resources/seatgeek-and-the-hashistack-a-tooling-and-automation-love-story',
type: 'outbound',
},
},
]}
/>
</UseCasesLayout>
)
}