FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
I built glenv — a CLI to stop manually managing GitLab CI/CD variables
NewsDevOps

I built glenv — a CLI to stop manually managing GitLab CI/CD variables

via Dev.to DevOpsohmylock1mo ago

The problem every GitLab user eventually hits You've got a .env.production file with 80 variables. Time to deploy to a new environment. So you open GitLab, navigate to Settings → CI/CD → Variables, and start clicking. Add variable. Set key. Paste value. Toggle "masked". Toggle "protected". Save. Repeat. After the fifth variable you're already making mistakes. After the twentieth you've lost count. After the fiftieth you've decided that whoever designed this workflow has never had to actually use it. The next attempt is a bash script. Something like: while IFS = '=' read -r key value ; do curl -X POST "https://gitlab.com/api/v4/projects/ $PROJECT_ID /variables" \ --header "PRIVATE-TOKEN: $TOKEN " \ --form "key= $key " \ --form "value= $value " done < .env.production It works until it doesn't. No rate limiting, no retry on 429, no masked/protected flags, sequential execution, no way to preview what's changing. One mistyped variable and you're debugging a broken pipeline at 2am. I built g

Continue reading on Dev.to DevOps

Opens in a new tab

Read Full Article
44 views

Related Articles

Robotaxi companies refuse to say how often their AVs need remote help
News

Robotaxi companies refuse to say how often their AVs need remote help

TechCrunch • 8h ago

I Set the Thread Pool to 8 and Brought Down Black Friday
News

I Set the Thread Pool to 8 and Brought Down Black Friday

Medium Programming • 9h ago

News

How I Built Simple Automation Systems That Save Time (And Why Businesses Need Them)

Medium Programming • 9h ago

News

wastrelly wabbits

Lobsters • 9h ago

Pidgin 3.0 Alpha 1 2.95.0 has been released
News

Pidgin 3.0 Alpha 1 2.95.0 has been released

Lobsters • 10h ago

Discover More Articles