SlideShare a Scribd company logo
Deploy DSE Clusters with ease using
OpsCenter LifeCycle Manager
Manikandan Srinivasan
Mike Lococo
1 What is DataStax OpsCenter?
2 LifeCycle Manager - Introduction
3 LifeCycle Manager Architecture
4 REST API
5 Demo
©2016 DataStax
What is DataStax OpsCenter?
Visual Monitoring and Management
Control automatic management services
including transparent repair
Manage and schedule backup and restore
operations
Perform capacity planning with historical
trend analysis and forecasting capabilities
Proactively manage all clusters with threshold
and timing-based alerts
Visually create new clusters with a few
mouse clicks either on premise or in the cloud
Built-in Automatic Failover©2016 DataStax
©2016 DataStax
LifeCycle Manager- Introduction
Enterprise-class provisioning
– Turnkey Security
– Configuration management
– “Offline” Deployments
– Improved Robustness & Auditability
– Improved Usability
©2016 DataStax
Built for Beginners
Deploy DSE with Confidence
– Point and Click Deploy/Configure.
– All your DSE configs in one place.
– Troubleshoot from the UI.
– Auto-generates SSL certificates.
©2016 DataStax
Built for Experts
Deploy DSE with Flexibility
– Simple well-documented, and terse API.
– Configure every DSE option.
– Detailed job-events in one place.
– Hack idempotence for advanced workflows.
– Cooperates with third-party config
management systems.
©2016 DataStax
LifeCycle Manager- Architecture
A Proven Approach
– Convergent: Does the work that is
possible, even in the face of transient
errors. Converges toward desired state
over multiple runs.
– Idempotent: Safe and efficient when run
more than once.
– Declarative: Model the state you want,
LCM figures out how to get there.
©2016 DataStax
LifeCycle Manager- Configuration Profiles
Push Button Config
– Comprehensive: Configure every DSE
option.
– Sparse: Store only your customizations,
so you automatically get improved defaults
with each DSE upgrade.
– Hierarchical: Apply at the cluster,
datacenter or node level with smart
merging.
©2016 DataStax
LifeCycle Manager- REST API
API Driven Custom Workflows
– Comprehensive: Everything the UI can do,
the API can do. We ride our own airplane.
– Documented: With field lists and
examples.
– Discoverable: The API root lists the
possible endpoints. href and related-
resources fields make relationships
intuitive.
LifeCycle Manager- REST API
$ curl -s http://127.0.0.1:8888/api/v1/lcm/
{"actions-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/actions/"},
"cluster-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/clusters/"},
"config-profile-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/config_profiles/"},
"datacenter-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/datacenters/"},
"definitions": {"href": "http://127.0.0.1:8888/api/v1/lcm/definitions/"},
"job-event-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/job_events/"},
"job-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/jobs/"},
"job-node-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/job_nodes/"},
"machine-credential-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/machine_credentials/"},
"node-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/nodes/"},
"repository-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/repositories/"}}
©2016 DataStax
LifeCycle Manager- REST API
$ curl -s http://localhost:8888/api/v1/lcm/clusters/
{"last" : 1,
"per-page" : 50,
"previous" : null,
"next" : null,
"current" : 1,
"count": 1,
"results": [{"type" : "cluster",
"id" : "591ae107-2ef8-4c0f-b603-3b9f2d722d2f",
"href" : "http://localhost:8888/api/v1/lcm/clusters/591ae107-2ef8...",
"config-profile-id" : "4ff7a9ae-257c-4a6c-bfb0-b47299f39795",
"ssh-management-port" : 22,
"related-resources" : {"datacenters":"http://localhost:8888/api/v1/lcm/..."},
"more-fields-omitted" : "for brevity"}]}
©2016 DataStax
LifeCycle Manager- REST API
$ curl -s -X POST 
-d '{"name": "test-cluster-01", 
"machine-credential-id": "0f03dff7-1874-4c17-a823-ff79dba6e694", 
"repository-id": "7db37bd2-c23a-4ea6-a415-e9faaeb2060f", 
"config-profile-id": "4ff7a9ae-257c-4a6c-bfb0-b47299f39795"}' 
http://localhost:8888/api/v1/lcm/clusters/
{"datacenter": [],
"type": "cluster",
"config-profile-id": "4ff7a9ae-257c-4a6c-bfb0-b47299f39795",
"repository-id": "7db37bd2-c23a-4ea6-a415-e9faaeb2060f",
"machine-credential-id": "0f03dff7-1874-4c17-a823-ff79dba6e694",
"name": "test-cluster-01",
"comment": null,
"id": "108f74ab-0c5c-4bf7-8527-695e3e630e1a",
"href": "http://localhost:8888/api/v1/lcm/clusters/108f74ab-0c5c-4bf7-8527-695e3e630e1a",
"related-resources": {"datacenters": "http://localhost:8888/api/v1/lcm/clusters/18f.../datacenters/"},
"more-fields-omitted" : "for brevity"}}
©2016 DataStax
©2016 DataStax
DEMO
Thank You!
©2016 DataStax
Appendix

More Related Content

What's hot (19)

PDF
How to Bulletproof Your Scylla Deployment
ScyllaDB
 
PPTX
DataStax | DSE Search 5.0 and Beyond (Nick Panahi & Ariel Weisberg) | Cassand...
DataStax
 
PDF
Maximum Overdrive: Tuning the Spark Cassandra Connector (Russell Spitzer, Dat...
DataStax
 
PPTX
DataStax | DSE: Bring Your Own Spark (with Enterprise Security) (Artem Aliev)...
DataStax
 
PDF
Elassandra: Elasticsearch as a Cassandra Secondary Index (Rémi Trouville, Vin...
DataStax
 
PDF
Ruby Driver Explained: DataStax Webinar May 5th 2015
DataStax
 
PPTX
HPC and cloud distributed computing, as a journey
Peter Clapham
 
PDF
Advanced Cassandra
DataStax Academy
 
PDF
Advanced Operations
DataStax Academy
 
PDF
Apache Cassandra and Drivers
DataStax Academy
 
PDF
Apache Mesos and the new Open Source Architecture of the Modern Datacenter
Data Con LA
 
PDF
Mysql Enterprise Edition Feature and Tools
jones4u
 
PDF
Getting Started with Apache Cassandra and Apache Zeppelin (DuyHai DOAN, DataS...
DataStax
 
PDF
Overview of DataStax OpsCenter
DataStax
 
PPTX
Understanding DSE Search by Matt Stump
DataStax
 
PPTX
JoTechies - Azure SQL DB
JoTechies
 
PPTX
From Postgres to Cassandra (Rimas Silkaitis, Heroku) | C* Summit 2016
DataStax
 
PPTX
Cassandra Summit 2015: Intro to DSE Search
Caleb Rackliffe
 
PPTX
Everyday I’m scaling... Cassandra
Instaclustr
 
How to Bulletproof Your Scylla Deployment
ScyllaDB
 
DataStax | DSE Search 5.0 and Beyond (Nick Panahi & Ariel Weisberg) | Cassand...
DataStax
 
Maximum Overdrive: Tuning the Spark Cassandra Connector (Russell Spitzer, Dat...
DataStax
 
DataStax | DSE: Bring Your Own Spark (with Enterprise Security) (Artem Aliev)...
DataStax
 
Elassandra: Elasticsearch as a Cassandra Secondary Index (Rémi Trouville, Vin...
DataStax
 
Ruby Driver Explained: DataStax Webinar May 5th 2015
DataStax
 
HPC and cloud distributed computing, as a journey
Peter Clapham
 
Advanced Cassandra
DataStax Academy
 
Advanced Operations
DataStax Academy
 
Apache Cassandra and Drivers
DataStax Academy
 
Apache Mesos and the new Open Source Architecture of the Modern Datacenter
Data Con LA
 
Mysql Enterprise Edition Feature and Tools
jones4u
 
Getting Started with Apache Cassandra and Apache Zeppelin (DuyHai DOAN, DataS...
DataStax
 
Overview of DataStax OpsCenter
DataStax
 
Understanding DSE Search by Matt Stump
DataStax
 
JoTechies - Azure SQL DB
JoTechies
 
From Postgres to Cassandra (Rimas Silkaitis, Heroku) | C* Summit 2016
DataStax
 
Cassandra Summit 2015: Intro to DSE Search
Caleb Rackliffe
 
Everyday I’m scaling... Cassandra
Instaclustr
 

Similar to DataStax | Deploy DataStax Enterprise Clusters with OpsCenter (LCM) (Manikandan Srinivasan & Mike Lococo) | Cassandra Summit 2016 (20)

PPTX
OpsStack--Integrated Operation Platform
ChinaNetCloud
 
PDF
SnapLogic- iPaaS (Elastic Integration Cloud and Data Integration)
Surendar S
 
PDF
OpenStack in Enterprise
Nalee Jang
 
PPTX
Microsoft private cloud with Cisco and Netapp - Flexpod solution
Microsoft TechNet - Belgium and Luxembourg
 
PDF
Introducing Cloud Development with Project Shipped and Mantl: a deep dive
Cisco DevNet
 
PPTX
Introducing Cloud Development with Mantl
Cisco DevNet
 
PDF
Hands-On Lab: Improve large network visibility and operational efficiency wit...
CA Technologies
 
PDF
OCCIware@POSS 2016 - an extensible, standard XaaS cloud consumer platform
Marc Dutoo
 
PDF
Scaling up Near Real-time Analytics @Uber &LinkedIn
C4Media
 
PPTX
Couchbase and Apache Spark
Matt Ingenthron
 
PDF
OCCIware: Extensible and Standard-based XaaS Platform To Manage Everything in...
OW2
 
PDF
OCCIware, an extensible, standard-based XaaS consumer platform to manage ever...
OCCIware
 
PDF
OCCIware presentation at EclipseDay in Lyon, November 2017, by Marc Dutoo, Smile
OCCIware
 
PDF
Model and pilot all cloud layers with OCCIware - Eclipse Day Lyon 2017
Marc Dutoo
 
PDF
The Hitch-Hikers Guide to Data Centre Virtualization and Workload Consolidation:
Cisco Canada
 
PDF
Modern Elastic Datacenter Architecture
Weston Bassler
 
PDF
Delivering the power of data using Spring Cloud DataFlow and DataStax Enterpr...
VMware Tanzu
 
DOCX
Vinothkumar
Vinothkumar V
 
PPTX
Bringing NetApp Data ONTAP & Apache CloudStack Together
David La Motta
 
PDF
ApacheCon NA 2010 - Developing Composite Apps for the Cloud with Apache Tuscany
Jean-Sebastien Delfino
 
OpsStack--Integrated Operation Platform
ChinaNetCloud
 
SnapLogic- iPaaS (Elastic Integration Cloud and Data Integration)
Surendar S
 
OpenStack in Enterprise
Nalee Jang
 
Microsoft private cloud with Cisco and Netapp - Flexpod solution
Microsoft TechNet - Belgium and Luxembourg
 
Introducing Cloud Development with Project Shipped and Mantl: a deep dive
Cisco DevNet
 
Introducing Cloud Development with Mantl
Cisco DevNet
 
Hands-On Lab: Improve large network visibility and operational efficiency wit...
CA Technologies
 
OCCIware@POSS 2016 - an extensible, standard XaaS cloud consumer platform
Marc Dutoo
 
Scaling up Near Real-time Analytics @Uber &LinkedIn
C4Media
 
Couchbase and Apache Spark
Matt Ingenthron
 
OCCIware: Extensible and Standard-based XaaS Platform To Manage Everything in...
OW2
 
OCCIware, an extensible, standard-based XaaS consumer platform to manage ever...
OCCIware
 
OCCIware presentation at EclipseDay in Lyon, November 2017, by Marc Dutoo, Smile
OCCIware
 
Model and pilot all cloud layers with OCCIware - Eclipse Day Lyon 2017
Marc Dutoo
 
The Hitch-Hikers Guide to Data Centre Virtualization and Workload Consolidation:
Cisco Canada
 
Modern Elastic Datacenter Architecture
Weston Bassler
 
Delivering the power of data using Spring Cloud DataFlow and DataStax Enterpr...
VMware Tanzu
 
Vinothkumar
Vinothkumar V
 
Bringing NetApp Data ONTAP & Apache CloudStack Together
David La Motta
 
ApacheCon NA 2010 - Developing Composite Apps for the Cloud with Apache Tuscany
Jean-Sebastien Delfino
 
Ad

More from DataStax (20)

PPTX
Is Your Enterprise Ready to Shine This Holiday Season?
DataStax
 
PPTX
Designing Fault-Tolerant Applications with DataStax Enterprise and Apache Cas...
DataStax
 
PPTX
Running DataStax Enterprise in VMware Cloud and Hybrid Environments
DataStax
 
PPTX
Best Practices for Getting to Production with DataStax Enterprise Graph
DataStax
 
PPTX
Webinar | Data Management for Hybrid and Multi-Cloud: A Four-Step Journey
DataStax
 
PPTX
Webinar | How to Understand Apache Cassandra™ Performance Through Read/Writ...
DataStax
 
PDF
Webinar | Better Together: Apache Cassandra and Apache Kafka
DataStax
 
PDF
Top 10 Best Practices for Apache Cassandra and DataStax Enterprise
DataStax
 
PDF
Introduction to Apache Cassandra™ + What’s New in 4.0
DataStax
 
PPTX
Webinar: How Active Everywhere Database Architecture Accelerates Hybrid Cloud...
DataStax
 
PPTX
Webinar | Aligning GDPR Requirements with Today's Hybrid Cloud Realities
DataStax
 
PDF
Designing a Distributed Cloud Database for Dummies
DataStax
 
PDF
How to Power Innovation with Geo-Distributed Data Management in Hybrid Cloud
DataStax
 
PDF
How to Evaluate Cloud Databases for eCommerce
DataStax
 
PPTX
Webinar: DataStax Enterprise 6: 10 Ways to Multiply the Power of Apache Cassa...
DataStax
 
PPTX
Webinar: DataStax and Microsoft Azure: Empowering the Right-Now Enterprise wi...
DataStax
 
PPTX
Webinar - Real-Time Customer Experience for the Right-Now Enterprise featurin...
DataStax
 
PPTX
Datastax - The Architect's guide to customer experience (CX)
DataStax
 
PPTX
An Operational Data Layer is Critical for Transformative Banking Applications
DataStax
 
PPTX
Becoming a Customer-Centric Enterprise Via Real-Time Data and Design Thinking
DataStax
 
Is Your Enterprise Ready to Shine This Holiday Season?
DataStax
 
Designing Fault-Tolerant Applications with DataStax Enterprise and Apache Cas...
DataStax
 
Running DataStax Enterprise in VMware Cloud and Hybrid Environments
DataStax
 
Best Practices for Getting to Production with DataStax Enterprise Graph
DataStax
 
Webinar | Data Management for Hybrid and Multi-Cloud: A Four-Step Journey
DataStax
 
Webinar | How to Understand Apache Cassandra™ Performance Through Read/Writ...
DataStax
 
Webinar | Better Together: Apache Cassandra and Apache Kafka
DataStax
 
Top 10 Best Practices for Apache Cassandra and DataStax Enterprise
DataStax
 
Introduction to Apache Cassandra™ + What’s New in 4.0
DataStax
 
Webinar: How Active Everywhere Database Architecture Accelerates Hybrid Cloud...
DataStax
 
Webinar | Aligning GDPR Requirements with Today's Hybrid Cloud Realities
DataStax
 
Designing a Distributed Cloud Database for Dummies
DataStax
 
How to Power Innovation with Geo-Distributed Data Management in Hybrid Cloud
DataStax
 
How to Evaluate Cloud Databases for eCommerce
DataStax
 
Webinar: DataStax Enterprise 6: 10 Ways to Multiply the Power of Apache Cassa...
DataStax
 
Webinar: DataStax and Microsoft Azure: Empowering the Right-Now Enterprise wi...
DataStax
 
Webinar - Real-Time Customer Experience for the Right-Now Enterprise featurin...
DataStax
 
Datastax - The Architect's guide to customer experience (CX)
DataStax
 
An Operational Data Layer is Critical for Transformative Banking Applications
DataStax
 
Becoming a Customer-Centric Enterprise Via Real-Time Data and Design Thinking
DataStax
 
Ad

Recently uploaded (20)

PDF
Troubleshooting Virtual Threads in Java!
Tier1 app
 
PDF
Download iTop VPN Free 6.1.0.5882 Crack Full Activated Pre Latest 2025
imang66g
 
PPTX
TRAVEL APIs | WHITE LABEL TRAVEL API | TOP TRAVEL APIs
philipnathen82
 
PPT
Why Reliable Server Maintenance Service in New York is Crucial for Your Business
Sam Vohra
 
PPTX
classification of computer and basic part of digital computer
ravisinghrajpurohit3
 
PDF
How Agentic AI Networks are Revolutionizing Collaborative AI Ecosystems in 2025
ronakdubey419
 
PDF
MiniTool Power Data Recovery Crack New Pre Activated Version Latest 2025
imang66g
 
PDF
Why Are More Businesses Choosing Partners Over Freelancers for Salesforce.pdf
Cymetrix Software
 
PDF
Balancing Resource Capacity and Workloads with OnePlan – Avoid Overloading Te...
OnePlan Solutions
 
PDF
Step-by-Step Guide to Install SAP HANA Studio | Complete Installation Tutoria...
SAP Vista, an A L T Z E N Company
 
PDF
WatchTraderHub - Watch Dealer software with inventory management and multi-ch...
WatchDealer Pavel
 
PDF
10 posting ideas for community engagement with AI prompts
Pankaj Taneja
 
PDF
Infrastructure planning and resilience - Keith Hastings.pptx.pdf
Safe Software
 
PPTX
Presentation about variables and constant.pptx
kr2589474
 
PDF
How to Download and Install ADT (ABAP Development Tools) for Eclipse IDE | SA...
SAP Vista, an A L T Z E N Company
 
PDF
Using licensed Data Loss Prevention (DLP) as a strategic proactive data secur...
Q-Advise
 
PDF
New Download MiniTool Partition Wizard Crack Latest Version 2025
imang66g
 
PDF
ChatPharo: an Open Architecture for Understanding How to Talk Live to LLMs
ESUG
 
PPTX
Explanation about Structures in C language.pptx
Veeral Rathod
 
PDF
Applitools Platform Pulse: What's New and What's Coming - July 2025
Applitools
 
Troubleshooting Virtual Threads in Java!
Tier1 app
 
Download iTop VPN Free 6.1.0.5882 Crack Full Activated Pre Latest 2025
imang66g
 
TRAVEL APIs | WHITE LABEL TRAVEL API | TOP TRAVEL APIs
philipnathen82
 
Why Reliable Server Maintenance Service in New York is Crucial for Your Business
Sam Vohra
 
classification of computer and basic part of digital computer
ravisinghrajpurohit3
 
How Agentic AI Networks are Revolutionizing Collaborative AI Ecosystems in 2025
ronakdubey419
 
MiniTool Power Data Recovery Crack New Pre Activated Version Latest 2025
imang66g
 
Why Are More Businesses Choosing Partners Over Freelancers for Salesforce.pdf
Cymetrix Software
 
Balancing Resource Capacity and Workloads with OnePlan – Avoid Overloading Te...
OnePlan Solutions
 
Step-by-Step Guide to Install SAP HANA Studio | Complete Installation Tutoria...
SAP Vista, an A L T Z E N Company
 
WatchTraderHub - Watch Dealer software with inventory management and multi-ch...
WatchDealer Pavel
 
10 posting ideas for community engagement with AI prompts
Pankaj Taneja
 
Infrastructure planning and resilience - Keith Hastings.pptx.pdf
Safe Software
 
Presentation about variables and constant.pptx
kr2589474
 
How to Download and Install ADT (ABAP Development Tools) for Eclipse IDE | SA...
SAP Vista, an A L T Z E N Company
 
Using licensed Data Loss Prevention (DLP) as a strategic proactive data secur...
Q-Advise
 
New Download MiniTool Partition Wizard Crack Latest Version 2025
imang66g
 
ChatPharo: an Open Architecture for Understanding How to Talk Live to LLMs
ESUG
 
Explanation about Structures in C language.pptx
Veeral Rathod
 
Applitools Platform Pulse: What's New and What's Coming - July 2025
Applitools
 

DataStax | Deploy DataStax Enterprise Clusters with OpsCenter (LCM) (Manikandan Srinivasan & Mike Lococo) | Cassandra Summit 2016

  • 1. Deploy DSE Clusters with ease using OpsCenter LifeCycle Manager Manikandan Srinivasan Mike Lococo
  • 2. 1 What is DataStax OpsCenter? 2 LifeCycle Manager - Introduction 3 LifeCycle Manager Architecture 4 REST API 5 Demo ©2016 DataStax
  • 3. What is DataStax OpsCenter? Visual Monitoring and Management Control automatic management services including transparent repair Manage and schedule backup and restore operations Perform capacity planning with historical trend analysis and forecasting capabilities Proactively manage all clusters with threshold and timing-based alerts Visually create new clusters with a few mouse clicks either on premise or in the cloud Built-in Automatic Failover©2016 DataStax
  • 4. ©2016 DataStax LifeCycle Manager- Introduction Enterprise-class provisioning – Turnkey Security – Configuration management – “Offline” Deployments – Improved Robustness & Auditability – Improved Usability
  • 5. ©2016 DataStax Built for Beginners Deploy DSE with Confidence – Point and Click Deploy/Configure. – All your DSE configs in one place. – Troubleshoot from the UI. – Auto-generates SSL certificates.
  • 6. ©2016 DataStax Built for Experts Deploy DSE with Flexibility – Simple well-documented, and terse API. – Configure every DSE option. – Detailed job-events in one place. – Hack idempotence for advanced workflows. – Cooperates with third-party config management systems.
  • 7. ©2016 DataStax LifeCycle Manager- Architecture A Proven Approach – Convergent: Does the work that is possible, even in the face of transient errors. Converges toward desired state over multiple runs. – Idempotent: Safe and efficient when run more than once. – Declarative: Model the state you want, LCM figures out how to get there.
  • 8. ©2016 DataStax LifeCycle Manager- Configuration Profiles Push Button Config – Comprehensive: Configure every DSE option. – Sparse: Store only your customizations, so you automatically get improved defaults with each DSE upgrade. – Hierarchical: Apply at the cluster, datacenter or node level with smart merging.
  • 9. ©2016 DataStax LifeCycle Manager- REST API API Driven Custom Workflows – Comprehensive: Everything the UI can do, the API can do. We ride our own airplane. – Documented: With field lists and examples. – Discoverable: The API root lists the possible endpoints. href and related- resources fields make relationships intuitive.
  • 10. LifeCycle Manager- REST API $ curl -s http://127.0.0.1:8888/api/v1/lcm/ {"actions-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/actions/"}, "cluster-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/clusters/"}, "config-profile-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/config_profiles/"}, "datacenter-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/datacenters/"}, "definitions": {"href": "http://127.0.0.1:8888/api/v1/lcm/definitions/"}, "job-event-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/job_events/"}, "job-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/jobs/"}, "job-node-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/job_nodes/"}, "machine-credential-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/machine_credentials/"}, "node-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/nodes/"}, "repository-list": {"href": "http://127.0.0.1:8888/api/v1/lcm/repositories/"}} ©2016 DataStax
  • 11. LifeCycle Manager- REST API $ curl -s http://localhost:8888/api/v1/lcm/clusters/ {"last" : 1, "per-page" : 50, "previous" : null, "next" : null, "current" : 1, "count": 1, "results": [{"type" : "cluster", "id" : "591ae107-2ef8-4c0f-b603-3b9f2d722d2f", "href" : "http://localhost:8888/api/v1/lcm/clusters/591ae107-2ef8...", "config-profile-id" : "4ff7a9ae-257c-4a6c-bfb0-b47299f39795", "ssh-management-port" : 22, "related-resources" : {"datacenters":"http://localhost:8888/api/v1/lcm/..."}, "more-fields-omitted" : "for brevity"}]} ©2016 DataStax
  • 12. LifeCycle Manager- REST API $ curl -s -X POST -d '{"name": "test-cluster-01", "machine-credential-id": "0f03dff7-1874-4c17-a823-ff79dba6e694", "repository-id": "7db37bd2-c23a-4ea6-a415-e9faaeb2060f", "config-profile-id": "4ff7a9ae-257c-4a6c-bfb0-b47299f39795"}' http://localhost:8888/api/v1/lcm/clusters/ {"datacenter": [], "type": "cluster", "config-profile-id": "4ff7a9ae-257c-4a6c-bfb0-b47299f39795", "repository-id": "7db37bd2-c23a-4ea6-a415-e9faaeb2060f", "machine-credential-id": "0f03dff7-1874-4c17-a823-ff79dba6e694", "name": "test-cluster-01", "comment": null, "id": "108f74ab-0c5c-4bf7-8527-695e3e630e1a", "href": "http://localhost:8888/api/v1/lcm/clusters/108f74ab-0c5c-4bf7-8527-695e3e630e1a", "related-resources": {"datacenters": "http://localhost:8888/api/v1/lcm/clusters/18f.../datacenters/"}, "more-fields-omitted" : "for brevity"}} ©2016 DataStax