this post was submitted on 30 May 2024
145 points (97.4% liked)

Technology

59427 readers
4286 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
 

cross-posted from: https://sopuli.xyz/post/13237910

Amazon Cloud Traffic Is Suffocating Fedora's Mirrors

you are viewing a single comment's thread
view the rest of the comments
[–] Stupidmanager@lemmy.world 4 points 5 months ago

It's maddening how inefficient CI/CD setups are.

It's maddening how inefficient ~~CI/CD setups~~ inexperienced DevOps engineers are. - Fixed that for you.

Proper pipelines are modular and should run longer validation or updates externally, with only necessary stages executing.

  • code validate - will this code compile
  • code secure - are there any known security flaws introduced
  • code plan/compile - if it’s iac, plan, if it’s application code, compile
  • if it’s prod or like, approve required (human delay). Dev, test, uat - proceed with deploy
  • code deploy - push code live

Things like: patching, config management, vulnerability scanning, compliance checks, etc… are done outside the pipeline.

There’s a reason people like me charge a lot! Lazy and/or inexperienced staff will get you in trouble one day.