Login
You're viewing the front-end.social public feed.

Replies

  • 💬 0🔄 0⭐ 0
  • 💬 1🔄 0⭐ 0
  • 💬 0🔄 0⭐ 0
  • Aug 11, 2026, 4:22 PM

    @phillip Well, I find Komodo's Automatic Updates too inflexible.

    As you outlined in your article, it requires a rolling tag (like :latest) which brings its share of issues. What if a breaking change is introduced? What if someone published a malicious version?

    Whereas GitOps+renovate allows for fine-grained updates and the use of versioned and pinned images (e.g. image:x.y.z@sha:256fff…).

    For example, my renovate config does:

    💬 2🔄 0⭐ 0
  • Aug 11, 2026, 4:22 PM
    • only create PRs after an image is 2 days old (prevents malicious versions)
    • only auto-merge updates for patch versions (x.y.Z+1), so that I can manually check changes on minor versions before merging
    • allow auto-merge for minor versions of images that I know do not introduce breaking changes
    💬 0🔄 0⭐ 0
  • Aug 11, 2026, 4:47 PM

    @axel Ah, that makes sense! I auto-update a couple less important containers. For most of them though, Komodo just notifies me of available updates, so I have a chance to check release notes in my RSS feed, then manually apply the updates.

    The ability to delay auto-updates by a few days is awesome, and the extra control is pretty sweet. I’ll take a closer look at this setup. Thanks for sharing!

    💬 0🔄 0⭐ 0
  • Aug 11, 2026, 4:58 PM

    @phillip What you describe (checking releases notes in your RSS feed then manually applying updates) is what I was doing before, but I was growing tired of all the manual work and often did not update images for weeks. This is what ultimately drove me to Komodo and the GitOps workflow.

    💬 0🔄 0⭐ 0