Skip to content

Commit 72be316

Browse files
committed
typos
1 parent 088dba2 commit 72be316

File tree

1 file changed

+3
-3
lines changed
  • content/rants/2023-05-21-patching

1 file changed

+3
-3
lines changed

content/rants/2023-05-21-patching/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ date = 2023-05-21
99

1010
If you're professionally responsible for one or more computers, part of that responsibility likely includes installing security updates. You probably have some sort of mandate from your CISO or security department (if you have either of those) to install security updates within a specified timeframe, and maybe even some reporting on how well you're actually keeping up with that. This is effectively just a requirement of being on the internet these days. Sure, people get worked up about 0-days and APTs, but [the most basic thing that's going to ruin your day is some workaday ransomware crew exploiting years-old vulnerabilities](https://www.cpomagazine.com/cyber-security/new-study-finds-that-ransomware-attacks-are-heavily-relying-on-old-vulnerabilities-unpatched-issues-dating-back-to-2010-still-exploited/). Running old, vulnerable software is just asking for trouble; the internet equivalent of wearing a "kick me" sign on the school playground.
1111

12-
Hence device management tools that nag users, remotely install updates, report on compliance, and even block network access as required to get updates installed. This all makes sense for traditional IT - laptops, desktops, smartphones and such; probably even for physical servers if you're unlucky enough to still have any of those. But, I'm here to tell you, it does _not_ make any sense in the cloud. In fact, it's a sign that something is horribly wrong with how you build, test, and deploy software.
12+
Hence, device management tools that nag users, remotely install updates, report on compliance, and even block network access as required to get updates installed. This all makes sense for traditional IT - laptops, desktops, smartphones and such; probably even for physical servers if you're unlucky enough to still have any of those. But, I'm here to tell you, it does _not_ make any sense in the cloud. In fact, it's a sign that something is horribly wrong with how you build, test, and deploy software.
1313

1414

1515
## The cloud is magical
1616

17-
You - yes _you_, dear reader - have the ability to conjure computers into existence in mere seconds. That's what `aws ec2 run-instances` does, and all the other cloud providers have something equivalent. Even if you're running on-premises servers, you're probably not running them on bare metal - virtualization platforms like VMware make life so much easier you've either got to be a masochist or doing something special like HPC to be bothered. So servers are something that come and go at your whims. You might even have automation that launches new servers when you need to scale up under load, and shuts them down again when it gets quiet.
17+
You - yes _you_, dear reader - have the ability to conjure computers into existence in mere seconds. That's what `aws ec2 run-instances` does, and all the other cloud providers have something equivalent. Even if you're running on-premises servers, you're probably not running them on bare metal; virtualization makes life so much easier you've either got to be a masochist or doing something special like HPC to be bothered running on physical machines. So servers are something that come and go at your whims. You might even have automation that launches new servers when you need to scale up under load, and shuts them down again when it gets quiet.
1818

19-
But that's not even the magical part. The _really_ cool thing is that when you create a virtual machine, you specify the contents of its boot volume. You get to choose exactly what software it runs, right from the get-go! This is amazingly powerful. If you (or your build system) creates a disk image with your software and all its dependencies already installed, a lot of things get better:
19+
But that's not even the magical part! The _really_ cool thing is that when you create a virtual machine, you specify the contents of its boot volume. Thus, you get to choose exactly what software it runs, right from the get-go! This is amazingly powerful. If you (or your build system) creates a disk image with your software and all its dependencies already installed, a lot of things get better:
2020

2121
* Deployments are now just creating machines with your new image, and shutting down the old ones
2222
* Rollbacks are the same, but with the old version instead

0 commit comments

Comments
 (0)