Skip to main content

Puppet Labs Moves Into Network and Storage Automation

Software automation company Puppet Labs, Tuesday, said it is making its software compatible with network and storage devices from a range of suppliers. Puppet Labs, known mostly for server configuration has partnered with network and storage companies including Cisco Systems Inc.CSCO +0.61%, Arista Networks Inc.ANET -0.26%, EMC Corp.EMC -0.34%, F5 Networks Inc.FFIV +0.30% and Cumulus Networks and others.
The move will let customers automate configuration of servers, switches and storage equipment with one software platform. There’s plenty of software to manage only networks or only storage. But there are fewer solutions for companies that want to use one platform to manage configuration across different types of data center equipment. “We’re knitting them together,” said Luke Kanies, CEO of Puppet Labs.
“Most of the focus and use of Puppet Labs and tools like it has been to automate [server] configuration changes,” said Ronni Colville, vice president and distinguished analyst at Gartner Inc.IT +0.46%, in an email. Puppet Labs tools let IT operations treat the infrastructure more like app code, she said.
As data centers become larger and unwieldy, many companies are trying to automate them and fully control them through software. That means fewer technicians fiddling with boxes and the ability to configure hardware in minutes instead of weeks.
In January, Facebook Inc.FB -0.46% said it saved $1.2 billion over the last three years redesigning its data centers. Part of that effort involved making servers easier to manage with software. Last week, Facebook said it has engineered a networking switch called Wedge that can be more easily controlled by software.
These switches funnel information among servers in data centers and out to the Web. They’re also one of the last parts of the data center to be controlled by software. Configuring and managing these boxes has conventionally required more hands-on attention from network engineers than servers did.
Controlling networks primarily with software is expected to be big business. The global software-defined networking market is estimated to grow to $3.7 billion in 2019 from $290 million in 2014 according to an April report by Research and Markets.
Last week, Puppet Labs announced $40 million in funding from existing investors including Cisco and Google Ventures. In January 2013, VMware Inc.VMW -0.21% invested $30 million in the company. “VMware’s last investment was much larger and could be more of an indicator of a potential acquisition,” said Ms. Colville.
Write to rachael.king@wsj.com
http://gengwg.blogspot.com/

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...