This is a series of posts to demonstrate how to install OKD 3.11 on oVirt and what you can do with it. Part I - How to install OKD 3.11 on oVirt
Installing OKD or Kubernetes on oVirt has many advantages, and it's also gotten a lot easier these days. Admins and users who want to take container platform management for a spin, on oVirt, will be encouraged by this.
Few of the advantages are:
The installation uses openshift-ansible and, specifically the openshift_ovirt
ansible-role. The integration between OpenShift and oVirt is tighter, and provides storage integration. If you need persistent volumes for your containers you can get that directly from oVirt using ovirt-volume-provisioner and ovirt-flexvolume-driver.
For the sake of simplicity, this example will cover an all-in-one OpenShift cluster, on a single VM.
Continue reading
This post was written by Wendy Dessler of The Blog Frog.
Database-as-a-Service (DBaaS) is quickly gaining in popularity across the tech world. These software platform solutions helps users easily manage their database operations without having to really understand any of the abstractions. This allows developers, DBA’s and DevOps engineers to quickly automate their backups, create new SQL and NoSQL clusters, and monitor the performance of their databases for their application without requiring any internal database expertise.
DBaaS falls under the umbrella of Platform-as-a-Service (PaaS) where the platform itself is actually a database or several databases. This is a great choice for DevOps in particular because it allows for more developer agility, productivity, and also security.
Flexibility and scalability are becoming more important in the world of DevOps and technology in general, and we all know how fast this world moves. Businesses need new ways to keep up with the competition, and developers are looking for an easy, self-service model for managing their databases in order to optimize their app development. Let’s break down the individual benefits so you can decide if DBaaS is right for your DevOps team.
SDxCentral Weekly Wrap for January 4, 2019: ZTE hires former US Senator to lobby on its behalf, T-Mobile/Sprint approval process delayed, Nokia names Fixed Network biz leader.
Reports from job boards Dice and Indeed found that Kubernetes skills were highly sought after in 2018.
In the previous two parts of this series, I have looked at the reasons I think the networking ecosystem is bound to change and why I think disaggregation is going to play a major role in that change. If I am right about the changes happening, what will become of network engineers? The bifurcation of knowledge, combined with the kinds of networks and companies noted in the previous posts in this series, point the way. There will, I think, be three distinct careers where the current “network engineer” currently exists on the operational side:
IoT software spending will total $154 billion in 2019 and see the fastest growth over the forecast period with a CAGR of 16.6 percent.
AT&T sells off its data center colocation assets; Cloudera completes merge with Hortonworks; NTT Com's 2019 transformation.
Wake up! It's HighScalability time:
Do you like this sort of Stuff? Please support me on Patreon. Need cloud? Explain the Cloud Like I'm 10 (34 almost 5 star reviews).
Scouting around for things to do, T-Mobile US has published a new 5G consumer index and claims the moral high ground for not launching 5G networks before its rivals.
Opensource software depends on community contributions to projects, even projects maintained by organizations. Contributing back to a project improves the project for all.
In the first Network Collective Short Take of 2019 – Russ White sits down with Matt Oswalt to discuss his take on chaos engineering.
The post Short Take – Chaos Engineering appeared first on Network Collective.
Small update.
I was fortunate enough to be selected as a Cisco Champion for 2019. Looking forward to alot of good information and cooperation from the program!
Esther is a youth leader passionate about gender, digital literacy, and grassroots advocacy. She is founder of the SAFIGI Outreach Foundation and President of Digital Grassroots.
She is also a 2019 IFF Community Development fellow, a 2019 Engineers Without Borders Canada Kumvana fellow, a Mozilla Open Leader, an Internet Society 2017 Youth@IGF fellow, an open knowledge advocate, and a champion for capacity building of youth and girls.
Esther graduated summa cum laude in multimedia journalism, and is a contributor on Impakter.com and Africa.com. She is an emerging African writer, working on her debut fantasy novel and does photography in her free time.
Born in 1994, about the same time Tim Berners-Lee founded the World Wide Web Consortium and a commercialized Internet started to take form, the Internet has inextricably shaped my life and career.
At 16 years old, I got my first job at an Internet café. I had taught myself to type, and that was all I needed to teach people that they couldn’t just guess a password if they had not already set up an email account. Many young people in developing nations are still grappling to learn the computer (it’s Continue reading
My curiosity was piqued by an LWN article about IOCB_CMD_POLL - A new kernel polling interface. It discusses an addition of a new polling mechanism to Linux AIO API, which was merged in 4.18 kernel. The whole idea is rather intriguing. The author of the patch is proposing to use the Linux AIO API with things like network sockets.
Hold on. The Linux AIO is designed for, well, Asynchronous disk IO! Disk files are not the same thing as network sockets! Is it even possible to use the Linux AIO API with network sockets in the first place?
The answer turns out to be a strong YES! In this article I'll explain how to use the strengths of Linux AIO API to write better and faster network servers.
But before we start, what is Linux AIO anyway?
Linux AIO exposes asynchronous disk IO to userspace software.
Historically on Linux, all disk operations were blocking. Whether you did open()
, read()
, write()
or fsync()
, you could be sure your thread would stall if the needed data and meta-data was not ready in disk cache. This usually isn't Continue reading