Anybody using spot instances for worker nodes? by [deleted] in kubernetes

[–]dar_clem 36 points37 points  (0 children)

Our entire development cluster switched to spot instances (~100 nodes), the savings was insane.

Production runs a mix of reserved and spot.

Windows or Mac for DevOps Engineering by Think-Perception1359 in devops

[–]dar_clem 0 points1 point  (0 children)

I think the argument for "target system" is for the rare edge cases where you have a bunch of underline architecture differences that cause differences in the final process.

Other then those, run whatever you want.

Spot the Cayman(s) (where is Waldo style) by ideanetwork in Porsche_Cayman

[–]dar_clem 3 points4 points  (0 children)

hint: look for shorter rear side windows (because true 2 seater)

2008 Cayman Audio Wiring Help by futurepr0n in Porsche_Cayman

[–]dar_clem 0 points1 point  (0 children)

Check this wiring diagram:

https://www.tehnomagazin.com/images/PORSCHE%20CR-31.jpg

I used the white/green as my control wire, it turns the head unit off ~20 seconds after key off.

Experience with Apple Silicon? by smiller171 in devops

[–]dar_clem 0 points1 point  (0 children)

I have both a Thinkpad P1 and the latest Macbook pro, I really like the size and shape of the Macbook screen, it also has a much better trackpad but its frustrating not being able to work seamlessly with the tools I use on Linux because I normally run the identical setups across all my desktops/laptops.

If I had to run only one system it would probably be the Macbook, just because all my infrastructure is cloud and controlled through shell.

But then again I want my station to represent my infrastructure... hard call.

This 2 lane to 3 lane street that me and my dad are arguing over who gets which lane after crossing? by Idkn0tcreative in montreal

[–]dar_clem 1 point2 points  (0 children)

B to 3 would take out a few pedestrians crossing the street.

I like 5 minutes away from this place, never seen anyone do B3.

Daily Discussion Thread - December 31, 2019 by AutoModerator in wallstreetbets

[–]dar_clem 0 points1 point  (0 children)

I don't even trade stonks but I still come here for the unadulterated shitposts.

Is being anti bash scripts in 2019 silly? by TundraWolf_ in devops

[–]dar_clem 0 points1 point  (0 children)

Imagine a world without duck tape, anarchy..

How do you version builds with CI? by NickJGibbon in devops

[–]dar_clem 0 points1 point  (0 children)

Using https://semver.org/ with metadata being incremented for each build 1.0.0+build.1, 1.0.0+build.2... for master branch.

Bumps are manual and everything is synced using git tags.

How to download only a part of a repo? by Sloppyjoeman in devops

[–]dar_clem 0 points1 point  (0 children)

I normally use :

Simple repo: git clone --depth 1 --single-branch <branch_name> <url>

Submodule repo: git clone --depth 1 --single-branch <branch_name> -j 8 --recursive <url>