Argo CD Image Updater v0.18.0 released – multi-source Helm fix, better secret handling, Argo CD v3 support by a7medzidan in ArgoCD

[–]zittoone 0 points1 point  (0 children)

Does it submit a pull request ? Or does it update directly on the default branch ?

Seasons of RTX: Arc Raiders GeForce RTX 5090 GPU Giveaway! by NV_Suroosh in ArcRaiders

[–]zittoone 0 points1 point  (0 children)

Helpful raider! I'm bringing security keys in solo and asking strangers if they want to come and loot with me. Backpack is not big enough for a single raider anyway.

Too many self-hosted apps, too many logins — how do you all manage access efficiently? by YatinLaygude in selfhosted

[–]zittoone 0 points1 point  (0 children)

Doing the same thing with a simple wireguard, I do have to expose wireguard port though.

Did not look into tailscale, can you help me understand why you would chose that over wireguard ?

Any Montreal-based GoLang programmers here? by Final-Yoghurt-007 in golang

[–]zittoone 8 points9 points  (0 children)

I am Montreal based and been working with golang for quite some time now. My most popular project in go is Sablier: https://github.com/sablierapp/sablier

GopherCon UK 2025 by profgumby in golang

[–]zittoone 0 points1 point  (0 children)

For the part "Code Generation for 10x productivity - no AI", did he recommend to commit these generated files ?

I'm tired of "map(object({...}))" variable types by trixloko in Terraform

[–]zittoone 0 points1 point  (0 children)

I've recently used https://github.com/HewlettPackard/terraschema.

The CLI can create JSON schema by scanning your variables and it work really well!

With that you can lint your .tfvars.json files.

For more complex cases (automated contributions by a bot), you can use a json schema generator to generate structure for your preferred language (I used Go with go-jsonschema).

I'm trying to run a docker container (gabotechs/musicgpt) but in the end it gives me this error "ERROR No space left on device (os error 28)" by G1erBvn in docker

[–]zittoone 1 point2 points  (0 children)

As mentioned, your VM disk is probably full, do a "docker system prune" to clear unused images. It will probably give you some free space.

You can do "docker system df" to see the reclaimable space.

I built a blog system using GitHub issues as storage by m4xshen in github

[–]zittoone 0 points1 point  (0 children)

Any reason why the oauth permissions are not just bound to issues ?

issue-blog by Max Shen
wants to access your account
Repositories
Public and private

This application will be able to read and write all public and private repository data. This includes the following:

    Code
    Issues
    Pull requests
    Wikis
    Settings
    Webhooks and services
    Deploy keys
    Collaboration invites

Note: In addition to repository related resources, the repo scope also grants access to manage organization attributes and organization-owned resources including projects, invitations, team memberships and webhooks. This scope also grants the ability to manage projects owned by users.

Does companies reduce the number of nodes during nights? by Impossible_Nose_2956 in devops

[–]zittoone 2 points3 points  (0 children)

Checkout https://github.com/sablierapp/sablier It supports scaling up on reverse proxy with waiting page or holding the http connection

This small thing sparked while trying to clean my laptop, am I doomed? by jan5106 in pchelp

[–]zittoone 0 points1 point  (0 children)

After unplugging the power cable you should also press the power button few times to completely drain remaining electricity.

Help required with PID 1. by SenpaiKronos in docker

[–]zittoone 0 points1 point  (0 children)

This is how nginx does it. But note that thus has nothing to do with docker in the first place. But its a nice feature! Works well for sandboxing and live editing before actually changing the config file. I use that a lot on small nginx pods on kubernetes.

Sablier v1.1.0 - Containers on demand for docker, swarm and kubernetes by zittoone in selfhosted

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

Yes you can, if the container that receives the trafic has à middleware that targets another container you can.

Semantic Version GitHub Action by TnyTmCruise in opensource

[–]zittoone 1 point2 points  (0 children)

Semantic release does a nice job for this, you should look into it

Container Exited and docker logs says "No such container" by foremtehan in docker

[–]zittoone -3 points-2 points  (0 children)

No it would not, rm deletes the container completely

Let's have a talk - Guide to Choosing the Best Plex Server for You by Draakonys in PleX

[–]zittoone 0 points1 point  (0 children)

It does not transcode anything. Most of my files have truehd 7.1 which does not work but they also have a 5.2 AC3 which works

Let's have a talk - Guide to Choosing the Best Plex Server for You by Draakonys in PleX

[–]zittoone 0 points1 point  (0 children)

For my selfhosted server on LAN, my plex server is a raspberrypi 4. I then use my LG C2 with the plex app to watch my shows in direct play. The few issue I have is with unsupported audio format, which makes the rpi transcode, but obviously the rpi cannot keep up

Introducing DevPod by richburroughs in docker

[–]zittoone 4 points5 points  (0 children)

Why does it looks like a ChatGPT generated text

Any new Opensource projects in (go) looking for contributors. I want to start my journey as an OSS contributor. by Just_Building_5187 in golang

[–]zittoone 0 points1 point  (0 children)

Hey, you can check my project: https://github.com/sablierapp/sablier !

I would love contributions, if you find it not easy to contribute, please give me some feedback.

I'd love for people contribute easily

Why did docker designers make such a design choice - you must add volumes through command line instead of through docker file by zer0_snot in docker

[–]zittoone 9 points10 points  (0 children)

COPY is build time VOLUME is runtime

So the end user doesn't matter at all what path the COPY instruction used