2020-12-07 22:04:11 +00:00
import UseCasesLayout from 'components/use-case-page'
2020-02-14 15:11:37 +00:00
import TextSplitWithImage from '@hashicorp/react-text-split-with-image'
2021-03-29 15:37:48 +00:00
import FeaturedSlider from '@hashicorp/react-featured-slider'
2020-02-14 15:11:37 +00:00
export default function NonContainerizedApplicationOrchestrationPage ( ) {
return (
< UseCasesLayout
title = "Non-Containerized Application Orchestration"
description = "Nomad's flexible workload support enables an organization to run containerized, non containerized, and batch applications through a single workflow. Nomad brings core orchestration benefits to legacy applications without needing to containerize via pluggable task drivers."
>
< TextSplitWithImage
textSplit = { {
heading : 'Non-Containerized Orchestration' ,
content :
2020-12-03 00:02:03 +00:00
'Deploy, manage, and scale your non-containerized applications using the Java, QEMU, or exec drivers.' ,
2020-02-14 15:11:37 +00:00
textSide : 'right' ,
links : [
{
text : 'Watch the Webinar' ,
url :
'https://www.hashicorp.com/resources/move-your-vmware-workloads-nomad' ,
2020-06-01 21:48:25 +00:00
type : 'outbound' ,
} ,
] ,
2020-02-14 15:11:37 +00:00
} }
image = { {
2021-05-03 18:06:55 +00:00
url : require ( './img/non-containerized-orch.png' ) ,
2020-06-01 21:48:25 +00:00
alt : 'Non-Containerized Orchestration' ,
2020-02-14 15:11:37 +00:00
} }
/ >
< TextSplitWithImage
textSplit = { {
heading : 'Improve Resource Utilization with Bin Packing' ,
content :
'Improve resource utilization and reduce costs for non-containerized applications through Nomad’ s bin-packing placements.' ,
2020-06-01 21:48:25 +00:00
textSide : 'left' ,
2020-02-14 15:11:37 +00:00
} }
image = { {
2021-05-03 18:06:55 +00:00
url : require ( './img/resource-utilization.png' ) ,
2020-06-01 21:48:25 +00:00
alt : 'Bin Packing' ,
2020-02-14 15:11:37 +00:00
} }
/ >
< TextSplitWithImage
textSplit = { {
heading : 'Zero Downtime Deployments' ,
content :
'Apply modern upgrade strategies for legacy applications through rolling updates, blue/green, or canary deployment strategies.' ,
textSide : 'right' ,
links : [
{
text : 'Read more' ,
2020-09-29 16:48:32 +00:00
url : 'https://learn.hashicorp.com/collections/nomad/job-updates' ,
2020-06-01 21:48:25 +00:00
type : 'outbound' ,
} ,
] ,
2020-02-14 15:11:37 +00:00
} }
image = { {
2021-05-03 18:06:55 +00:00
url : require ( './img/zero-downtime.png' ) ,
2020-06-01 21:48:25 +00:00
alt : '' ,
2020-02-14 15:11:37 +00:00
} }
/ >
< TextSplitWithImage
textSplit = { {
2020-02-23 21:28:32 +00:00
heading : 'Run On-Premise with Ease' ,
2020-02-14 15:11:37 +00:00
textSide : 'left' ,
content :
2020-06-01 21:48:25 +00:00
'Install and run Nomad easily on bare metal as a single binary and with the same ease as on cloud.' ,
2020-02-14 15:11:37 +00:00
} }
image = { {
2021-05-03 18:06:55 +00:00
url : require ( './img/run-on-prem-with-ease.png' ) ,
2020-06-01 21:48:25 +00:00
alt : '' ,
2020-02-14 15:11:37 +00:00
} }
/ >
2021-05-03 18:06:55 +00:00
< TextSplitWithImage
textSplit = { {
heading : 'High Performance Batch Workloads' ,
content :
'Run batch jobs with proven scalability of thousands of deployments per second via the batch scheduler.' ,
textSide : 'right' ,
links : [
{
text : 'Watch GrayMeta tech presentation' ,
url :
'https://www.hashicorp.com/resources/backend-batch-processing-nomad' ,
type : 'outbound' ,
} ,
] ,
} }
image = { {
url : require ( './img/batch-workloads@3x.png' ) ,
alt : '' ,
} }
/ >
2020-02-14 15:11:37 +00:00
2021-03-29 15:37:48 +00:00
< FeaturedSlider
2020-02-14 15:11:37 +00:00
heading = "Case Study"
2021-03-29 15:37:48 +00:00
theme = "dark"
2020-02-14 15:11:37 +00:00
features = { [
{
logo : {
url :
'https://www.datocms-assets.com/2885/1582149907-graymetalogo.svg' ,
2020-06-01 21:48:25 +00:00
alt : 'GrayMeta' ,
2020-02-14 15:11:37 +00:00
} ,
image : {
url : require ( './img/grey_meta.png' ) ,
2020-06-01 21:48:25 +00:00
alt : 'GrayMeta Presentation' ,
2020-02-14 15:11:37 +00:00
} ,
heading : 'GrayMeta' ,
content :
'Move an application from a traditional model of processing jobs out of a queue to scheduling them as container jobs in Nomad.' ,
link : {
text : 'Watch Presentation' ,
url :
'https://www.hashicorp.com/resources/backend-batch-processing-nomad' ,
2020-06-01 21:48:25 +00:00
type : 'outbound' ,
} ,
} ,
2020-02-14 15:11:37 +00:00
] }
/ >
< / UseCasesLayout >
)
}