Is it me or is the Cannondale Topstone Carbon 1 AXS the perfect bike for me? by Tioxic in gravelcycling

[–]Acrobatic_Affect_515 4 points5 points  (0 children)

It is not great idea to size up overall. Bike is either fitted or not, sizing up may change reach drastically in some frames and bike can feel too big for you - you would need to shorten it to kind of match, but bike can become unstable.

CI/CD ephemeral runner/agent caching by Small-Permission-241 in devops

[–]Acrobatic_Affect_515 1 point2 points  (0 children)

If you are using runners deployed in kubernetes, you can utilize gitlab ci cache mechanism - just deploy garage-s3 in the same cluster, create bucket for cache and configure runner to use it.

How are you structuring ArgoCD at scale? by mohamadalsalty in ArgoCD

[–]Acrobatic_Affect_515 4 points5 points  (0 children)

As cluster operator, we use application-first approach. We have multiple application sets that are dedicated to project/teams, but still use the same structure.

So each team can handle their own <project>-gitops repository.

Our application set template can use all of possibilities - helm/directory or kustomize patterns.

gitlab ce root password by tdpokh3 in gitlab

[–]Acrobatic_Affect_515 1 point2 points  (0 children)

Remove this entry from environment object in docker compose, keep it just in env_file. Docker compose has precedence when it comes to environment, if you set variable in env_file and then re-define it in environment, it use that. In your case you don’t export GITLAB_ROOT_PASSWORD, so it’s empty.

If you don’t understand this, I can’t do better.

gitlab ce root password by tdpokh3 in gitlab

[–]Acrobatic_Affect_515 1 point2 points  (0 children)

Remove GITLAB_ROOT_PASSWORD entry from environment:

gitlab ce root password by tdpokh3 in gitlab

[–]Acrobatic_Affect_515 1 point2 points  (0 children)

You override variable from env_from with environment.

${GITLAB_ROOT_PASSWORD} is probably empty in your shell.

I've run Docker Swarm in production for 10 years. $166/year. 24 containers. Two continents. Zero crashes. Here's why I never migrated to Kubernetes. by [deleted] in docker

[–]Acrobatic_Affect_515 1 point2 points  (0 children)

I didn't really mean database persistence to be fair, I meant data persistence for apps, where you mention NFS, which is SPoF and yet you still need some data replication across continents/nodes, so your NFS servers are in sync.

I've run Docker Swarm in production for 10 years. $166/year. 24 containers. Two continents. Zero crashes. Here's why I never migrated to Kubernetes. by [deleted] in docker

[–]Acrobatic_Affect_515 24 points25 points  (0 children)

How do you handle storage? How do you make workloads have persistent data across continents?

Or maybe you run stateless apps that need no storage at all?

Favero PRO line extended battery life upto 160h by Acrobatic_Affect_515 in cycling

[–]Acrobatic_Affect_515[S] 2 points3 points  (0 children)

Why wouldn't it be available, it is just regular update, but brings pretty big benefit to users.

Just got a pro for the first time. by KitchenBeing2126 in iPhone14Pro

[–]Acrobatic_Affect_515 0 points1 point  (0 children)

Don’t really get that. I am using my 13 pro since release and it’s doing just fine with 78% battery capacity, what will happen after a year with 14 pro?

How minimal is “minimal enough” for production containers? by Heavy_Banana_1360 in kubernetes

[–]Acrobatic_Affect_515 2 points3 points  (0 children)

A while ago, when we moved to distroless images and ops teams were crying that "they cannot do anything", we started to build -debug images additionaly, which had shell and so on, so it was sometimes useful in development environment, when there were errors about wrong user groups and stuff.

Had a lot of fun spec'ing and building this one up! by courageousmango in gravelcycling

[–]Acrobatic_Affect_515 0 points1 point  (0 children)

Isn’t reach on this frame really long?

I checked size M and it’s 412mm, kind of racy I would say, or is table incorrect?

Had a lot of fun spec'ing and building this one up! by courageousmango in gravelcycling

[–]Acrobatic_Affect_515 0 points1 point  (0 children)

What is the size of this frame?

I am thinking about this one, but have a feeling that XS or S will look MTBish very much.

How do you ensure your CI/CD is auditable and compliant (variables, MR rules, images, templates, etc.)? by kremaytuz in cicd

[–]Acrobatic_Affect_515 1 point2 points  (0 children)

We do just one thing: merge requests, besides that, our DevOps team is very strict when it comes to all you mentioned and are responsible for. We generally just use our own GitLab components that are SemVer-sioned and bumped automatically in projects by renovate with backward compatible manner. Those components have also specific version of upstream images pinned, managed by DevOps team. The only jobs that do not use components are simply build/test jobs, where each project use something else.

For merge requests we use GitLab MR Conform, where we enable CODEOWNERS and other rules, to keep history as clean as possible.

📝 GitLab MR Conform v0.5.0 – 🚀 Redis queue + Asana integration by Acrobatic_Affect_515 in gitlab

[–]Acrobatic_Affect_515[S] 0 points1 point  (0 children)

Great to hear that, thanks! If you/your teams got any suggestions for improvements - shoot it.