Release Notes

Total Page:16

File Type:pdf, Size:1020Kb

Release Notes CloudBolt Software Release Notes What’s New in CloudBolt 7.2 Blueprints Server tiers on blueprints now support a notion of “allowable OS families”. This restricts the set of OS Build choices available to users when they order the blueprints and also when blueprint admins set the OS Build on a server tier within the blueprint. This facilitates import and setup of blueprints from the content library. Custom Roles CloudBolt now allows the creation of custom roles. Visit the Admin > Roles page to create a role and decide which permissions it should have, then assign it to users from either the Users page or the Users tab of a group. CloudBolt’s out-of-the-box roles are now editable, too. You can add or remove permissions on them the way you would for custom roles. You can also restore these roles back to their default state from the Admin > Roles page at any time. The “Powerful Requestors” and “Restrict job logs to admins” miscellaneous settings have been replaced with permissions. If you had these options enabled, CloudBolt will take them into account and add the appropriate permissions during the upgrade. However, they will not be taken into account if you later revert the roles back to their default state on the Roles page. Resource Technologies Azure Resource Manager A new parameter, ‘Delete Empty ARM Resource Group’, is available for ARM environments and servers. When set to True on a server, the associated Resource Group will also be deleted if it becomes empty after deleting the server. Otherwise, the empty Resource Group will remain. For most users, this parameter can be set as a default for an entire environment. However, some use cases might have a need to set it differently on a specic blueprint or server deployment. AWS The AWS resource handler now uses the custom SSL certicates available at Admin SSL Root Certicates . If activated, the default certicates used to connect to HTTPS endpoints via the Boto library will still be used. Additional certicates can be added to supplement the list by adding them to the SSL Root Certicates page. Alternatively, SSL Certicate validation can be deactivated via that same page. The AWS rate hook now works on servers provisioned outside CloudBolt. It is also much faster than before, and no longer requires you to manually download the rate le before using it. AWS GovCloud A new resource handler has been added that can connect to AWS GovCloud (US) regions designed to host sensitive data and regulated workloads in the cloud, helping customers support their U.S. government compliance requirements. For more information, see https://aws.amazon.com/govcloud-us/. Eucalyptus A new resource handler has been added that can connect to Eucalyptus, an AWS-compatible private and hybrid cloud computing environment. For more information, see https://github.com/eucalyptus/eucalyptus/wiki. Content Library More content types can be imported from the CloudBolt Content Library. We added orchestration actions, server and service actions, rules, and recurring jobs. Go to the admin page for any of those and toggle the ‘cloud-download’ button at the top right to view and import samples hosted on the Content Library. When importing content that has already been imported, admins now have the choice to replace existing content or not. General Improvements The email sent to approvers when a new order is created will now show the URL for the portal where the order was placed. Several cross site scripting (XSS) vulnerabilities were xed. Malicious payloads on some user- supplied elds are now prevented. To prevent the database and job logs from growing too large, CloudBolt now ships with a recurring job to clean up job records older than one year. If you would like to keep jobs for a different amount of time, go to Admin Recurring jobs and edit the job to change the threshold or disable it entirely. Upgrade Notes Bulk user creation using a CSV le is no longer supported. The PKI authentication backend does not support custom roles. CloudBolt plugins for user permissions LDAP sync scripts and other CloudBolt plugins that grant permission will need to be updated to work with the new 7.2 roles. For example, the old call group.requestors.add(profile) will need to be updated to the following: from accounts.models import Role role = Role.objects.get(name='requestor') profile.add_role_for_group(role, group) See the new out-of-the-box LDAP orchestration action for more examples of how the new roles work. Rate hooks As part of improving the AWS Rate Hook for discovered servers, a new server argument is now passed to its compute_rate method. This has 2 impacts for customers: 1. If you have modied the out-of-the-box AWS Rate Hook, you will want to look at the new out- of-the-box version after upgrade and incorporate the change we’ve made into your version of the code. 2. If you have written any of your own custom rate hooks, you will need to ensure that their compute_rate method can accept a server keyword argument. The best way to do this is simply to have all your action methods accept **kwargs . What’s New in CloudBolt 7.1 Kubernetes Adds support for custom cong les, for ne-grained control of your Kubernetes resources. Custom cong les support any resource type, not just Pods. The cong les can also be templatized, similar to what is possible with actions, creating le inputs that can have default values set on the Pod Blueprint Item and/or have values entered at order time. Kubernetes resources created while provisioning a blueprint will be cleaned up when the service is deleted. General Improvements The Django web-app framework that powers CloudBolt has been upgraded to Django 1.10.6. New OS Families have been added: SUSE Linux, macOS, Amazon Linux, and Solaris. When viewing a server that has snapshots, there is a new delete icon next to each snapshot that allows the user to delete the snapshot. HTTPS requests made by CloudBolt now support the Certi library for validating SSL certicates. The default for SSL verication remains deactivated. However, it can be activated at Admin SSL Root Certicates . If activated, certicates being used to connect to any HTTPS endpoints must be trusted by this new library. More information is available at https://github.com/certi/python- certi. Additional certicates can be added to supplement the list provided by Certi by adding them to the SSL Root Certicates page. Resource Technologies VMware When importing datastores, datastores that are part of datastore clusters will no longer be excluded. Fixes bug where comma-separated datastores could not be entered. CloudBolt Forge is now the CloudBolt Content Library Some content from the CloudBolt Forge is now available for browsing and importing directly in the user interface. Initially, Server Actions, “base” actions, and UI extensions are supported. Simply browse to the admin pages for managing these objects and click on the “cloud-download” button in the top right to view and import remote content hosted on the Content Library. Support for more content types such as Blueprints and Rules will be implemented in the future. The CloudBolt Forge Git repository will be deprecated in favor of this more intuitive in-product presentation. But as always, contributions to this repository of sample content are welcome. Contact CloudBolt to share your own blueprints, actions, or UI extensions with the CloudBolt community. Upgrade Notes NIC elds on the order form will now show even if there is only one option. Past orders created with a hidden NIC may not duplicate correctly, and CIT tests based on these orders may need to be recreated. The conguration variable for MIDDLEWARE_CLASSES has changed to just MIDDLEWARE. Any references to that variable in customer_settings.py must also be changed. The get_thread_logger method that was used in some actions is being deprecated. The correct approach is to use ThreadLogger instead. If you use get_thread_logger in any of the actions you created, please change it to ThreadLogger. Use of get_thread_logger will log a deprecation warning. A set of out-of-the-box actions have been changed from get_thread_logger to ThreadLogger, so if you have edited the code of these actions you will need to incorporate the changes to the out-of-the-box version into your edited code: delete-servicenow-ci.py, create- servicenow-ci.py, puppet_ent_3.X_discover_groups.py, puppet_ent_3.X_clean_cert.py, puppet_ent_3.X_get_node_facts.py, puppet_ent_2015.3_discover_groups.py, puppet_ent_2015.3_clean_cert.py. The setting of a logger in an action should look like: from utilities.logger import ThreadLogger logger = ThreadLogger(__name__) and not: from utilities.logger import get_thread_logger logger = get_thread_logger(__name__) If you have a custom log-in template in /var/opt/cloudbolt/proserv/templates/registration/login.html, it may have an old piece of code that needs to be updated. Please ensure the form’s action attribute looks like this: action="{% url 'login' %}" and not: action="{% url 'utilities.views.login' %}" This is required by the upgrade to the latest Django framework and avoids an error on the log-in page. There was an issue where existing Google Compute subnetworks were not being found when syncing networks, causing them to be replaced. That has been xed, but existing networks will need to be re-synced after upgrading and their subnetworks will need to be re-added to the appropriate environments. What’s New in CloudBolt 7.0 Ordering To simplify the ordering process, CloudBolt’s two distinct order forms have been consolidated into one. The New Server order form has been removed, and all ordering now uses blueprints. The New Server link still exists, but it now points to a new out-of-the-box blueprint called Custom Server.
Recommended publications
  • Extensibility to Future and Legacy Technology
    Extensibility to Future and Legacy Technology CONNECTING MULTIPLE CLOUDS TO LONG-STANDING IT INFRASTRUCTURE SECTION ONE Bridging the Old with the New | Tensions from Legacy to Cloud ENTERPRISE IT MUST INTEGRATE MULTIPLE EXISTING SYSTEMS WITH NEWER CLOUD SERVICES. “With new on-premises public cloud stacks entering the picture, there is a distinct possibility of a significant surge in private cloud deployments over the next five years.” - Kuba Stolarski, research director, Infrastructure Systems, Platforms and Technologies at IDC [email protected] www.cloudbolt.io 2 As a result of rapid growth in digital Expansion transformation initiatives, enterprises Infrastructure and resources are inherited and agencies now have infrastructure through mergers and acquisitions, as are that spans both private and public the processes used to manage them. This cloud environments along with legacy leads to an inevitable mix of different technology in their data centers. This vendors and technologies under the explosion of multiple, heterogeneous responsibility of central IT. The challenge infrastructure environments is due to is to figure out what to consolidate and at least one or more of the following what to migrate to new environments. reasons: Security Public Cloud Evolving backup and disaster recovery Agile developers and individuals from scenarios have dramatically changed for lines of business have been self- where and what gets stored as well as a provisioning resources, sometimes outside plethora of highly availability scenarios for of central IT control. They use public resilience. All these approaches contribute cloud providers for many of their new to more infrastructure sprawl and initiatives while much of the existing complexity.
    [Show full text]
  • View Whitepaper
    INFRAREPORT Top M&A Trends in Infrastructure Software EXECUTIVE SUMMARY 4 1 EVOLUTION OF CLOUD INFRASTRUCTURE 7 1.1 Size of the Prize 7 1.2 The Evolution of the Infrastructure (Public) Cloud Market and Technology 7 1.2.1 Original 2006 Public Cloud - Hardware as a Service 8 1.2.2 2016 - 2010 - Platform as a Service 9 1.2.3 2016 - 2019 - Containers as a Service 10 1.2.4 Container Orchestration 11 1.2.5 Standardization of Container Orchestration 11 1.2.6 Hybrid Cloud & Multi-Cloud 12 1.2.7 Edge Computing and 5G 12 1.2.8 APIs, Cloud Components and AI 13 1.2.9 Service Mesh 14 1.2.10 Serverless 15 1.2.11 Zero Code 15 1.2.12 Cloud as a Service 16 2 STATE OF THE MARKET 18 2.1 Investment Trend Summary -Summary of Funding Activity in Cloud Infrastructure 18 3 MARKET FOCUS – TRENDS & COMPANIES 20 3.1 Cloud Providers Provide Enhanced Security, Including AI/ML and Zero Trust Security 20 3.2 Cloud Management and Cost Containment Becomes a Challenge for Customers 21 3.3 The Container Market is Just Starting to Heat Up 23 3.4 Kubernetes 24 3.5 APIs Have Become the Dominant Information Sharing Paradigm 27 3.6 DevOps is the Answer to Increasing Competition From Emerging Digital Disruptors. 30 3.7 Serverless 32 3.8 Zero Code 38 3.9 Hybrid, Multi and Edge Clouds 43 4 LARGE PUBLIC/PRIVATE ACQUIRERS 57 4.1 Amazon Web Services | Private Company Profile 57 4.2 Cloudera (NYS: CLDR) | Public Company Profile 59 4.3 Hortonworks | Private Company Profile 61 Infrastructure Software Report l Woodside Capital Partners l Confidential l October 2020 Page | 2 INFRAREPORT
    [Show full text]
  • AWS Re:Invent 2019
    Research Note: AWS re:Invent 2019 Rajeev Chand Partner and Head, Research Amazon’s 8th annual re:Invent was held December 2-6, 2019, in Las Vegas. The [email protected] conference is one of the largest enterprise tech gatherings globally, second only to Salesforce’s Dreamforce. This year’s re:Invent had 65,000 attendees, which is more Olivia Rodberg than double the 30,000 attendees in 2016. Research Associate [email protected] re:Invent, as a vendor-specific conference, focused on sessions with Amazon executives, technologists, and partners introducing, discussing, and evangelizing AWS products and services. However, in hallway conversations and private meetings, attendees discussed and debated industry trends and challenges in cloud businesses Wing Venture Capital and technologies. 480 Lytton Avenue Palo Alto, CA 94301 At this year’s conference, Wing’s research team hosted the Wing Summit: re:Invent, an exclusive, invitation-only dialogue with 40 chief information officers and chief technology officers. In addition, during two days at the conference, we held 20 one-on- meetings with Fortune 500 executives, principally vice presidents and heads of infrastructure, engineering, cloud, and data. Our takeaways included: 1) Cost economics, though frequently raised, is not the primary driver. CIOs in our pre-summit feedback most frequently raised cost economics as a topic. One CIO asked, “are cloud financials what people perceive them to be for production workloads?” Another asked, “is there a crossover point where public cloud becomes more costly than private cloud?” Another questioned, “how should we be thinking about balancing growing opex vs. capex?” Executives in our meetings emphasized that cost economics are not the primary driver for cloud adoption.
    [Show full text]
  • Market Analysis: Disruptive Hyperscaler Cloud Service Providers
    Market Analysis: Disruptive Hyperscaler Cloud Service Providers Excerpt for Hexaware March 2021 HFS Research authors: Joel Martin, VP Cloud Strategy Martin Gabriel, Associate Director, Research The growth in cloud migration for large scale, highly secure, and resilient service delivery creates apple “opportunity for disruption in the cloud service provider marketplace. These vendors can gain share by focusing on customer experience, thought leadership, and strong cloud platform knowledge to deliver best in class customer experiences.” —Joel Martin, VP Cloud Research, HFS © 2021, HFS Research Ltd Excerpt for Hexaware Page 2 1 Introduction, methodology, and definitions 4 2 Executive report summary 12 3 Summary of provides and market opportunities 15 4 Disruptive hyperscaler cloud service provider profile 18 5 Market insights 23 6 About the authors 28 Introduction, methodology, and definitions About this report This Market Assessment report provides insights and profiles emerging, disruptive hyperscaler cloud service providers. Companies covered in this report are global, have strong partnerships with hyperscalers (cloud infrastructure companies like Microsoft Azure, Amazon AWS, IBM Cloud, etc.), and have dedicated teams of up to 5,000 cloud professionals. Some of these disrupters focus solely on providing hybrid and multi-cloud cloud solutions. In contrast, others are part of significantly larger organizations that bring compelling systems integration, outsourcing, and business process outsourcing solutions to market. HFS sees these companies as likely market disruptors as can pivot quickly, whereas some of the larger players may lack similar agility. Key differentiators that make these companies potential disrupters. HFS provides a market overview, key trends in the hyperscaler cloud services market, and profiles of each of these firms.
    [Show full text]
  • Multi Cloud Management Platforms: Practical Survey
    Multi Cloud Management Platforms: Practical Survey Marta Rozanska (University of Oslo), Daniel Seybold (Ulm University), Feroz Zahid (Simula Research Labs) Cloud Management Platform (Cloud) products that incorporate self-service interfaces, provision system images, enable metering and billing, and provide for some degree of workload optimization through established policies Source: Gartner IT Glossary – Cloud Management Platforms – http://www.gartner.com/it-glossary/cloud-management-platforms Practical Guide to Cloud Management Platforms – Cloud Standards Customer Council – https://www.omg.org/cloud/deliverables/CSCC- Practical-Guide-to-Cloud-Management-Platforms.pdf 2 How do we compare CMP? • Cloud Orchestration Support • Cloud Application Support • Platform Intelligence 3 Cloud Orchestration Support • Multi-Cloud support • Resource Diversity • BYON support • Service support • Automation 4 Cloud Application Support • Modelling (language, diversity, resource selection) • Lifecycle Management • Data Management (Data creation, migration, • Workflow Support • Containerization 5 Platform Intelligence • Optimisation • Utility functions • Objective versality • Continuous reasoning • Constraints • Monitoring (system/custom metrics, aggregation) • Runtime adaptation • Event management • Data management • Dynamic Resource Offering Discovery 6 Apache Brooklyn • Is an open-source framework for modelling, deploying and managing distributed applications defined using blueprints • License: Apache 2.0 • Cloud Orchestration Support: • Uses Apache jclouds
    [Show full text]
  • Hype Cycle for I&O Automation, 2020
    Hype Cycle for I&O Automation, 2020 Published: 4 August 2020 ID: G00441834 Analyst(s): Chris Saunderson Automation is a catalyst that drives consistent quality and business agility as organizations adopt cloud computing and DevOps practices, and integrate AI capabilities. I&O leaders must leverage the technologies in this Hype Cycle to deliver faster value, improve efficiency and optimize costs. Table of Contents Analysis..................................................................................................................................................3 What You Need to Know.................................................................................................................. 3 The Hype Cycle................................................................................................................................ 3 The Priority Matrix.............................................................................................................................5 Off the Hype Cycle........................................................................................................................... 7 On the Rise...................................................................................................................................... 7 Chaos Engineering..................................................................................................................... 7 Hybrid Digital Infrastructure Management................................................................................... 8 SaaS
    [Show full text]
  • Microsoft Azure Snapshot
    Microsoft Azure Snapshot Microsoft Azure is a cloud computing platform with a vast global footprint of managed data centers that provide » Empower IT innovation software as a service (SaaS), platform as » Leverage scalable resources a service (PaaS), and infrastructure as » Simplify developer workflows a service (IaaS) offerings. The platform supports many different programming languages, tools, and frameworks, including both Microsoft-specific and third-party software and systems. Many enterprise customers are increasingly looking to shift workloads from their data centers to public cloud platforms such as Azure, which provide a specific set of templates to ensure the smooth operation of workflow processes. If an enterprise is currently using Microsoft Office 365 solutions and SharePoint, the shift to Azure is even more compelling. BALANCING INNOVATION WITH IT VISIBILITY AND CONTROL Development and engineering teams are some of the largest consumers of cloud and transient resources. As developers test applications or IT systems, they need to quickly spin up virtual machines and other resources while controlling costs. In many cases, they wind up building their own servers outside the control of IT. Because end-users can deploy complex applications to public cloud platforms, this can lead to mismanagement of resources, server sprawl, and servers vulnerable to network and cyber-attacks. Some users can become mired in complexity as they attempt to provision resources, while IT teams can lose visibility and control over those resources if a process in the workflow fails. Moreover, IT administrators and end users are challenged by what seems like an infinite number of choices that must be made before they can successfully launch and provision cloud resources and services in most public clouds.
    [Show full text]
  • Cloudbolt AWS Datasheet
    DATASHEET Simplified Management for AWS Resources » Leverage scalable Infrastructure resources from Amazon Web resources Services (AWS) have become very popular for enterprises — providing a scalable » Simplify IT provisioning environment for mission-critical applications » Gain visibility and control and services that are dedicated or on- demand and part of an overall hybrid cloud and multi-cloud strategy. AWS resources help top enterprises innovate and achieve digital business objectives with agility. [email protected] www.cloudbolt.io 1 DATASHEET Although an excellent wellspring of resources, AWS has what seems like an infinite number of decisions to make before deploying them. IT admins and end users want to use AWS resources with the goal of not sacrificing security and performance while controlling costs so they don’t end up costing more than the value they provide. For those reasons, deploying AWS resources effectively can be daunting to even seasoned IT professionals. At the enterprise level, making the right decisions about using AWS resources can make a huge difference for the overall success of digital transformation initiatives, particularly when implementing hybrid cloud and multi-cloud strategies. CloudBolt helps IT admins move the critical and complicated aspects of deploying AWS resources behind the scenes. The entire process of requesting, deploying, and terminating virtual machines (VMs) and cloud services is more efficient for end users who are provided with an intuitive self-service IT portal and unified manager to provision and manage the resources they need. As a hybrid cloud and multi-cloud management platform, CloudBolt homogenizes access to virtualization and cloud environments to not only AWS, but also to Microsoft Azure, Google Cloud Platform, and VMware vCenter.
    [Show full text]
  • Onefuse Integration Platform
    SOLUTION OVERVIEW OneFuse Integration Platform IT Governance without Development Disruption OneFuse role-based access control and policy model simplifies and improves security by defining Improve Automation Through Better Integrations parameters that create guardrails for users, use cases, and endpoints or services. Policies can be shared with specialized teams or subject matter experts with the OneFuse workspace feature, which “Poor integrations... take a $500,000 “52% of custom coded projects cost “57% of IT processes aren’t automated allows systems owners to stay in control while still being able to automate tasks in the provisioning toll on the business every year.”1 189% of their original estimate.” 2 or integrated.”3 lifecycle. As companies continue to make the shift towards more cloud infrastructure, teams are under The OneFuse console provides visibility into tools, users, APIs, and job outcomes for better auditing mounting pressure to find efficient and cost-effective solutions to address automation challenges and compliance. This removes the need to sift through logs from multiple systems to find and fix the around a growing number of clouds, toolsets, and teams. In order to be effective, these technologies problem. Job detail records are shown in the context of their policy, so it’s easy to quickly see what and teams must converge to meet the needs of the business without compromising IT governance, properties were missing or incorrect which means faster resolution as well as an improved end user compliance, and over-burdening people resources. experience. Policies protect provisioning, decommissioning and custom actions, so you can closer to 100% automation safely.
    [Show full text]
  • Google Cloud Platform Snapshot
    Google Cloud Platform Snapshot Google Cloud Platform (GCP) is a cloud computing platform with a global presence for building, testing, and » Empower IT innovation running applications and services that run » Leverage scalable resources on the same infrastructure that Google » Simplify developer workflows uses internally for its end-user products. It has led the way for Kubernetes orchestration for containerization, which has now become the enterprise standard across most cloud provider and on- premises solutions. Many enterprise customers are increasingly looking to GCP to leverage enterprise-grade hybrid cloud containerization workflows and big data analytics on demand, and for infrastructure-as-a- service (IaaS) and platform-as-a-service (PaaS). BigQuery provides a data warehouse and analytics on demand by creating a logical data warehouse over managed, columnar storage, as well as data from object storage and spreadsheets. Google has joined the other big cloud providers with serverless computing using its Cloud Functions. BALANCING INNOVATION WITH IT VISIBILITY AND CONTROL Development and engineering teams are some of the largest consumers of cloud and transient resources. As developers test applications or IT systems, they need to quickly spin up virtual machines and other resources while controlling costs. In many cases, they wind up building their own servers outside the control of IT. Because end-users can deploy complex applications to public cloud platforms, this can lead to mismanagement of resources, server sprawl, and servers vulnerable to network and cyber-attacks. End-users can become mired in complexity as they attempt to provision resources, while IT teams can lose visibility and control over those resources if a process in the workflow fails.
    [Show full text]
  • Cloudbolt Creates Unified Cloud Interface For
    CASE STUDY At a Glance CloudBolt Vitals Annual Revenue $1.8B+ Creates Unified Employees 7,300 HQ Denham, Buckinghamshire, Cloud Interface England NYSE IHG for IHG Technology InterContinental Hotels Group (IHG) is an Virtualization VMware, AWS, Azure,CenturyLink Public English multinational hotels company Cloud, Google Compute headquartered in Denham, UK. IHG has Engine, Nutanix Acropolis more than 5,000 hotels and nearly 750,000 Configuration guest rooms in almost 100 countries around Management Chef the world. Its brands include Candlewood Enterprise Ticketing Suites, Crowne Plaza, Even, Holiday Inn, ServiceNow Holiday Inn Express, Hotel Indigo, Hualuxe, IP Management Infoblox InterContinental and Staybridge Suites. Load Balancing F5 OSs RHEL, CentOS, Windows VMs 7,000+ CASE STUDY Challenge Because of the size and complexity of their IT infrastructure, IHG utilizes four different public clouds. They want the flexibility of multiple public clouds so they can use the platform that provides the optimal environment for each workload, as well as to protect themselves against price increases and instabilities in any one public cloud. The challenge this created was that administrators needed to understand and use four different interfaces to locate, manage, and provision compute resources. They have used VMware’s vRealize Automation (vRA) for managing VMware servers, but it did not provide support for all four of the public clouds that they need. Furthermore, they found vRA to be extremely time-consuming to maintain, with upgrades requiring a multi-month processes, and a large professional services cost. Finally, for the clouds vRA could deploy to, the process of installing multi-server, multi-tier apps on any one of these public clouds was onerous and required the administrator to use multiple different interfaces (the public cloud console, Chef, and the new VM itself).
    [Show full text]
  • Value, Opex for Major Software Enterprise
    CASE STUDY At a Glance CloudBolt Vitals Employees 3,000 Dramatically Annual Revenue $700 million Location Eastern United States Reduces Time-to- The Competition Value, OpEx for vRealize Automation Red Hat CloudForms Major Software Homegrown Application Enterprise Technology Virtualization VMware vCenter This enterprise designs learning and Public Cloud Amazon education software for enterprise/school Web Services groups. It’s a global leader in enterprise Configuration Manager technology and innovative solutions that Chef (multiple instances) improve the experience of millions of Orchestration vCloud students and learners around the world Orchestrator every day. Ticketing ServiceNow Operating Systems RHEL, CentOS, Windows VMs 10,000+ CASE STUDY Challenge Before CloudBolt, the enterprise relied on a complicated integration of vCloud Orchestrator, Chef, and a ticketing system to run their server provisioning processes. They struggled with slow turn- around time, a lack of governance, and difficulty understanding their costs. Solution With CloudBolt, the enterprise enabled: Faster turn-around with smart automation and integrations Dramatically faster VM provisioning and customer CloudBolt’s orchestration hooks feature enabled the onboarding times company to tightly integrate with existing workflow Chargeback/shameback with cost tracking and components. For example, InfoBlox was configured transparency across lines of business within CloudBolt for IP address management during provisioning and modification of networks. Orchestration Policies and quotas for controlling usage and access hooks also enabled CloudBolt to create ServiceNow to resources tickets when provisioning requests were approved and Deployments that conformed to company security to update those tickets as servers were modified or and operations policies deleted. CloudBolt allowed existing infrastructure to be partitioned into “environments” using characteristics such Real-time software license management and tracking as hypervisors, networks, applications, OS templates, and more.
    [Show full text]